diff --git a/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts b/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts
index 5e6ccfa16..8badb1573 100644
--- a/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts
+++ b/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts
@@ -1,14 +1,10 @@
-import { Pipe, PipeTransform } from '@angular/core'
+import { formatNumber } from '@angular/common'
+import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core'
// Thanks: https://github.com/danrevah/ngx-pipes/blob/master/src/ng-pipes/pipes/math/bytes.ts
@Pipe({ name: 'myNumberFormatter' })
export class NumberFormatterPipe implements PipeTransform {
- private dictionary: Array<{max: number, type: string}> = [
- { max: 1000, type: '' },
- { max: 1000000, type: 'K' },
- { max: 1000000000, type: 'M' }
- ]
/**
* @param x number
@@ -21,6 +17,13 @@ export class NumberFormatterPipe implements PipeTransform {
return +f
}
+ private dictionary: Array<{max: number, type: string}> = [
+ { max: 1000, type: '' },
+ { max: 1000000, type: 'K' },
+ { max: 1000000000, type: 'M' }
+ ]
+ constructor (@Inject(LOCALE_ID) private localeId: string) {}
+
transform (value: number) {
const format = this.dictionary.find(d => value < d.max) || this.dictionary[this.dictionary.length - 1]
const calc = value / (format.max / 1000)
@@ -28,7 +31,7 @@ export class NumberFormatterPipe implements PipeTransform {
const decimalPart = NumberFormatterPipe.getDecimalForNumber(calc)
return integralPart < 10 && decimalPart > 0
- ? `${integralPart}.${decimalPart}${format.type}`
+ ? formatNumber(parseFloat(`${integralPart}.${decimalPart}`), this.localeId) + format.type
: `${integralPart}${format.type}`
}
}
diff --git a/client/src/app/shared/shared-video-miniature/video-download.component.ts b/client/src/app/shared/shared-video-miniature/video-download.component.ts
index 99838f712..70b27b105 100644
--- a/client/src/app/shared/shared-video-miniature/video-download.component.ts
+++ b/client/src/app/shared/shared-video-miniature/video-download.component.ts
@@ -1,5 +1,5 @@
import { mapValues, pick } from 'lodash-es'
-import { Component, ElementRef, ViewChild } from '@angular/core'
+import { Component, ElementRef, Inject, LOCALE_ID, ViewChild } from '@angular/core'
import { AuthService, Notifier } from '@app/core'
import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models'
@@ -34,13 +34,14 @@ export class VideoDownloadComponent {
private numbersPipe: NumberFormatterPipe
constructor (
+ @Inject(LOCALE_ID) private localeId: string,
private notifier: Notifier,
private modalService: NgbModal,
private videoService: VideoService,
private auth: AuthService
) {
this.bytesPipe = new BytesPipe()
- this.numbersPipe = new NumberFormatterPipe()
+ this.numbersPipe = new NumberFormatterPipe(this.localeId)
}
get typeText () {
diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf
index 4021cb03d..7f0d809cd 100644
--- a/client/src/locale/angular.cs-CZ.xlf
+++ b/client/src/locale/angular.cs-CZ.xlf
@@ -1,320 +1,281 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Close the left menuClose the left menu
+ Close the left menu
+ Zavřít levou nabídkusrc/app/app.component.ts109
-
- Open the left menuOpen the left menu
+
+
+ Open the left menu
+ Otevřít levou nabídkusrc/app/app.component.ts111
-
+
+ Channel avatarChannel avatar
-
-
- src/app/shared/shared-main/account/video-avatar-channel.component.html4src/app/shared/shared-main/account/video-avatar-channel.component.html17
+ src/app/shared/shared-main/account/video-avatar-channel.component.html4
+ src/app/shared/shared-main/account/video-avatar-channel.component.html17
+
Account avatarAccount avatar
-
-
-
- src/app/shared/shared-main/account/video-avatar-channel.component.html7src/app/shared/shared-main/account/video-avatar-channel.component.html13src/app/shared/shared-main/account/video-avatar-channel.component.html23
+ src/app/shared/shared-main/account/video-avatar-channel.component.html7
+ src/app/shared/shared-main/account/video-avatar-channel.component.html13
+ src/app/shared/shared-main/account/video-avatar-channel.component.html23
+
You don't have notifications.Nemáte oznámení.
-
- src/app/shared/shared-main/users/user-notifications.component.html1
+ src/app/shared/shared-main/users/user-notifications.component.html1
+
- published a new video:
+ published a new video: published a new video:
-
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html15
+ src/app/shared/shared-main/users/user-notifications.component.html15
+
-
- The notification concerns a video now unavailable
-
+ The notification concerns a video now unavailable
The notification concerns a video now unavailable
-
- src/app/shared/shared-main/users/user-notifications.component.html24
+ src/app/shared/shared-main/users/user-notifications.component.html24
+
- Your video has been unblocked
+ Your video has been unblocked
Your video
-
+
- has been unblocked
+ has been unblocked
-
- src/app/shared/shared-main/users/user-notifications.component.html33
+ src/app/shared/shared-main/users/user-notifications.component.html33
+
- Your video has been blocked
+ Your video has been blocked
Your video
-
+
- has been blocked
+ has been blocked
-
- src/app/shared/shared-main/users/user-notifications.component.html41
+ src/app/shared/shared-main/users/user-notifications.component.html41
+
A new video abuse has been created on video
- A new video abuse
- has been created on video
-
+ A new video abuse
+ has been created on video
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html49
+ src/app/shared/shared-main/users/user-notifications.component.html49
+
A new comment abuse has been created on video
- A new comment abuse
- has been created on video
-
+ A new comment abuse
+ has been created on video
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html53
+ src/app/shared/shared-main/users/user-notifications.component.html53
+
A new account abuse has been created on account
- A new account abuse
- has been created on account
-
+ A new account abuse
+ has been created on account
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html57
+ src/app/shared/shared-main/users/user-notifications.component.html57
+
A new abuse has been created
- A new abuse
- has been created
+ A new abuse
+ has been created
-
- src/app/shared/shared-main/users/user-notifications.component.html62
+ src/app/shared/shared-main/users/user-notifications.component.html62
+
Your abuse has been acceptedrejected
- Your abuse
+ Your abuse
- has been
+ has been
- accepted
-
- rejected
-
+ accepted
+
+ rejected
+
-
- src/app/shared/shared-main/users/user-notifications.component.html70
+ src/app/shared/shared-main/users/user-notifications.component.html70
+
Abuse has a new message
- Abuse
+ Abuse
- has a new message
+ has a new message
-
- src/app/shared/shared-main/users/user-notifications.component.html80
+ src/app/shared/shared-main/users/user-notifications.component.html80
+
- The recently added video has been automatically blocked
+ The recently added video has been automatically blocked
The recently added video
-
+
- has been
- automatically blocked
-
+ has been
+ automatically blocked
+
-
- src/app/shared/shared-main/users/user-notifications.component.html88
+ src/app/shared/shared-main/users/user-notifications.component.html88
+
commented your video
-
-
-
- commented your video
-
-
-
-
-
- src/app/shared/shared-main/users/user-notifications.component.html101
+ okomentoval vaše video
+ src/app/shared/shared-main/users/user-notifications.component.html101
+
-
- The notification concerns a comment now unavailable
-
+ The notification concerns a comment now unavailable
The notification concerns a comment now unavailable
-
- src/app/shared/shared-main/users/user-notifications.component.html109
+ src/app/shared/shared-main/users/user-notifications.component.html109
+
- Your video has been published
+ Your video has been published Vaše video
-
+
- bylo publikováno
+ bylo publikováno
-
- src/app/shared/shared-main/users/user-notifications.component.html118
+ src/app/shared/shared-main/users/user-notifications.component.html118
+
Your video import succeeded
- Impotování vašeho videa
-
+ Impotování vašeho videa
+ se povedlo
-
- src/app/shared/shared-main/users/user-notifications.component.html126
+ src/app/shared/shared-main/users/user-notifications.component.html126
+
Your video import failed
- Váš video import
-
+ Váš video import
+ selhal
-
- src/app/shared/shared-main/users/user-notifications.component.html134
+ src/app/shared/shared-main/users/user-notifications.component.html134
+
- User registered on your instance
+ User registered on your instance
User
-
+
- registered on your instance
+ registered on your instance
-
- src/app/shared/shared-main/users/user-notifications.component.html142
+ src/app/shared/shared-main/users/user-notifications.component.html142
+
is following your channel your account
-
+
- sleduje
- váš kanál
+ sleduje
+ váš kanál
-
- váš účet
-
+
+ váš účet
+
-
- src/app/shared/shared-main/users/user-notifications.component.html152
+ src/app/shared/shared-main/users/user-notifications.component.html152
+
mentioned you on video
-
+
- mentioned you on
- video
+ mentioned you on
+ video
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html165
+ src/app/shared/shared-main/users/user-notifications.component.html165
+
- Your instance has a new follower () awaiting your approval
+ Your instance has a new follower () awaiting your approval
Your instance has
- a new follower
- (
+ a new follower
+ (
)
- awaiting your approval
-
+ awaiting your approval
+
-
- src/app/shared/shared-main/users/user-notifications.component.html173
+ src/app/shared/shared-main/users/user-notifications.component.html173
+
- Your instance automatically followed
- Vaše instance automaticky začala sledovat
-
-
-
-
-
- src/app/shared/shared-main/users/user-notifications.component.html182
- The notification points to content now unavailable The notification points to content now unavailable
-
- src/app/shared/shared-main/users/user-notifications.component.html190
-
+ Your instance automatically followed
+ Vaše instance automaticky začala sledovat
+ src/app/shared/shared-main/users/user-notifications.component.html182
+
+
+ The notification points to content now unavailable
+ The notification points to content now unavailable
+ src/app/shared/shared-main/users/user-notifications.component.html190
+ Change your avatarChange your avatar
-
- src/app/shared/shared-main/account/actor-avatar-info.component.html16
- Remove avatarRemove avatar
+ src/app/shared/shared-main/account/actor-avatar-info.component.html16
+
+
+ Remove avatar
+ Remove avatarsrc/app/shared/shared-main/account/actor-avatar-info.component.html41
-
-
-
+
-
- src/app/shared/shared-main/buttons/action-dropdown.component.html22
- My watch historyMy watch history
+ src/app/shared/shared-main/buttons/action-dropdown.component.html22
+
+
+ My watch history
+ My watch historysrc/app/+my-library/my-history/my-history.component.ts49
@@ -323,238 +284,244 @@
Save toUložit na
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.html4
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html4
+ OptionsMožnosti
-
-
- src/app/+videos/+video-watch/comment/video-comment.component.html50
+ src/app/+videos/+video-watch/comment/video-comment.component.html50
+
Start atZačít v čase
-
-
-
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html57src/app/shared/shared-share-modal/video-share.component.html113src/app/shared/shared-video-playlist/video-add-to-playlist.component.html34src/app/shared/shared-moderation/report-modals/video-report.component.html47
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html57
+ src/app/shared/shared-share-modal/video-share.component.html113
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html34
+ src/app/shared/shared-moderation/report-modals/video-report.component.html47
+
Stop atZastavit v čase
-
-
-
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html71src/app/shared/shared-share-modal/video-share.component.html144src/app/shared/shared-video-playlist/video-add-to-playlist.component.html35src/app/shared/shared-moderation/report-modals/video-report.component.html62
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html71
+ src/app/shared/shared-share-modal/video-share.component.html144
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html35
+ src/app/shared/shared-moderation/report-modals/video-report.component.html62
+
- Your report will be sent to moderators of and will be forwarded to the video origin () too.
+ Your report will be sent to moderators of and will be forwarded to the video origin () too.
Your report will be sent to moderators of
- and will be forwarded to the video origin (
+ and will be forwarded to the video origin (
) too
- .
+ .
-
- src/app/shared/shared-moderation/report-modals/video-report.component.html74
+ src/app/shared/shared-moderation/report-modals/video-report.component.html74
+
Please describe the issue...Please describe the issue...
-
-
-
- src/app/shared/shared-moderation/report-modals/report.component.html42src/app/shared/shared-moderation/report-modals/video-report.component.html80src/app/shared/shared-moderation/report-modals/report.component.html42
+ src/app/shared/shared-moderation/report-modals/report.component.html42
+ src/app/shared/shared-moderation/report-modals/video-report.component.html80
+ src/app/shared/shared-moderation/report-modals/report.component.html42
+
Search playlistsSearch playlists
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.html9
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html9
+
Create a private playlistCreate a private playlist
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.html66
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html66
+
Display nameZobrazované jméno
-
-
-
-
-
-
-
- src/app/+signup/+register/register-step-user.component.html8src/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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ src/app/+signup/+register/register-step-user.component.html8
+ 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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+
CreateVytvořit
-
-
-
-
-
-
-
- src/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.html81src/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/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8
+ 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
+ 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/+admin/users/user-edit/user-edit.component.html8
+ src/app/+admin/users/user-edit/user-edit.component.html8
+
videovideo
-
- src/app/shared/shared-video-miniature/video-download.component.html12
+ src/app/shared/shared-video-miniature/video-download.component.html12
+
subtitlessubtitles
-
- src/app/shared/shared-video-miniature/video-download.component.html11
+ src/app/shared/shared-video-miniature/video-download.component.html11
+
FormatFormat
-
- src/app/shared/shared-video-miniature/video-download.component.html45
+ src/app/shared/shared-video-miniature/video-download.component.html45
+
-
-
-
+
-
-
-
- src/app/shared/shared-video-miniature/video-download.component.html49src/app/shared/shared-video-miniature/video-download.component.html61src/app/shared/shared-video-miniature/video-download.component.html73
+ src/app/shared/shared-video-miniature/video-download.component.html49
+ src/app/shared/shared-video-miniature/video-download.component.html61
+ src/app/shared/shared-video-miniature/video-download.component.html73
+
Video streamVideo stream
-
- src/app/shared/shared-video-miniature/video-download.component.html57
+ src/app/shared/shared-video-miniature/video-download.component.html57
+
Audio streamAudio stream
-
- src/app/shared/shared-video-miniature/video-download.component.html69
+ src/app/shared/shared-video-miniature/video-download.component.html69
+
Direct downloadPřímý odkaz
-
- src/app/shared/shared-video-miniature/video-download.component.html87
+ src/app/shared/shared-video-miniature/video-download.component.html87
+
Torrent (.torrent file)Torrent (soubor .torrent)
-
- src/app/shared/shared-video-miniature/video-download.component.html92
- videovideo
-
- src/app/shared/shared-video-miniature/video-download.component.ts48src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229
- subtitlessubtitles
-
- src/app/shared/shared-video-miniature/video-download.component.ts49
+ src/app/shared/shared-video-miniature/video-download.component.html92
+
+
+ video
+ video
+ src/app/shared/shared-video-miniature/video-download.component.ts48
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229
+
+
+ subtitles
+ subtitles
+ src/app/shared/shared-video-miniature/video-download.component.ts49
+ Cancel
Zrušit
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html45
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html45
+
DownloadStáhnout
-
-
- src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html104
+ src/app/shared/shared-video-miniature/video-download.component.html4
+ src/app/shared/shared-video-miniature/video-download.component.html104
+
Reason...Důvod...
-
- src/app/shared/shared-moderation/user-ban-modal.component.html12
+ src/app/shared/shared-moderation/user-ban-modal.component.html12
+
Cancel
Zrušit
-
- src/app/shared/shared-video-miniature/videos-selection.component.html19
+ src/app/shared/shared-video-miniature/videos-selection.component.html19
+
SubmitOdeslat
-
-
-
-
-
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.html27src/app/shared/shared-moderation/report-modals/report.component.html57src/app/shared/shared-moderation/video-block.component.html43src/app/shared/shared-moderation/report-modals/video-report.component.html95src/app/+about/about-instance/contact-admin-modal.component.html53src/app/shared/shared-moderation/report-modals/report.component.html57
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html27
+ src/app/shared/shared-moderation/report-modals/report.component.html57
+ src/app/shared/shared-moderation/video-block.component.html43
+ src/app/shared/shared-moderation/report-modals/video-report.component.html95
+ src/app/+about/about-instance/contact-admin-modal.component.html53
+ src/app/shared/shared-moderation/report-modals/report.component.html57
+
Report video ""
- Report video "
- "
-
-
- src/app/shared/shared-moderation/report-modals/video-report.component.html3
+ Nahlásit video " "
+ src/app/shared/shared-moderation/report-modals/video-report.component.html3
+
What is the issue?What is the issue?
-
-
-
- src/app/shared/shared-moderation/report-modals/report.component.html13src/app/shared/shared-moderation/report-modals/video-report.component.html13src/app/shared/shared-moderation/report-modals/report.component.html13
+ src/app/shared/shared-moderation/report-modals/report.component.html13
+ src/app/shared/shared-moderation/report-modals/video-report.component.html13
+ src/app/shared/shared-moderation/report-modals/report.component.html13
+
This will ask remote instances to delete itThis will ask remote instances to delete it
-
- src/app/shared/shared-moderation/video-block.component.html27
- Blocking this live will automatically terminate the live stream. Blocking this live will automatically terminate the live stream.
-
- src/app/shared/shared-moderation/video-block.component.html33
+ src/app/shared/shared-moderation/video-block.component.html27
+
+
+ Blocking this live will automatically terminate the live stream.
+ Blocking this live will automatically terminate the live stream.
+ src/app/shared/shared-moderation/video-block.component.html33
+ Unfederate the videoUnfederate the video
-
- src/app/shared/shared-moderation/video-block.component.html24
+ src/app/shared/shared-moderation/video-block.component.html24
+
UnlistedNeveřejné
-
-
- src/app/shared/shared-video-miniature/video-miniature.component.html6src/app/+videos/+video-watch/video-watch-playlist.component.html9
+ src/app/shared/shared-video-miniature/video-miniature.component.html6
+ src/app/+videos/+video-watch/video-watch-playlist.component.html9
+
PrivateSoukromé
-
-
-
- src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33src/app/+videos/+video-watch/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
+ src/app/+videos/+video-watch/video-watch-playlist.component.html10
+
{VAR_PLURAL, plural, =1 {1 view} other { views}}{VAR_PLURAL, plural, =1 {1 view} other {
views} }
-
- src/app/shared/shared-video/video-views-counter.component.html3
-
+ src/app/shared/shared-video/video-views-counter.component.html3
+
+
+
+ src/app/shared/shared-video/video-views-counter.component.html3,4
-
- {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}}{VAR_PLURAL, plural, =1 {1 viewer} other { viewers}}
+
+
+ {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.html7
-
-
+
+
+
+ src/app/shared/shared-video/video-views-counter.component.html7,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 accountsrc/app/shared/shared-user-subscription/remote-subscribe.component.ts60
@@ -563,135 +530,135 @@
BlockedBlocked
-
- src/app/shared/shared-video-miniature/video-miniature.component.html52
+ src/app/shared/shared-video-miniature/video-miniature.component.html52
+ Sensitive
-
- Sensitive
-
-
- src/app/shared/shared-video-miniature/video-miniature.component.html57
+ Citlivé
+ src/app/shared/shared-video-miniature/video-miniature.component.html57
+
{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}}{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other {
videí} }
-
- src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9
+ src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9
+
-
-
-
+
-
- src/app/shared/shared-video-playlist/video-playlist-miniature.component.html22
+ src/app/shared/shared-video-playlist/video-playlist-miniature.component.html22
+
Updated
- Aktualizováno
-
-
-
- src/app/shared/shared-video-playlist/video-playlist-miniature.component.html29
+ Aktualizováno
+ src/app/shared/shared-video-playlist/video-playlist-miniature.component.html29
+
Unavailable
- Unavailable
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html32
+ Nedostupné
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html32
+
Deleted
- Deleted
-
-
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34src/app/shared/shared-abuse-list/abuse-list-table.component.html116src/app/+videos/+video-watch/comment/video-comment.component.html57
+ Smazané
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html116
+ src/app/+videos/+video-watch/comment/video-comment.component.html57
+
Edit starts/stops atUpravit čas spuštění/zastavení
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html50
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html50
+
SaveUložit
-
-
-
-
- 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
- Smazat ze seznamu
-
-
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html88
+ Smazat ze
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html88
+
No results.Žádné výsledky.
-
-
-
-
-
-
-
-
-
- src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/videos-selection.component.html1src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/+videos/video-list/overview/video-overview.component.html4
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/videos-selection.component.html1
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/+videos/video-list/overview/video-overview.component.html4
+
DeleteOdstranit
-
-
-
- src/app/+my-library/my-videos/my-videos.component.html43src/app/+videos/+video-edit/shared/video-edit.component.html178
+ src/app/+my-library/my-videos/my-videos.component.html43
+ src/app/+videos/+video-edit/shared/video-edit.component.html178
+
EditUpravit
-
-
-
-
-
-
-
-
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/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.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/+videos/+video-edit/video-add-components/video-upload.component.html38src/app/+videos/+video-edit/shared/video-edit.component.html270src/app/+admin/users/user-edit/user-edit.component.html11src/app/+admin/users/user-edit/user-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.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.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/+videos/+video-edit/video-add-components/video-upload.component.html38
+ src/app/+videos/+video-edit/shared/video-edit.component.html270
+ src/app/+admin/users/user-edit/user-edit.component.html11
+ src/app/+admin/users/user-edit/user-edit.component.html11
+
Truncated previewRychlý náhled
-
- src/app/shared/shared-forms/markdown-textarea.component.html11
- HideHide
-
- src/app/shared/shared-forms/input-toggle-hidden.component.ts38
- ShowShow
-
- src/app/shared/shared-forms/input-toggle-hidden.component.ts39
+ src/app/shared/shared-forms/markdown-textarea.component.html11
+
+
+ Hide
+ Hide
+ src/app/shared/shared-forms/input-toggle-hidden.component.ts38
+
+
+ Show
+ Show
+ src/app/shared/shared-forms/input-toggle-hidden.component.ts39
+ Complete previewNáhled
-
- src/app/shared/shared-forms/markdown-textarea.component.html19
+ src/app/shared/shared-forms/markdown-textarea.component.html19
+
- <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
-
- src/app/shared/shared-main/misc/help.component.ts75
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
+ src/app/shared/shared-main/misc/help.component.ts75
+
RecommendedRecommended
-
- src/app/shared/shared-forms/peertube-checkbox.component.html33
+ src/app/shared/shared-forms/peertube-checkbox.component.html33
+
Using an ActivityPub accountPomocí účtu 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:
+ Subscribe with a remote account:src/app/shared/shared-user-subscription/subscribe-button.component.html62
@@ -700,344 +667,378 @@
Subscribe with an account on this instanceSubscribe with an account on this instance
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html57
+ src/app/shared/shared-user-subscription/subscribe-button.component.html57
+ Subscribe with your local accountOdebírat přes místní účet
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html58
- Published videos matching ""Published videos matching ""
+ src/app/shared/shared-user-subscription/subscribe-button.component.html58
+
+
+ Published videos matching ""
+ Published videos matching ""src/app/+accounts/account-search/account-search.component.ts89
-
- The live stream will be automatically terminated.The live stream will be automatically terminated.
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205
-
+
+
+ The live stream will be automatically terminated.
+ The live stream will be automatically terminated.
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205
+ Using a syndication feedPomocí syndikačního proudu
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html68
+ src/app/shared/shared-user-subscription/subscribe-button.component.html68
+
Subscribe via RSSOdebírat přes RSS
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html69
+ src/app/shared/shared-user-subscription/subscribe-button.component.html69
+
PROFILE SETTINGSPROFILE SETTINGS
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html12
+ src/app/+my-account/my-account-settings/my-account-settings.component.html12
+
Remote subscribeRemote interact
- Vzdálený odběr
-
- Vzdálená interakce
-
+ Vzdálený odběr
+
+ Vzdálená interakce
+
-
- src/app/shared/shared-user-subscription/remote-subscribe.component.html11
- You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
+ src/app/shared/shared-user-subscription/remote-subscribe.component.html11
+
+
+ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
+ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). src/app/shared/shared-user-subscription/remote-subscribe.component.html18,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).
+ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). src/app/shared/shared-user-subscription/remote-subscribe.component.html26,27
-
-
PeerTube version
- PeerTube version
-
- src/app/shared/shared-instance/instance-features-table.component.html6
+ Verze PeerTube
+ src/app/shared/shared-instance/instance-features-table.component.html6
+
Default NSFW/sensitive videos policycan be redefined by the users
- Default NSFW/sensitive videos policy
-
- can be redefined by the users
-
+ Default NSFW/sensitive videos policy
+
+ can be redefined by the users
+
-
- src/app/shared/shared-instance/instance-features-table.component.html13
+ src/app/shared/shared-instance/instance-features-table.component.html13
+
User registration allowedRegistrace uživatelů povolena
-
- src/app/shared/shared-instance/instance-features-table.component.html21
+ src/app/shared/shared-instance/instance-features-table.component.html21
+
Video uploadsVideo uploads
-
-
- src/app/shared/shared-instance/instance-features-table.component.html28src/app/shared/shared-instance/instance-features-table.component.html39
+ src/app/shared/shared-instance/instance-features-table.component.html28
+ src/app/shared/shared-instance/instance-features-table.component.html39
+
Transcoding in multiple resolutionsTranscoding in multiple resolutions
-
- src/app/shared/shared-instance/instance-features-table.component.html32
- Live streaming enabledLive streaming enabled
-
- src/app/shared/shared-instance/instance-features-table.component.html71
- Transcode live video in multiple resolutionsTranscode live video in multiple resolutions
-
- src/app/shared/shared-instance/instance-features-table.component.html78
- Max parallel livesMax parallel lives
-
- src/app/shared/shared-instance/instance-features-table.component.html85
- per user / per instance per user / per instance
-
- src/app/shared/shared-instance/instance-features-table.component.html86
+ src/app/shared/shared-instance/instance-features-table.component.html32
+
+
+ Live streaming enabled
+ Live streaming enabled
+ src/app/shared/shared-instance/instance-features-table.component.html71
+
+
+ Transcode live video in multiple resolutions
+ Transcode live video in multiple resolutions
+ src/app/shared/shared-instance/instance-features-table.component.html78
+
+
+ Max parallel lives
+ Max parallel lives
+ src/app/shared/shared-instance/instance-features-table.component.html85
+
+
+ per user / per instance
+ per user / per instance
+ src/app/shared/shared-instance/instance-features-table.component.html86
+ Requires manual validation by moderatorsRequires manual validation by moderators
-
- src/app/shared/shared-instance/instance-features-table.component.html41
+ src/app/shared/shared-instance/instance-features-table.component.html41
+
Automatically publishedAutomatically published
-
- src/app/shared/shared-instance/instance-features-table.component.html42
+ src/app/shared/shared-instance/instance-features-table.component.html42
+
Video quotaLimit na videa
-
-
-
- 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)
+ Unlimited ( per day)
Neomezeno
- (
+ (
za den)
-
+
-
- src/app/shared/shared-instance/instance-features-table.component.html61
+ src/app/shared/shared-instance/instance-features-table.component.html61
+
ImportImport
-
-
-
- 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
- You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
-
- src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20
+ 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.
+ You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20
+ HTTP import (YouTube, Vimeo, direct URL...)HTTP import (YouTube, Vimeo, direct URL...)
-
- src/app/shared/shared-instance/instance-features-table.component.html96
+ src/app/shared/shared-instance/instance-features-table.component.html96
+
Torrent importTorrent import
-
- src/app/shared/shared-instance/instance-features-table.component.html103
+ src/app/shared/shared-instance/instance-features-table.component.html103
+
Player
- Player
-
- src/app/shared/shared-instance/instance-features-table.component.html111
+ Přehrávač
+ src/app/shared/shared-instance/instance-features-table.component.html111
+
P2P enabledP2P povoleno
-
- src/app/shared/shared-instance/instance-features-table.component.html115
+ src/app/shared/shared-instance/instance-features-table.component.html115
+
Loading instance statistics...Loading instance statistics...
-
- src/app/shared/shared-instance/instance-statistics.component.html1
+ src/app/shared/shared-instance/instance-statistics.component.html1
+
LocalMístní
-
-
- src/app/shared/shared-instance/instance-statistics.component.html4
+ src/app/shared/shared-instance/instance-statistics.component.html4
+
usersusers
-
- src/app/shared/shared-instance/instance-statistics.component.html11
+ src/app/shared/shared-instance/instance-statistics.component.html11
+
videosvideos
-
-
- src/app/shared/shared-instance/instance-statistics.component.html21src/app/shared/shared-instance/instance-statistics.component.html65
+ src/app/shared/shared-instance/instance-statistics.component.html21
+ src/app/shared/shared-instance/instance-statistics.component.html65
+
video viewsvideo views
-
- src/app/shared/shared-instance/instance-statistics.component.html31
+ src/app/shared/shared-instance/instance-statistics.component.html31
+
video commentsvideo comments
-
-
- src/app/shared/shared-instance/instance-statistics.component.html41src/app/shared/shared-instance/instance-statistics.component.html75
+ src/app/shared/shared-instance/instance-statistics.component.html41
+ src/app/shared/shared-instance/instance-statistics.component.html75
+
of hosted videoof hosted video
-
- src/app/shared/shared-instance/instance-statistics.component.html51
+ src/app/shared/shared-instance/instance-statistics.component.html51
+
FederationFederation
-
- src/app/shared/shared-instance/instance-statistics.component.html58
+ src/app/shared/shared-instance/instance-statistics.component.html58
+
followersfollowers
-
- src/app/shared/shared-instance/instance-statistics.component.html85
+ src/app/shared/shared-instance/instance-statistics.component.html85
+
followingfollowing
-
- src/app/shared/shared-instance/instance-statistics.component.html95
- The upload failedThe upload failed
+ src/app/shared/shared-instance/instance-statistics.component.html95
+
+
+ The upload failed
+ The upload failedsrc/app/helpers/utils.ts185
-
- The connection was interruptedThe connection was interrupted
+
+
+ The connection was interrupted
+ The connection was interruptedsrc/app/helpers/utils.ts189
-
- Your file couldn't be transferred before the set timeout (usually 10min)Your file couldn't be transferred before the set timeout (usually 10min)
+
+
+ Your file couldn't be transferred before the set timeout (usually 10min)
+ Your file couldn't be transferred before the set timeout (usually 10min)src/app/helpers/utils.ts192
-
- Your file was too large (max. size: )Your file was too large (max. size: )
+
+
+ Your file was too large (max. size: )
+ Your file was too large (max. size: )src/app/helpers/utils.ts196
-
- UserUser
-
- src/app/core/users/user.service.ts392
+
+
+ User
+ User
+ src/app/core/users/user.service.ts392
+ BanZablokovat
-
- src/app/shared/shared-moderation/user-ban-modal.component.html3
+ src/app/shared/shared-moderation/user-ban-modal.component.html3
+
A banned user will no longer be able to login.
Blokovaný uživatel se už nebude moci přihlásit.
-
- src/app/shared/shared-moderation/user-ban-modal.component.html21
+ src/app/shared/shared-moderation/user-ban-modal.component.html21
+
CancelZrušit
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- src/app/modal/confirm.component.html20src/app/+login/login.component.html117src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-video-miniature/video-download.component.html99src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/+about/about-instance/contact-admin-modal.component.html48src/app/shared/shared-moderation/report-modals/report.component.html54src/app/+videos/+video-watch/comment/video-comment-add.component.html67src/app/+videos/+video-edit/video-add-components/video-upload.component.html58src/app/+videos/+video-edit/video-add-components/video-upload.component.html58src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37
+ src/app/modal/confirm.component.html20
+ src/app/+login/login.component.html117
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html22
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25
+ src/app/shared/shared-moderation/report-modals/report.component.html54
+ src/app/shared/shared-moderation/video-block.component.html38
+ src/app/shared/shared-moderation/report-modals/video-report.component.html92
+ src/app/shared/shared-video-miniature/video-download.component.html99
+ src/app/shared/shared-moderation/user-ban-modal.component.html26
+ src/app/shared/shared-moderation/batch-domains-modal.component.html31
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26
+ src/app/+about/about-instance/contact-admin-modal.component.html48
+ src/app/shared/shared-moderation/report-modals/report.component.html54
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html67
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html58
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html58
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html69
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37
+
Ban this userZablokovat tohoto uživatele
-
- src/app/shared/shared-moderation/user-ban-modal.component.html31
+ src/app/shared/shared-moderation/user-ban-modal.component.html31
+
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
+ Blokovat video " "
+ src/app/shared/shared-moderation/video-block.component.html3
+
+
+ Block live ""
+ Block live ""
+ src/app/shared/shared-moderation/video-block.component.html4
+ Please describe the reason...Please describe the reason...
-
- src/app/shared/shared-moderation/video-block.component.html13
+ src/app/shared/shared-moderation/video-block.component.html13
+
-
-
-
+
-
-
- src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24
- hh
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts14
- minmin
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts16src/app/shared/shared-main/angular/duration-formatter.pipe.ts23
- secsec
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts17
+ src/app/shared/shared-main/misc/top-menu-dropdown.component.html14
+ src/app/shared/shared-main/misc/top-menu-dropdown.component.html24
+
+
+ h
+ h
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts14
+
+
+ min
+ min
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts16
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts23
+
+
+ sec
+ sec
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts17
+ Login
Přihlásit
-
- src/app/+login/login.component.html3
+ src/app/+login/login.component.html3
+
- Sorry but there was an issue with the external login process. Please contact an administrator.
+ Sorry but there was an issue with the external login process. Please contact an administrator.
Sorry but there was an issue with the external login process. Please
- contact an administrator
- .
+ contact an administrator
+ .
-
- src/app/+login/login.component.html7
-
-
+ src/app/+login/login.component.html7
+
Request new verification email.Vyžádat nový ověřovací e-mail.
-
-
- 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.
+ 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.html60,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.html65,67
@@ -1046,33 +1047,34 @@
UserUživatel
-
-
- 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 addressUživatelské jméno nebo e-mail
-
- src/app/+login/login.component.html23
-
+ src/app/+login/login.component.html23
+
PasswordHeslo
-
-
-
-
-
-
-
-
- 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 passwordClick here to reset your password
-
- src/app/+login/login.component.html47
- Logging into an account lets you publish content Logging into an account lets you publish content
+ src/app/+login/login.component.html47
+
+
+ Logging into an account lets you publish content
+ Logging into an account lets you publish content src/app/+login/login.component.html56,57
@@ -1081,111 +1083,121 @@
LoginPřihlásit
-
-
- src/app/menu/menu.component.html93src/app/+login/login.component.html44
+ src/app/menu/menu.component.html93
+ src/app/+login/login.component.html44
+ Or sign in withOr sign in with
-
- src/app/+login/login.component.html72
+ src/app/+login/login.component.html72
+
Forgot your passwordZapomenuté heslo
-
- 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.
We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.
-
- src/app/+login/login.component.html99
- Enter your email address and we will send you a link to reset your password. Enter your email address and we will send you a link to reset your password.
-
- src/app/+login/login.component.html103
- An email with the reset password instructions will be sent to .
-The link will expire within 1 hour.An email with the reset password instructions will be sent to .
+ src/app/+login/login.component.html99
+
+
+ Enter your email address and we will send you a link to reset your password.
+ Enter your email address and we will send you a link to reset your password.
+ src/app/+login/login.component.html103
+
+
+ An email with the reset password instructions will be sent to . The link will expire within 1 hour.
+ An email with the reset password instructions will be sent to .
The link will expire within 1 hour.
-
- src/app/+login/login.component.ts126
+ src/app/+login/login.component.ts126
+
EmailE-mail
-
-
-
-
-
-
-
- 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 addressE-mailová adresa
-
-
- src/app/+login/login.component.html109src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10
- ResetReset
-
+ src/app/+login/login.component.html109
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10
+
+
+ Reset
+ ResetPassword reset button
- src/app/+login/login.component.html122
-
+ src/app/+login/login.component.html122
+
-
- src/app/+search/search.component.html5
+ src/app/+search/search.component.html5
+
on this instanceon this instance
-
- src/app/+search/search.component.html7
+ src/app/+search/search.component.html7
+
on the vidiverseon the vidiverse
-
- src/app/+search/search.component.html8
+ src/app/+search/search.component.html8
+
Reset my password
Resetovat heslo
-
- src/app/+reset-password/reset-password.component.html3
+ src/app/+reset-password/reset-password.component.html3
+
Confirm passwordPotvrdit heslo
-
- src/app/+reset-password/reset-password.component.html19
+ src/app/+reset-password/reset-password.component.html19
+
Confirmed passwordPotvrzené heslo
-
- src/app/+reset-password/reset-password.component.html21
+ src/app/+reset-password/reset-password.component.html21
+
Reset my passwordObnovit moje heslo
-
- src/app/+reset-password/reset-password.component.html29
- BackBack
+ src/app/+reset-password/reset-password.component.html29
+
+
+ Back
+ Backsrc/app/+signup/+register/register.component.ts41Button on the registration form to go to the previous step
-
- NextNext
+
+
+ Next
+ Nextsrc/app/+signup/+register/register.component.ts42Button on the registration form to go to the previous step
-
- SignupSignup
+
+
+ Signup
+ Signupsrc/app/+signup/+register/register.component.ts64
@@ -1193,190 +1205,180 @@ The link will expire within 1 hour.
Button on the registration form to finalize the account and channel creation
- for
-
- pro
-
-
-
-
-
- src/app/+search/search.component.html11
+ for
+ pro
+ src/app/+search/search.component.html11
+
- Filters
+ Filters
Filtry
-
+
-
+
-
- src/app/+search/search.component.html21
+ src/app/+search/search.component.html21
+
No results found
Nebyly nalezeny žádné výsledky
-
- src/app/+search/search.component.html33
+ src/app/+search/search.component.html33
+
-
- subscribers
-
+ subscribers odběratelů
-
- src/app/+search/search.component.html60
+ src/app/+search/search.component.html60
+
Welcome to PeerTube, dear administrator!Welcome to PeerTube, dear administrator!
-
- src/app/modal/welcome-modal.component.html3
+ src/app/modal/welcome-modal.component.html3
+
CLI documentationCLI
documentation
-
- src/app/modal/welcome-modal.component.html12
+ src/app/modal/welcome-modal.component.html12
+
Upload or import videos, parse logs, prune storage directories, reset user password...Upload or import videos, parse logs, prune storage directories, reset user password...
-
- src/app/modal/welcome-modal.component.html15
+ src/app/modal/welcome-modal.component.html15
+
Administer documentationAdminister
documentation
-
- src/app/modal/welcome-modal.component.html19
+ src/app/modal/welcome-modal.component.html19
+
Managing users, following other instances, dealing with spammers...Managing users, following other instances, dealing with spammers...
-
- src/app/modal/welcome-modal.component.html22
+ src/app/modal/welcome-modal.component.html22
+
Use documentationUse
documentation
-
- src/app/modal/welcome-modal.component.html26
+ src/app/modal/welcome-modal.component.html26
+
Setup your account, managing video playlists, discover third-party applications...Setup your account, managing video playlists, discover third-party applications...
-
- src/app/modal/welcome-modal.component.html29
+ src/app/modal/welcome-modal.component.html29
+
Useful linksUseful links
-
- src/app/modal/welcome-modal.component.html39
+ src/app/modal/welcome-modal.component.html39
+
Official PeerTube website (news, support, contribute...): https://joinpeertube.org
- Official PeerTube website (news, support, contribute...):
- https://joinpeertube.org
-
-
-
- src/app/modal/welcome-modal.component.html42
+ Oficiální stránky PeerTube (novinky, podpora, přispívání...): https://joinpeertube.org
+ src/app/modal/welcome-modal.component.html42
+
Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instances
- Put your instance on the public PeerTube index:
- https://instances.joinpeertube.org/instances
-
-
-
- src/app/modal/welcome-modal.component.html45
+ Dejte vaši instanci do veřejného indexu PeerTube: https://instances.joinpeertube.org/instances
+ src/app/modal/welcome-modal.component.html45
+
It's time to configure your instance!It's time to configure your instance!
-
- src/app/modal/welcome-modal.component.html55
+ src/app/modal/welcome-modal.component.html55
+
- Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are.
+ Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are.
Choosing your
- instance name
- ,
- setting up a description
- , specifying
- who you are
- ,
+ instance name
+ ,
+ setting up a description
+ , specifying
+ who you are
+ ,
why
- you created your instance
- and
- how long
- you plan to
- maintain your it
-
+ you created your instance
+ and
+ how long
+ you plan to
+ maintain your it
+
is very important for visitors to understand on what type of instance they are.
-
- src/app/modal/welcome-modal.component.html58
- If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance.
-
- src/app/modal/welcome-modal.component.html64
-
+ src/app/modal/welcome-modal.component.html58
+
+
+ If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance.
+ If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance.
+ src/app/modal/welcome-modal.component.html64
+ Remind me laterRemind me later
-
- src/app/modal/welcome-modal.component.html74
+ src/app/modal/welcome-modal.component.html74
+
Configure my instance
Configure my instance
-
- src/app/modal/welcome-modal.component.html81
+ src/app/modal/welcome-modal.component.html81
+
Configuration warning!Configuration warning!
-
- src/app/modal/instance-config-warning-modal.component.html3
+ src/app/modal/instance-config-warning-modal.component.html3
+
You enabled user registration on your instance but did not configure the following fields:You enabled user registration on your instance but did not configure the following fields:
-
- src/app/modal/instance-config-warning-modal.component.html10
+ src/app/modal/instance-config-warning-modal.component.html10
+
Instance nameInstance name
-
- src/app/modal/instance-config-warning-modal.component.html13
+ src/app/modal/instance-config-warning-modal.component.html13
+
Instance short descriptionInstance short description
-
- src/app/modal/instance-config-warning-modal.component.html14
+ src/app/modal/instance-config-warning-modal.component.html14
+
Who you areWho you are
-
- src/app/modal/instance-config-warning-modal.component.html16
+ src/app/modal/instance-config-warning-modal.component.html16
+
How long you plan to maintain your instanceHow long you plan to maintain your instance
-
- src/app/modal/instance-config-warning-modal.component.html17
+ src/app/modal/instance-config-warning-modal.component.html17
+
How you plan to pay your instanceHow you plan to pay your instance
-
- src/app/modal/instance-config-warning-modal.component.html18
+ src/app/modal/instance-config-warning-modal.component.html18
+
How you will moderate your instanceHow you will moderate your instance
-
- src/app/modal/instance-config-warning-modal.component.html20
+ src/app/modal/instance-config-warning-modal.component.html20
+
Instance termsInstance terms
-
- src/app/modal/instance-config-warning-modal.component.html21
- My settingsMy settings
+ src/app/modal/instance-config-warning-modal.component.html21
+
+
+ My settings
+ My settingssrc/app/modal/quick-settings-modal.component.html3
@@ -1385,95 +1387,97 @@ The link will expire within 1 hour.
src/app/menu/menu.component.html156
-
- These settings apply only to your session on this instance.These settings apply only to your session on this instance.
+
+
+ These settings apply only to your session on this instance.
+ These settings apply only to your session on this instance.src/app/modal/quick-settings-modal.component.html8
- Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website.
+ Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website.
Please consider configuring these fields to help people to choose
- the appropriate instance
- .
+ the appropriate instance
+ .
Without them, your instance may not be referenced on the
- JoinPeerTube website
- .
+ JoinPeerTube website
+ .
-
- src/app/modal/instance-config-warning-modal.component.html25
+ src/app/modal/instance-config-warning-modal.component.html25
+
Don't show me this warning anymoreDon't show me this warning anymore
-
- src/app/modal/instance-config-warning-modal.component.html33
+ src/app/modal/instance-config-warning-modal.component.html33
+
CloseClose
-
- src/app/modal/instance-config-warning-modal.component.html38src/app/shared/shared-video-live/live-stream-information.component.html34
- Update live settingsUpdate live settings
-
- src/app/shared/shared-video-live/live-stream-information.component.html39
+ src/app/modal/instance-config-warning-modal.component.html38
+ src/app/shared/shared-video-live/live-stream-information.component.html34
+
+
+ Update live settings
+ Update live settings
+ src/app/shared/shared-video-live/live-stream-information.component.html39
+
-
- Configure
-
+ Configure
Configure
-
- src/app/modal/instance-config-warning-modal.component.html43
+ src/app/modal/instance-config-warning-modal.component.html43
+
Change the languageZměnit jazyk
-
- src/app/menu/language-chooser.component.html3
+ src/app/menu/language-chooser.component.html3
+
Help to translate PeerTube!
Pomozte nám přeložit PeerTube!
-
- src/app/menu/language-chooser.component.html9
+ src/app/menu/language-chooser.component.html9
+
Public profilePublic profile
-
- src/app/menu/menu.component.html23
-
-
+ src/app/menu/menu.component.html23
+
Interface:Interface:
-
- src/app/menu/menu.component.html30
+ src/app/menu/menu.component.html30
+
Videos:Videos:
-
- src/app/menu/menu.component.html37
+ src/app/menu/menu.component.html37
+
Sensitive:Sensitive:
-
- src/app/menu/menu.component.html46
-
+ src/app/menu/menu.component.html46
+
Help share videosHelp share videos
-
- src/app/menu/menu.component.html52
-
+ src/app/menu/menu.component.html52
+
Keyboard shortcutsKeyboard shortcuts
-
- src/app/menu/menu.component.html178src/app/menu/menu.component.html61
- powered by PeerTube - CopyLeft 2015-2021powered by PeerTube - CopyLeft 2015-2021
+ src/app/menu/menu.component.html178
+ src/app/menu/menu.component.html61
+
+
+ powered by PeerTube - CopyLeft 2015-2021
+ powered by PeerTube - CopyLeft 2015-2021src/app/menu/menu.component.html183
@@ -1482,86 +1486,103 @@ The link will expire within 1 hour.
HelpHelp
-
- src/app/menu/menu.component.html174
+ src/app/menu/menu.component.html174
+ Get help using PeerTubeGet help using PeerTube
-
- src/app/menu/menu.component.html174
-
+ src/app/menu/menu.component.html174
+
powered by PeerTubepowered by PeerTube
-
- src/app/menu/menu.component.html184
-
+ src/app/menu/menu.component.html184
+
Log outOdhlásit
-
- src/app/menu/menu.component.html66
- My accountMy account
-
- src/app/menu/menu.component.html77
- My libraryMy library
-
- src/app/menu/menu.component.html82
+ src/app/menu/menu.component.html66
+
+
+ My account
+ My account
+ src/app/menu/menu.component.html77
+
+
+ My library
+ My library
+ src/app/menu/menu.component.html82
+ Create an accountVytvořit účet
-
- src/app/menu/menu.component.html94src/app/+login/login.component.html50
- IN MY LIBRARYIN MY LIBRARY
-
- src/app/menu/menu.component.html98
-
+ src/app/menu/menu.component.html94
+ src/app/+login/login.component.html50
+
+
+ IN MY LIBRARY
+ IN MY LIBRARY
+ src/app/menu/menu.component.html98
+
- My videosMy videos
-
- src/app/+my-library/my-library-routing.module.ts77src/app/+my-library/my-videos/my-videos.component.ts58
- My video importsMy video imports
-
- src/app/+my-library/my-library-routing.module.ts90
- My playlistsMy playlists
-
- src/app/+my-library/my-library-routing.module.ts40
- Create a new playlistCreate a new playlist
-
- src/app/+my-library/my-library-routing.module.ts49
- My subscriptionsMy subscriptions
-
- src/app/+my-library/my-library-routing.module.ts99
+ My videos
+ My videos
+ src/app/+my-library/my-library-routing.module.ts77
+ src/app/+my-library/my-videos/my-videos.component.ts58
+
+
+ My video imports
+ My video imports
+ src/app/+my-library/my-library-routing.module.ts90
+
+
+ My playlists
+ My playlists
+ src/app/+my-library/my-library-routing.module.ts40
+
+
+ Create a new playlist
+ Create a new playlist
+ src/app/+my-library/my-library-routing.module.ts49
+
+
+ My subscriptions
+ My subscriptions
+ src/app/+my-library/my-library-routing.module.ts99
+ VideosVidea
-
- src/app/menu/menu.component.html102
- Interface: Interface:
-
- src/app/menu/menu.component.html169
+ src/app/menu/menu.component.html102
+
+
+ Interface:
+ Interface:
+ src/app/menu/menu.component.html169
+ PlaylistsSeznamy videí
-
- src/app/menu/menu.component.html107
+ src/app/menu/menu.component.html107
+
SubscriptionsOdběry
-
- src/app/menu/menu.component.html112
+ src/app/menu/menu.component.html112
+
HistoryHistorie
-
- src/app/menu/menu.component.html117
+ src/app/menu/menu.component.html117
+
VIDEOSVIDEOS
-
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html411
- Allow import with HTTP URL (e.g. YouTube)Allow import with HTTP URL (e.g. YouTube)
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html411
+
+
+ Allow import with HTTP URL (e.g. YouTube)
+ Allow import with HTTP URL (e.g. YouTube)src/app/+admin/config/edit-custom-config/edit-custom-config.component.html422
@@ -1570,406 +1591,423 @@ The link will expire within 1 hour.
DiscoverDiscover
-
-
- src/app/menu/menu.component.html127src/app/+videos/video-list/overview/video-overview.component.html1
+ src/app/menu/menu.component.html127
+ src/app/+videos/video-list/overview/video-overview.component.html1
+ TrendingTrendy
-
- src/app/menu/menu.component.html132
+ src/app/menu/menu.component.html132
+
Most likedMost liked
-
- src/app/menu/menu.component.html137
+ src/app/menu/menu.component.html137
+
Recently addedNedávno přidané
-
- src/app/menu/menu.component.html142
+ src/app/menu/menu.component.html142
+
AdministrationAdministrace
-
- src/app/menu/menu.component.html87
+ src/app/menu/menu.component.html87
+
AboutO nás
-
-
- src/app/menu/menu.component.html161src/app/+accounts/account-about/account-about.component.html1
+ src/app/menu/menu.component.html161
+ src/app/+accounts/account-about/account-about.component.html1
+
ContactContact
-
- src/app/menu/menu.component.html173
+ src/app/menu/menu.component.html173
+
View your notificationsZobrazit vaše oznámení
-
- src/app/menu/notification.component.html3src/app/menu/notification.component.html11src/app/menu/notification.component.html11
+ src/app/menu/notification.component.html3
+ src/app/menu/notification.component.html11
+ src/app/menu/notification.component.html11
+
NotificationsOznámení
-
-
- src/app/menu/notification.component.html22src/app/+my-account/my-account-notifications/my-account-notifications.component.html1
+ src/app/menu/notification.component.html22
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html1
+
Mark all as readMark 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
+ 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 preferencesAktualizovat vaše předvolby oznámení
-
- src/app/menu/notification.component.html31
+ src/app/menu/notification.component.html31
+
See all your notificationsZobrazit všechna oznámení
-
- src/app/menu/notification.component.html49
- I'm a teapotI'm a teapot
+ src/app/menu/notification.component.html49
+
+
+ I'm a teapot
+ I'm a teapotsrc/app/+page-not-found/page-not-found.component.ts20
-
- That's an error.That's an error.
+
+
+ That's an error.
+ That's an error.src/app/+page-not-found/page-not-found.component.html4
-
- We couldn't find any ressource tied to the URL you were looking for. We couldn't find any ressource tied to the URL you were looking for.
+
+
+ We couldn't find any ressource tied to the URL you were looking for.
+ We couldn't find any ressource tied to the URL you were looking for. src/app/+page-not-found/page-not-found.component.html6,8
-
- Possible reasons:Possible reasons:
+
+
+ Possible reasons:
+ Possible reasons:src/app/+page-not-found/page-not-found.component.html11Possible reasons preceding a list of reasons a `Not Found` error page may occur
-
- The page may have been moved or deletedThe page may have been moved or deleted
+
+
+ The page may have been moved or deleted
+ The page may have been moved or deletedsrc/app/+page-not-found/page-not-found.component.html14
-
- You may have used an outdated or broken linkYou may have used an outdated or broken link
+
+
+ You may have used an outdated or broken link
+ You may have used an outdated or broken linksrc/app/+page-not-found/page-not-found.component.html15
-
- You may have typed the address or URL incorrectlyYou may have typed the address or URL incorrectly
+
+
+ You may have typed the address or URL incorrectly
+ You may have typed the address or URL incorrectlysrc/app/+page-not-found/page-not-found.component.html16
-
- The requested entity body blends sweet bits with a mellow earthiness. The requested entity body blends sweet bits with a mellow earthiness.
+
+
+ The requested entity body blends sweet bits with a mellow earthiness.
+ The requested entity body blends sweet bits with a mellow earthiness. src/app/+page-not-found/page-not-found.component.html26,27Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request
-
- Sepia seems to like it.Sepia seems to like it.
+
+
+ Sepia seems to like it.
+ Sepia seems to like it.src/app/+page-not-found/page-not-found.component.html28This is about Sepia's tea
-
- 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
+
+
+ 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
+ Search videos, channels…Search videos, channels…
-
- src/app/header/search-typeahead.component.html3
+ src/app/header/search-typeahead.component.html3
+
GLOBAL SEARCHGLOBAL SEARCH
-
- src/app/header/search-typeahead.component.html26
+ src/app/header/search-typeahead.component.html26
+
using
- using
-
-
-
- src/app/header/search-typeahead.component.html28
+ používá
+ 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
+ src/app/header/search-typeahead.component.html32
+
ADVANCED SEARCHADVANCED SEARCH
-
- src/app/header/search-typeahead.component.html38
+ src/app/header/search-typeahead.component.html38
+
any instanceany instance
-
- src/app/header/search-typeahead.component.html41
+ src/app/header/search-typeahead.component.html41
+
only followed instancesonly followed instances
-
- src/app/header/search-typeahead.component.html42
+ src/app/header/search-typeahead.component.html42
+
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.html40
+ src/app/header/search-typeahead.component.html40
+
will list the matching channelwill list the matching channel
-
-
- src/app/header/search-typeahead.component.html49src/app/header/search-typeahead.component.html52
+ src/app/header/search-typeahead.component.html49
+ src/app/header/search-typeahead.component.html52
+
will list the matching videowill list the matching video
-
- src/app/header/search-typeahead.component.html55
+ src/app/header/search-typeahead.component.html55
+
Any other input will return matching video or channel names.Any other input will return matching video or channel names.
-
- src/app/header/search-typeahead.component.html58
+ src/app/header/search-typeahead.component.html58
+
Search...Hledat...
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html6
-
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html6
+
In this instance's networkIn this instance's network
-
- src/app/header/suggestion.component.html14
+ src/app/header/suggestion.component.html14
+
In the vidiverseIn the vidiverse
-
- src/app/header/suggestion.component.html15
+ src/app/header/suggestion.component.html15
+
SortSeřadit
-
- src/app/+search/search-filters.component.html7
+ src/app/+search/search-filters.component.html7
+
-
- Reset
-
+ Reset
Reset
-
-
-
-
-
- src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html56src/app/+search/search-filters.component.html91
+ 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.html56
+ src/app/+search/search-filters.component.html91
+
Published dateDatum publikace
-
- src/app/+search/search-filters.component.html40
+ src/app/+search/search-filters.component.html40
+
Original publication yearPůvodní rok publikování
-
- src/app/+search/search-filters.component.html54
+ src/app/+search/search-filters.component.html54
+
After...Po...
-
- src/app/+search/search-filters.component.html66
+ src/app/+search/search-filters.component.html66
+
Before...Před...
-
- src/app/+search/search-filters.component.html76
+ src/app/+search/search-filters.component.html76
+
DurationTrvání
-
-
- src/app/+search/search-filters.component.html89src/app/+videos/+video-watch/video-watch.component.html276
+ src/app/+search/search-filters.component.html89
+ src/app/+videos/+video-watch/video-watch.component.html276
+
Display sensitive contentZobrazit citlivý obsah
-
- src/app/+search/search-filters.component.html21
+ src/app/+search/search-filters.component.html21
+
YesAno
-
- src/app/+search/search-filters.component.html29
+ src/app/+search/search-filters.component.html29
+
NoNe
-
- src/app/+search/search-filters.component.html34
+ src/app/+search/search-filters.component.html34
+
CategoryKategorie
-
-
-
- src/app/+search/search-filters.component.html102src/app/+videos/+video-watch/video-watch.component.html241src/app/+videos/+video-edit/shared/video-edit.component.html63
+ src/app/+search/search-filters.component.html102
+ src/app/+videos/+video-watch/video-watch.component.html241
+ src/app/+videos/+video-edit/shared/video-edit.component.html63
+
-
- Reset
-
+ Reset
Reset
-
-
-
-
-
- src/app/+search/search-filters.component.html104src/app/+search/search-filters.component.html117src/app/+search/search-filters.component.html130src/app/+search/search-filters.component.html145src/app/+search/search-filters.component.html153
+ src/app/+search/search-filters.component.html104
+ src/app/+search/search-filters.component.html117
+ src/app/+search/search-filters.component.html130
+ src/app/+search/search-filters.component.html145
+ src/app/+search/search-filters.component.html153
+
Display all categoriesDisplay all categories
-
- src/app/+search/search-filters.component.html108
+ src/app/+search/search-filters.component.html108
+
LicenceLicence
-
-
-
- src/app/+search/search-filters.component.html115src/app/+videos/+video-watch/video-watch.component.html250src/app/+videos/+video-edit/shared/video-edit.component.html74
+ src/app/+search/search-filters.component.html115
+ src/app/+videos/+video-watch/video-watch.component.html250
+ src/app/+videos/+video-edit/shared/video-edit.component.html74
+
Display all licensesDisplay all licenses
-
- src/app/+search/search-filters.component.html121
+ src/app/+search/search-filters.component.html121
+
LanguageJazyk
-
-
-
-
- src/app/+search/search-filters.component.html128src/app/+videos/+video-watch/video-watch.component.html259src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94
+ src/app/+search/search-filters.component.html128
+ src/app/+videos/+video-watch/video-watch.component.html259
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10
+ src/app/+videos/+video-edit/shared/video-edit.component.html94
+
Display all languagesDisplay all languages
-
- src/app/+search/search-filters.component.html134
+ src/app/+search/search-filters.component.html134
+
All of these tagsVšechny tyto štítky
-
- src/app/+search/search-filters.component.html143
+ src/app/+search/search-filters.component.html143
+
One of these tagsJeden z těchto štítků
-
- src/app/+search/search-filters.component.html151
+ src/app/+search/search-filters.component.html151
+
Search targetSearch target
-
- src/app/+search/search-filters.component.html160
+ src/app/+search/search-filters.component.html160
+
VidiverseVidiverse
-
- src/app/+search/search-filters.component.html170
+ src/app/+search/search-filters.component.html170
+
-
- Reset
-
+ Reset
Reset
-
- src/app/+search/search-filters.component.html178
+ src/app/+search/search-filters.component.html178
+
FilterFiltr
-
- src/app/+search/search-filters.component.html181
-
+ src/app/+search/search-filters.component.html181
+
Video channelsVideo channels
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html1
+ src/app/+accounts/account-video-channels/account-video-channels.component.html1
+
Add captionPřidat titulek
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html5
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html5
+
Select the caption fileVyberte soubor s titulky
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html24
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html24
+
This will replace an existing caption!
Tohle nahradí existující titulek!
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html31
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html31
+
Add this captionPřidat tento titulek
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42
+
TitleNadpis
-
- src/app/+videos/+video-edit/shared/video-edit.component.html11
+ src/app/+videos/+video-edit/shared/video-edit.component.html11
+
TagsŠtítky
-
-
- src/app/+videos/+video-watch/video-watch.component.html268src/app/+videos/+video-edit/shared/video-edit.component.html19
+ src/app/+videos/+video-watch/video-watch.component.html268
+ src/app/+videos/+video-edit/shared/video-edit.component.html19
+
- Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag.
+ Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag.
Tags could be used to suggest relevant recommendations.
-
+
There is a maximum of 5 tags.
-
+
Press
- Enter
- to add a new tag.
+ Enter
+ to add a new tag.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html24
+ src/app/+videos/+video-edit/shared/video-edit.component.html24
+
Enter a new tagEnter a new tag
-
- src/app/shared/shared-forms/select/select-tags.component.html5
- extensionsextensions
-
- src/app/shared/shared-main/account/actor-avatar-info.component.ts41
- This image is too large.This image is too large.
+ src/app/shared/shared-forms/select/select-tags.component.html5
+
+
+ extensions
+ extensions
+ src/app/shared/shared-main/account/actor-avatar-info.component.ts41
+
+
+ This image is too large.
+ This image is too large.src/app/shared/shared-main/account/actor-avatar-info.component.ts56
@@ -1978,1070 +2016,1133 @@ The link will expire within 1 hour.
No items foundNo items found
-
- src/app/shared/shared-forms/select/select-checkbox.component.html14
+ src/app/shared/shared-forms/select/select-checkbox.component.html14
+ DescriptionPopis
-
-
-
-
-
-
-
-
- src/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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64src/app/+about/about-instance/about-instance.component.html113src/app/+videos/+video-edit/shared/video-edit.component.html38src/app/+admin/config/edit-custom-config/edit-custom-config.component.html39
+ 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/+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.html64
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64
+ src/app/+about/about-instance/about-instance.component.html113
+ src/app/+videos/+video-edit/shared/video-edit.component.html38
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html39
+
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 license for your work. Choose the appropriate license for your work.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html79
+ src/app/+videos/+video-edit/shared/video-edit.component.html43
+
+
+ Choose the appropriate license for your work.
+ Choose the appropriate license for your work.
+ src/app/+videos/+video-edit/shared/video-edit.component.html79
+ ChannelKanál
-
-
-
-
-
-
-
- Stepper label for the registration page asking information about the default channelsrc/app/+signup/+register/register.component.html33src/app/+signup/+register/register.component.html33src/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/+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-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-upload.component.html14src/app/+videos/+video-edit/shared/video-edit.component.html58
+ Stepper label for the registration page asking information about the default channel
+ src/app/+signup/+register/register.component.html33
+ src/app/+signup/+register/register.component.html33
+ 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/+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-go-live.component.html6
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html14
+ src/app/+videos/+video-edit/shared/video-edit.component.html58
+
PrivacySoukromí
-
-
-
-
-
-
-
- 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-watch/video-watch.component.html226src/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-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-upload.component.html21src/app/+videos/+video-edit/shared/video-edit.component.html106
+ 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-watch/video-watch.component.html226
+ 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-go-live.component.html13
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html21
+ src/app/+videos/+video-edit/shared/video-edit.component.html106
+
FAQFAQ
-
- src/app/menu/menu.component.html175
+ src/app/menu/menu.component.html175
+
Frequently asked questions about PeerTubeFrequently asked questions about PeerTube
-
- src/app/menu/menu.component.html175
+ src/app/menu/menu.component.html175
+
APIAPI
-
- src/app/menu/menu.component.html177
+ src/app/menu/menu.component.html177
+
API documentationAPI documentation
-
- src/app/menu/menu.component.html177
+ src/app/menu/menu.component.html177
+
Schedule publication ()
- Naplánovat publikování (
- )
-
-
- src/app/+videos/+video-edit/shared/video-edit.component.html117
+ Naplánovat publikování ()
+ src/app/+videos/+video-edit/shared/video-edit.component.html117
+
Contains sensitive contentContains sensitive content
-
- src/app/+videos/+video-edit/shared/video-edit.component.html131
+ src/app/+videos/+video-edit/shared/video-edit.component.html131
+
Some instances do not list videos containing mature or explicit content by default.Některé instance nezobrazují videa s citlivým materiálem.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html135
+ src/app/+videos/+video-edit/shared/video-edit.component.html135
+
Publish after transcodingPublish after transcoding
-
- src/app/+videos/+video-edit/shared/video-edit.component.html141
+ src/app/+videos/+video-edit/shared/video-edit.component.html141
+
If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html145
+ src/app/+videos/+video-edit/shared/video-edit.component.html145
+
Basic infoZákladní údaje
-
- src/app/+videos/+video-edit/shared/video-edit.component.html5
+ src/app/+videos/+video-edit/shared/video-edit.component.html5
+
Add another captionPřidat další titulek
-
- src/app/+videos/+video-edit/shared/video-edit.component.html163
+ src/app/+videos/+video-edit/shared/video-edit.component.html163
+
See the subtitle fileSee the subtitle file
-
- src/app/+videos/+video-edit/shared/video-edit.component.html172
+ src/app/+videos/+video-edit/shared/video-edit.component.html172
+
- Already uploaded ✔
+ Already uploaded ✔Already uploaded ✔
-
- src/app/+videos/+video-edit/shared/video-edit.component.html176
+ src/app/+videos/+video-edit/shared/video-edit.component.html176
+
Will be created on updateWill be created on update
-
- src/app/+videos/+video-edit/shared/video-edit.component.html184
+ src/app/+videos/+video-edit/shared/video-edit.component.html184
+
Cancel createCancel create
-
- src/app/+videos/+video-edit/shared/video-edit.component.html186
+ src/app/+videos/+video-edit/shared/video-edit.component.html186
+
Will be deleted on updateWill be deleted on update
-
- src/app/+videos/+video-edit/shared/video-edit.component.html192
+ src/app/+videos/+video-edit/shared/video-edit.component.html192
+
Cancel deletionCancel deletion
-
- src/app/+videos/+video-edit/shared/video-edit.component.html194
+ src/app/+videos/+video-edit/shared/video-edit.component.html194
+
No captions for now.
Prozatím tu nejsou žádné titulky.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html200
- Live settingsLive settings
-
- src/app/+videos/+video-edit/shared/video-edit.component.html208
- You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your livesYou 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
- This is a permanent liveThis is a permanent live
-
- 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
- Automatically publish a replay when your live endsAutomatically 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.html200
+
+
+ Live settings
+ Live settings
+ src/app/+videos/+video-edit/shared/video-edit.component.html208
+
+
+ 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
+
+
+ This is a permanent live
+ This is a permanent live
+ 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
+
+
+ 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
+ CaptionsTitulky
-
- src/app/+videos/+video-edit/shared/video-edit.component.html155
+ src/app/+videos/+video-edit/shared/video-edit.component.html155
+
Video previewVideo preview
-
- src/app/+videos/+video-edit/shared/video-edit.component.html267
+ src/app/+videos/+video-edit/shared/video-edit.component.html267
+
SupportPodpora
-
- src/app/+videos/+video-edit/shared/video-edit.component.html276
+ src/app/+videos/+video-edit/shared/video-edit.component.html276
+
-
- Short text to tell people how they can support you (membership platform...).
-
+ 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 datePůvodní datum publikace
-
- 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)
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
- Plugin settingsPlugin settings
-
- src/app/+videos/+video-edit/shared/video-edit.component.html330
+ src/app/+videos/+video-edit/shared/video-edit.component.html300
+
+
+ Plugin settings
+ Plugin settings
+ src/app/+videos/+video-edit/shared/video-edit.component.html330
+ Enable video commentsPovolit komentáře
-
- src/app/+videos/+video-edit/shared/video-edit.component.html317
+ src/app/+videos/+video-edit/shared/video-edit.component.html317
+
Enable downloadDownload povolen
-
- src/app/+videos/+video-edit/shared/video-edit.component.html322
+ src/app/+videos/+video-edit/shared/video-edit.component.html322
+
Advanced settingsRozšířená nastavení
-
- src/app/+videos/+video-edit/shared/video-edit.component.html260
+ src/app/+videos/+video-edit/shared/video-edit.component.html260
+
URLURL
-
-
-
- src/app/shared/shared-share-modal/video-share.component.html16src/app/shared/shared-share-modal/video-share.component.html71src/app/+videos/+video-edit/video-add-components/video-import-url.component.html6
- You can import any URL supported by youtube-dl or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. You can import any URL supported by youtube-dl or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
-
- src/app/+videos/+video-edit/video-add-components/video-import-url.component.html11
-
+ src/app/shared/shared-share-modal/video-share.component.html16
+ src/app/shared/shared-share-modal/video-share.component.html71
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.html6
+
+
+ You can import any URL supported by youtube-dl or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
+ You can import any URL supported by youtube-dl or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.html11
+ Sorry, but something went wrongSorry, but something went wrong
-
-
-
- src/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-go-live.component.html26src/app/+videos/+video-edit/video-add-components/video-upload.component.html74
+ 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-go-live.component.html26
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html74
+
- Congratulations, the video behind will be imported! You can already add information about this video.
-
+ Congratulations, the video behind will be imported! You can already add information about this video.
Congratulations, the video behind
will be imported! You can already add information about this video.
-
- src/app/+videos/+video-edit/video-add-components/video-import-url.component.html48
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.html48
+
UpdateAktualizovat
-
-
-
-
- src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/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-add-components/video-go-live.component.html45
+ src/app/+videos/+video-edit/video-update.component.html3
+ src/app/+videos/+video-edit/video-update.component.html18
+ 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-add-components/video-go-live.component.html45
+
Select the file to uploadZvolte soubor k nahrání
-
- 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
+
ScheduledScheduled
-
- src/app/+videos/+video-edit/shared/video-edit.component.ts197
+ src/app/+videos/+video-edit/shared/video-edit.component.ts197
+
Hide the video until a specific dateHide the video until a specific date
-
- src/app/+videos/+video-edit/shared/video-edit.component.ts198
+ src/app/+videos/+video-edit/shared/video-edit.component.ts198
+
Video background imageVideo background image
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html29
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html29
+
- Image that will be merged with your audio file. The chosen image will be definitive and cannot be modified.
+ Image that will be merged with your audio file. The chosen image will be definitive and cannot be modified.
Image that will be merged with your audio file.
-
+
The chosen image will be definitive and cannot be modified.
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html32
- Total video uploadedTotal video uploaded
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html52
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html32
+
+
+ Total video uploaded
+ Total video uploaded
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html52
+ Processing…Processing…
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html54
- RetryRetry
-
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html54
+
+
+ Retry
+ RetryRetry failed upload of a video
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html68
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html68
+
Total video quotaTotal video quota
-
-
-
- src/app/shared/shared-main/users/user-quota.component.html3src/app/+admin/users/user-list/user-list.component.html141
+ src/app/shared/shared-main/users/user-quota.component.html3
+ src/app/+admin/users/user-list/user-list.component.html141
+
Congratulations! Your video is now available in your private library.
Congratulations! Your video is now available in your private library.
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html79
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html79
+
Publish will be available when upload is finishedPublikovat lze jakmile bude dokončeno nahrávání
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html92
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html92
+
PublishPublikovat
-
- src/app/header/header.component.html5src/app/+videos/+video-edit/video-add-components/video-upload.component.html94
+ src/app/header/header.component.html5
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html94
+
Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.
-
- src/app/+videos/+video-edit/video-add.component.html3
+ src/app/+videos/+video-edit/video-add.component.html3
+
Read instance rules for helpRead instance rules for help
-
- src/app/+videos/+video-edit/video-add.component.html4
+ src/app/+videos/+video-edit/video-add.component.html4
+
Select the torrent to importSelect the torrent to import
-
- 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
+
OROR
-
- 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 URIPaste 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
- Cannot create live because this instance have too many created livesCannot create live because this instance have too many created lives
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts91
- Cannot create live because you created too many livesCannot create live because you created too many lives
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts93
- Live published.Live published.
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
- Go LiveGo Live
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.html20
- Max live duration is . If your live reaches this limit, it will be automatically terminated.
- Max live duration is . If your live reaches this limit, it will be automatically terminated.
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html56
+
+
+ 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.ts91
+
+
+ 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.ts93
+
+
+ Live published.
+ Live published.
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
+
+
+ Go Live
+ Go Live
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.html20
+
+
+ Max live duration is . If your live reaches this limit, it will be automatically terminated.
+ Max live duration is . If your live reaches this limit, it will be automatically terminated.
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.html30
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.html30
+
- We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos.
+ We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos.
We recommend you to not use the
- root
- user to publish your videos, since it's the super-admin account of your instance.
+ root
+ user to publish your videos, since it's the super-admin account of your instance.
-
+
Instead,
- create a dedicated account
- to upload your videos.
+ create a dedicated account
+ to upload your videos.
-
- src/app/+videos/+video-edit/video-add.component.html11
+ src/app/+videos/+video-edit/video-add.component.html11
+
Import
- Import
-
-
-
- src/app/+videos/+video-edit/video-add.component.html19
+ Importovat
+ src/app/+videos/+video-edit/video-add.component.html19
+
Upload Upload
-
- src/app/+videos/+video-edit/video-add.component.html20
+ src/app/+videos/+video-edit/video-add.component.html20
+
Upload a fileNahrát soubor
-
- src/app/+videos/+video-edit/video-add.component.html26
+ src/app/+videos/+video-edit/video-add.component.html26
+
Import with URLImport with URL
-
- src/app/+videos/+video-edit/video-add.component.html36
+ src/app/+videos/+video-edit/video-add.component.html36
+
Import with torrentImport with torrent
-
- src/app/+videos/+video-edit/video-add.component.html46
- Go liveGo live
-
- src/app/+videos/+video-edit/video-add.component.html56
+ src/app/+videos/+video-edit/video-add.component.html46
+
+
+ Go live
+ Go live
+ src/app/+videos/+video-edit/video-add.component.html56
+
-
- Other videos
-
+ Other videos
Other videos
-
- src/app/+videos/+video-watch/recommendations/recommended-videos.component.html5
+ src/app/+videos/+video-watch/recommendations/recommended-videos.component.html5
+
AUTOPLAYAUTOPLAY
-
- src/app/+videos/+video-watch/recommendations/recommended-videos.component.html10
- Report this commentReport this comment
-
- src/app/+videos/+video-watch/comment/video-comment.component.ts173
+ src/app/+videos/+video-watch/recommendations/recommended-videos.component.html10
+
+
+ Report this comment
+ Report this comment
+ src/app/+videos/+video-watch/comment/video-comment.component.ts173
+ ShareSdílet
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html12src/app/shared/shared-share-modal/video-share.component.html3
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html12
+ src/app/shared/shared-share-modal/video-share.component.html3
+
Share the playlistShare the playlist
-
- src/app/shared/shared-share-modal/video-share.component.html11
+ src/app/shared/shared-share-modal/video-share.component.html11
+
Share the playlist at this video positionShare the playlist at this video position
-
- src/app/shared/shared-share-modal/video-share.component.html58
+ src/app/shared/shared-share-modal/video-share.component.html58
+
Share the videoShare the video
-
- src/app/shared/shared-share-modal/video-share.component.html66
+ src/app/shared/shared-share-modal/video-share.component.html66
+
QR-CodeQR-Code
-
-
- src/app/shared/shared-share-modal/video-share.component.html27src/app/shared/shared-share-modal/video-share.component.html81
+ src/app/shared/shared-share-modal/video-share.component.html27
+ src/app/shared/shared-share-modal/video-share.component.html81
+
-
- The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
-
+ The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
-
-
- src/app/shared/shared-share-modal/video-share.component.html44src/app/shared/shared-share-modal/video-share.component.html98
+ src/app/shared/shared-share-modal/video-share.component.html44
+ src/app/shared/shared-share-modal/video-share.component.html98
+
EmbedVložit do stránky
-
-
- src/app/shared/shared-share-modal/video-share.component.html37src/app/shared/shared-share-modal/video-share.component.html91
+ src/app/shared/shared-share-modal/video-share.component.html37
+ src/app/shared/shared-share-modal/video-share.component.html91
+
Auto select subtitleAuto select subtitle
-
- src/app/shared/shared-share-modal/video-share.component.html128
+ src/app/shared/shared-share-modal/video-share.component.html128
+
-
- More customization
-
+ More customization
More customization
-
- src/app/shared/shared-share-modal/video-share.component.html223
+ src/app/shared/shared-share-modal/video-share.component.html223
+
-
- Less customization
-
+ Less customization
Less customization
-
- src/app/shared/shared-share-modal/video-share.component.html231
- LoginLogin
-
- src/app/+login/login-routing.module.ts14
+ src/app/shared/shared-share-modal/video-share.component.html231
+
+
+ Login
+ Login
+ src/app/+login/login-routing.module.ts14
+ AutoplayAutoplay
-
- src/app/shared/shared-share-modal/video-share.component.html159
+ src/app/shared/shared-share-modal/video-share.component.html159
+
Support
- Support
-
-
-
- src/app/+videos/+video-watch/modal/video-support.component.html3
+ Podpořit
+ src/app/+videos/+video-watch/modal/video-support.component.html3
+
Maybe laterMaybe later
-
- src/app/+videos/+video-watch/modal/video-support.component.html11
+ src/app/+videos/+video-watch/modal/video-support.component.html11
+
MutedSkryt
-
-
- src/app/+accounts/accounts.component.html19src/app/shared/shared-share-modal/video-share.component.html166
+ src/app/+accounts/accounts.component.html19
+ src/app/shared/shared-share-modal/video-share.component.html166
+
LoopLoop
-
- src/app/shared/shared-share-modal/video-share.component.html173
- Use origin instance URLUse origin instance URL
-
- src/app/shared/shared-share-modal/video-share.component.html180
+ src/app/shared/shared-share-modal/video-share.component.html173
+
+
+ Use origin instance URL
+ Use origin instance URL
+ src/app/shared/shared-share-modal/video-share.component.html180
+ Display video titleDisplay video title
-
- src/app/shared/shared-share-modal/video-share.component.html189
+ src/app/shared/shared-share-modal/video-share.component.html189
+
Display privacy warningDisplay privacy warning
-
- src/app/shared/shared-share-modal/video-share.component.html196
+ src/app/shared/shared-share-modal/video-share.component.html196
+
Display player controlsDisplay player controls
-
- src/app/shared/shared-share-modal/video-share.component.html203
+ src/app/shared/shared-share-modal/video-share.component.html203
+
Display PeerTube button linkDisplay PeerTube button link
-
- src/app/shared/shared-share-modal/video-share.component.html210
+ src/app/shared/shared-share-modal/video-share.component.html210
+
PublicPublic
-
- src/app/+videos/+video-watch/video-watch-playlist.component.html11
+ src/app/+videos/+video-watch/video-watch-playlist.component.html11
+
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/video-watch.component.html21
+ src/app/+videos/+video-watch/video-watch.component.html21
+
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/video-watch.component.html25
+ src/app/+videos/+video-watch/video-watch.component.html25
+
- This video will be published on .
+ This video will be published on .
This video will be published on
.
-
- src/app/+videos/+video-watch/video-watch.component.html28
- This live has not started yet. This live has not started yet.
-
- src/app/+videos/+video-watch/video-watch.component.html33
- This live has ended. This live has ended.
-
- src/app/+videos/+video-watch/video-watch.component.html37
+ src/app/+videos/+video-watch/video-watch.component.html28
+
+
+ This live has not started yet.
+ This live has not started yet.
+ src/app/+videos/+video-watch/video-watch.component.html33
+
+
+ This live has ended.
+ This live has ended.
+ src/app/+videos/+video-watch/video-watch.component.html37
+ This video is blocked.This video is blocked.
-
- src/app/+videos/+video-watch/video-watch.component.html41
- Published Published
-
- src/app/+videos/+video-watch/video-watch.component.html55src/app/+videos/+video-watch/video-watch.component.html68
-
-
+ src/app/+videos/+video-watch/video-watch.component.html41
+
+
+ Published
+ Published
+ src/app/+videos/+video-watch/video-watch.component.html55
+ src/app/+videos/+video-watch/video-watch.component.html68
+ SUPPORTSUPPORT
-
- src/app/+videos/+video-watch/video-watch.component.html104
+ src/app/+videos/+video-watch/video-watch.component.html104
+
SHARESHARE
-
- src/app/+videos/+video-watch/video-watch.component.html109
+ src/app/+videos/+video-watch/video-watch.component.html109
+
SAVESAVE
-
- src/app/+videos/+video-watch/video-watch.component.html120
+ src/app/+videos/+video-watch/video-watch.component.html120
+
DOWNLOADDOWNLOAD
-
- src/app/+videos/+video-watch/video-watch.component.html134
+ src/app/+videos/+video-watch/video-watch.component.html134
+
Like this videoTo se mi líbí
-
- src/app/+videos/+video-watch/video-watch.component.ts132
+ src/app/+videos/+video-watch/video-watch.component.ts132
+
Dislike this videoTo se mi nelíbí
-
- src/app/+videos/+video-watch/video-watch.component.ts133
+ src/app/+videos/+video-watch/video-watch.component.ts133
+
Support options for this videoSupport options for this video
-
- src/app/+videos/+video-watch/video-watch.component.ts134
+ src/app/+videos/+video-watch/video-watch.component.ts134
+
By
- By
-
-
-
- src/app/+videos/+video-watch/video-watch.component.html186
+ Od
+ src/app/+videos/+video-watch/video-watch.component.html186
+
SubscribeSubscribe
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html9
+ src/app/shared/shared-user-subscription/subscribe-button.component.html9
+
Subscribe to all channelsSubscribe to all channels
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html11
+ src/app/shared/shared-user-subscription/subscribe-button.component.html11
+
channels subscribedchannels 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 moreZobrazit více
-
- src/app/+videos/+video-watch/video-watch.component.html213
+ src/app/+videos/+video-watch/video-watch.component.html213
+
Show lessZobrazit méně
-
- src/app/+videos/+video-watch/video-watch.component.html219
+ src/app/+videos/+video-watch/video-watch.component.html219
+
Origin instanceOrigin instance
-
- src/app/+videos/+video-watch/video-watch.component.html231
+ src/app/+videos/+video-watch/video-watch.component.html231
+
Originally publishedOriginally published
-
- src/app/+videos/+video-watch/video-watch.component.html236
+ src/app/+videos/+video-watch/video-watch.component.html236
+
- Friendly Reminder:
+ Friendly Reminder:Friendly Reminder:
-
- src/app/+videos/+video-watch/video-watch.component.html299
+ src/app/+videos/+video-watch/video-watch.component.html299
+
-
- 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.
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/video-watch.component.html301
+ src/app/+videos/+video-watch/video-watch.component.html301
+
More informationVíce informací
-
-
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html52src/app/+admin/system/jobs/jobs.component.html50src/app/+admin/moderation/video-comment-list/video-comment-list.component.html73src/app/+videos/+video-watch/video-watch.component.html304src/app/+admin/moderation/video-block-list/video-block-list.component.html53src/app/+admin/moderation/video-block-list/video-block-list.component.html53
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html52
+ src/app/+admin/system/jobs/jobs.component.html50
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html73
+ src/app/+videos/+video-watch/video-watch.component.html304
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html53
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html53
+
The video was blocked due to automatic blocking of new videosThe video was blocked due to automatic blocking of new videos
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html74src/app/+admin/moderation/video-block-list/video-block-list.component.html74
- NSFWNSFW
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html84
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html74
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html74
+
+
+ NSFW
+ NSFW
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html84
+ Get more informationZískat více informací
-
- src/app/+videos/+video-watch/video-watch.component.html304
+ src/app/+videos/+video-watch/video-watch.component.html304
+
-
- OK
-
+ OK
OK
-
- src/app/+videos/+video-watch/video-watch.component.html308
+ src/app/+videos/+video-watch/video-watch.component.html308
+
1 Comment1 Comment
-
- src/app/+videos/+video-watch/comment/video-comments.component.html6
+ src/app/+videos/+video-watch/comment/video-comments.component.html6
+
-
- Comments
-
+ Comments Comments
-
- src/app/+videos/+video-watch/comment/video-comments.component.html7
+ src/app/+videos/+video-watch/comment/video-comments.component.html7
+
CommentsComments
-
- src/app/+videos/+video-watch/comment/video-comments.component.html9
+ src/app/+videos/+video-watch/comment/video-comments.component.html9
+
-
- SORT BY
-
+ SORT BY
SORT BY
-
- src/app/+videos/+video-watch/comment/video-comments.component.html16
+ src/app/+videos/+video-watch/comment/video-comments.component.html16
+
Most recent first (default)Most recent first (default)
-
- src/app/+videos/+video-watch/comment/video-comments.component.html19
+ src/app/+videos/+video-watch/comment/video-comments.component.html19
+
Most replies firstMost replies first
-
- src/app/+videos/+video-watch/comment/video-comments.component.html20
+ src/app/+videos/+video-watch/comment/video-comments.component.html20
+
No comments.Žádné komentáře
-
- src/app/+videos/+video-watch/comment/video-comments.component.html33
+ src/app/+videos/+video-watch/comment/video-comments.component.html33
+
- View replies from and others
+ View replies from and others
View
replies from
and others
-
- src/app/+videos/+video-watch/comment/video-comments.component.html83
+ src/app/+videos/+video-watch/comment/video-comments.component.html83
+
- View replies from
+ View replies from
View
replies from
-
- src/app/+videos/+video-watch/comment/video-comments.component.html86
+ src/app/+videos/+video-watch/comment/video-comments.component.html86
+
View replies
- View
- replies
-
-
- src/app/+videos/+video-watch/comment/video-comments.component.html90
+ Zobrazit odpovědi
+ src/app/+videos/+video-watch/comment/video-comments.component.html90
+
Comments are disabled.
Komentáře nejsou povoleny.
-
- src/app/+videos/+video-watch/comment/video-comments.component.html101
+ src/app/+videos/+video-watch/comment/video-comments.component.html101
+
Add comment...Přidat komentář...
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html6
- Markdown compatibleMarkdown compatible
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html13
- Markdown compatible that supports:Markdown compatible that supports:
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html15
- Auto generated linksAuto generated links
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html18
- Break linesBreak lines
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html19
- ListsLists
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html20
- EmphasisEmphasis
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html22
- boldbold
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html23
- italicitalic
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html23
- Emoji shortcutsEmoji shortcuts
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html26
- Emoji markupEmoji markup
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html30
- See complete listSee complete list
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html32
-
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html6
+
+
+ Markdown compatible
+ Markdown compatible
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html13
+
+
+ Markdown compatible that supports:
+ Markdown compatible that supports:
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html15
+
+
+ Auto generated links
+ Auto generated links
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html18
+
+
+ Break lines
+ Break lines
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html19
+
+
+ Lists
+ Lists
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html20
+
+
+ Emphasis
+ Emphasis
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html22
+
+
+ bold
+ bold
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html23
+
+
+ italic
+ italic
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html23
+
+
+ Emoji shortcuts
+ Emoji shortcuts
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html26
+
+
+ Emoji markup
+ Emoji markup
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html30
+
+
+ See complete list
+ See complete list
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html32
+ You are one step away from commentingYou are one step away from commenting
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html55
- 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/comment/video-comment-add.component.html55
+
+
+ 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/comment/video-comment-add.component.html60,61
-
-
Login to comment
- Login to comment
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html72
- Markdown Emoji ListMarkdown Emoji List
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html80
- CommentComment
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.ts67
- ReplyReply
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.ts69
+ Přihlásit ke komentování
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html72
+
+
+ Markdown Emoji List
+ Markdown Emoji List
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html80
+
+
+ Comment
+ Comment
+ src/app/+videos/+video-watch/comment/video-comment-add.component.ts67
+
+
+ Reply
+ Reply
+ src/app/+videos/+video-watch/comment/video-comment-add.component.ts69
+ Highlighted commentZvýrazněné komentáře
-
- src/app/+videos/+video-watch/comment/video-comment.component.html20
+ src/app/+videos/+video-watch/comment/video-comment.component.html20
+
ReplyOdpovědět
-
- src/app/+videos/+video-watch/comment/video-comment.component.html46
+ src/app/+videos/+video-watch/comment/video-comment.component.html46
+
This comment has been deletedThis comment has been deleted
-
- src/app/+videos/+video-watch/comment/video-comment.component.html63
+ src/app/+videos/+video-watch/comment/video-comment.component.html63
+
Video redundanciesVideo redundancies
-
- src/app/+admin/admin.component.ts39
+ src/app/+admin/admin.component.ts39
+
1 host (without "http://") per line1 host (bez "http://") na každý řádek
-
- src/app/shared/shared-moderation/batch-domains-modal.component.html11
+ src/app/shared/shared-moderation/batch-domains-modal.component.html11
+
- Your report will be sent to moderators of and will be forwarded to the comment origin () too.
+ Your report will be sent to moderators of and will be forwarded to the comment origin () too.
Your report will be sent to moderators of
- and will be forwarded to the comment origin (
+ and will be forwarded to the comment origin (
) too
- .
+ .
-
-
- src/app/shared/shared-moderation/report-modals/report.component.html36src/app/shared/shared-moderation/report-modals/report.component.html36
- Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?
+ src/app/shared/shared-moderation/report-modals/report.component.html36
+ src/app/shared/shared-moderation/report-modals/report.component.html36
+
+
+ Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?
+ Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?src/app/+my-account/my-account-applications/my-account-applications.component.ts41
-
- Renew tokenRenew token
+
+
+ Renew token
+ Renew tokensrc/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.
+
+
+ Token renewed. Update your client configuration accordingly.
+ Token renewed. Update your client configuration accordingly.src/app/+my-account/my-account-applications/my-account-applications.component.ts49
-
- ApplicationsApplications
+
+
+ Applications
+ Applicationssrc/app/+my-account/my-account-applications/my-account-applications.component.html3
-
- SUBSCRIPTION FEEDSUBSCRIPTION FEED
+
+
+ SUBSCRIPTION FEED
+ SUBSCRIPTION FEEDsrc/app/+my-account/my-account-applications/my-account-applications.component.html8
-
- Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.
+
+
+ Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.
+ Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. src/app/+my-account/my-account-applications/my-account-applications.component.html10,12
-
- Feed URLFeed URL
+
+
+ Feed URL
+ Feed URLsrc/app/+my-account/my-account-applications/my-account-applications.component.html18
-
- Feed TokenFeed Token
+
+
+ Feed Token
+ Feed Tokensrc/app/+my-account/my-account-applications/my-account-applications.component.html23
-
- ⚠️ Never share your feed token with anyone.⚠️ Never share your feed token with anyone.
+
+
+ ⚠️ Never share your feed token with anyone.
+ ⚠️ Never share your feed token with anyone.src/app/+my-account/my-account-applications/my-account-applications.component.html26
-
- Renew tokenRenew token
-
- src/app/+my-account/my-account-applications/my-account-applications.component.html35
-
+
+
+ Renew token
+ Renew token
+ src/app/+my-account/my-account-applications/my-account-applications.component.html35
+ Filter...Filtrovat...
-
-
-
-
-
-
-
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html16src/app/shared/shared-abuse-list/abuse-list-table.component.html27src/app/+admin/follows/following-list/following-list.component.html23src/app/shared/shared-moderation/account-blocklist.component.html16src/app/shared/shared-moderation/server-blocklist.component.html23src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/users/user-list/user-list.component.html37src/app/+admin/follows/followers-list/followers-list.component.html16
+ src/app/shared/shared-moderation/server-blocklist.component.html23
+ src/app/shared/shared-moderation/account-blocklist.component.html16
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html27
+ src/app/+admin/follows/following-list/following-list.component.html23
+ src/app/shared/shared-moderation/account-blocklist.component.html16
+ src/app/shared/shared-moderation/server-blocklist.component.html23
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html29
+ src/app/+admin/users/user-list/user-list.component.html37
+ src/app/+admin/follows/followers-list/followers-list.component.html16
+
Clear filtersClear filters
-
-
-
-
-
-
-
-
-
-
-
-
-
- src/app/+my-library/my-videos/my-videos.component.html26src/app/+my-library/my-video-playlists/my-video-playlists.component.html13src/app/+my-library/my-subscriptions/my-subscriptions.component.html14src/app/+my-library/my-history/my-history.component.html14src/app/shared/shared-moderation/server-blocklist.component.html27src/app/shared/shared-moderation/account-blocklist.component.html20src/app/shared/shared-abuse-list/abuse-list-table.component.html31src/app/+my-library/+my-video-channels/my-video-channels.component.html14src/app/+admin/follows/following-list/following-list.component.html27src/app/shared/shared-moderation/account-blocklist.component.html20src/app/shared/shared-moderation/server-blocklist.component.html27src/app/+admin/moderation/video-comment-list/video-comment-list.component.html46src/app/+admin/moderation/video-block-list/video-block-list.component.html33src/app/+admin/users/user-list/user-list.component.html41src/app/+admin/follows/followers-list/followers-list.component.html20
+ src/app/+my-library/my-videos/my-videos.component.html26
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html13
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html14
+ src/app/+my-library/my-history/my-history.component.html14
+ src/app/shared/shared-moderation/server-blocklist.component.html27
+ src/app/shared/shared-moderation/account-blocklist.component.html20
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html31
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html14
+ src/app/+admin/follows/following-list/following-list.component.html27
+ src/app/shared/shared-moderation/account-blocklist.component.html20
+ src/app/shared/shared-moderation/server-blocklist.component.html27
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html46
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html33
+ src/app/+admin/users/user-list/user-list.component.html41
+ src/app/+admin/follows/followers-list/followers-list.component.html20
+
Video/Comment/AccountVideo/Comment/Account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html42
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html42
+
IDID
-
- src/app/+admin/system/jobs/jobs.component.html41
+ src/app/+admin/system/jobs/jobs.component.html41
+
Follower handleFollower handle
-
- src/app/+admin/follows/followers-list/followers-list.component.html28
+ src/app/+admin/follows/followers-list/followers-list.component.html28
+
StateStav
-
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html19src/app/+admin/system/jobs/jobs.component.html43
-
-
-
-
-
+ src/app/+my-library/my-video-imports/my-video-imports.component.html19
+ src/app/+admin/system/jobs/jobs.component.html43
+
Created
- Vytvořeno
-
-
-
-
-
-
-
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html20src/app/shared/shared-abuse-list/abuse-list-table.component.html43src/app/+admin/system/jobs/jobs.component.html44src/app/+admin/follows/following-list/following-list.component.html37src/app/+admin/follows/followers-list/followers-list.component.html31
+ Vytvořeno
+ src/app/+my-library/my-video-imports/my-video-imports.component.html20
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html43
+ src/app/+admin/system/jobs/jobs.component.html44
+ src/app/+admin/follows/following-list/following-list.component.html37
+ src/app/+admin/follows/followers-list/followers-list.component.html31
+
Open actor page in a new tabOpen actor page in a new tab
-
- src/app/+admin/follows/followers-list/followers-list.component.html46
+ src/app/+admin/follows/followers-list/followers-list.component.html46
+
AcceptedPřijato
-
-
- src/app/+admin/follows/following-list/following-list.component.html55src/app/+admin/follows/followers-list/followers-list.component.html53
+ src/app/+admin/follows/following-list/following-list.component.html55
+ src/app/+admin/follows/followers-list/followers-list.component.html53
+
PendingČeká
-
-
- src/app/+admin/follows/following-list/following-list.component.html58src/app/+admin/follows/followers-list/followers-list.component.html56
+ src/app/+admin/follows/following-list/following-list.component.html58
+ src/app/+admin/follows/followers-list/followers-list.component.html56
+
AcceptPřijmout
-
-
-
- src/app/+my-library/my-ownership/my-ownership.component.html33src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html30src/app/+admin/follows/followers-list/followers-list.component.html39
+ src/app/+my-library/my-ownership/my-ownership.component.html33
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html30
+ src/app/+admin/follows/followers-list/followers-list.component.html39
+
RefuseOdmítnout
-
-
- src/app/+my-library/my-ownership/my-ownership.component.html34src/app/+admin/follows/followers-list/followers-list.component.html40
+ src/app/+my-library/my-ownership/my-ownership.component.html34
+ src/app/+admin/follows/followers-list/followers-list.component.html40
+
No follower found matching current filters.No follower found matching current filters.
-
- src/app/+admin/follows/followers-list/followers-list.component.html68
+ src/app/+admin/follows/followers-list/followers-list.component.html68
+
Your instance doesn't have any follower.Your instance doesn't have any follower.
-
- src/app/+admin/follows/followers-list/followers-list.component.html69
+ src/app/+admin/follows/followers-list/followers-list.component.html69
+
Showing to of followersShowing
@@ -3049,31 +3150,31 @@ The link will expire within 1 hour. of
followers
-
- src/app/+admin/follows/followers-list/followers-list.component.html10
+ src/app/+admin/follows/followers-list/followers-list.component.html10
+
-
-
-
+
-
- src/app/shared/shared-moderation/batch-domains-modal.component.html3
+ src/app/shared/shared-moderation/batch-domains-modal.component.html3
+
HostHost
-
- src/app/+admin/follows/following-list/following-list.component.html35
+ src/app/+admin/follows/following-list/following-list.component.html35
+
Redundancy allowed Redundancy allowed
-
-
+
+
-
- src/app/+admin/follows/following-list/following-list.component.html38
- UnfollowUnfollow
+ src/app/+admin/follows/following-list/following-list.component.html38
+
+
+ Unfollow
+ Unfollowsrc/app/+admin/follows/following-list/following-list.component.html45
@@ -3082,20 +3183,20 @@ The link will expire within 1 hour.
Open instance in a new tabOpen instance in a new tab
-
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html46src/app/+admin/follows/following-list/following-list.component.html48src/app/shared/shared-moderation/server-blocklist.component.html46
+ src/app/shared/shared-moderation/server-blocklist.component.html46
+ src/app/+admin/follows/following-list/following-list.component.html48
+ src/app/shared/shared-moderation/server-blocklist.component.html46
+ No host found matching current filters.No host found matching current filters.
-
- src/app/+admin/follows/following-list/following-list.component.html74
+ src/app/+admin/follows/following-list/following-list.component.html74
+
Your instance is not following anyone.Your instance is not following anyone.
-
- src/app/+admin/follows/following-list/following-list.component.html75
+ src/app/+admin/follows/following-list/following-list.component.html75
+
Showing to of hostsShowing
@@ -3103,14 +3204,16 @@ The link will expire within 1 hour. of
hosts
-
- src/app/+admin/follows/following-list/following-list.component.html10
+ src/app/+admin/follows/following-list/following-list.component.html10
+
Follow domainsFollow domains
-
- src/app/+admin/follows/following-list/following-list.component.html82
- Follow instancesFollow instances
+ src/app/+admin/follows/following-list/following-list.component.html82
+
+
+ Follow instances
+ Follow instancessrc/app/+admin/follows/following-list/following-list.component.html17
@@ -3119,190 +3222,196 @@ The link will expire within 1 hour.
Videos redundanciesVideos redundancies
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html3
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html3
+ My videos duplicated by remote instancesMy videos duplicated by remote instances
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html12
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html12
+
Remote videos duplicated by my instanceRemote videos duplicated by my instance
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html13
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html13
+
Create userVytvořit uživatele
-
- src/app/+admin/users/user-list/user-list.component.html20
+ src/app/+admin/users/user-list/user-list.component.html20
+
Table parametersTable parameters
-
- src/app/+admin/users/user-list/user-list.component.html59
+ src/app/+admin/users/user-list/user-list.component.html59
+
Select columnsSelect columns
-
- src/app/+admin/users/user-list/user-list.component.html65
+ src/app/+admin/users/user-list/user-list.component.html65
+
Highlight banned usersHighlight banned users
-
- src/app/+admin/users/user-list/user-list.component.html71
+ src/app/+admin/users/user-list/user-list.component.html71
+
UsernameUživatelské jméno
-
-
-
- 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
- e.g. jane_doee.g. jane_doe
-
+ 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_doeUsername choice placeholder in the registration form
- src/app/+signup/+register/register-step-user.component.html27
+ src/app/+signup/+register/register-step-user.component.html27
+
johnjohn
-
-
- src/app/+admin/users/user-edit/user-edit.component.html85src/app/+admin/users/user-edit/user-edit.component.html85
+ src/app/+admin/users/user-edit/user-edit.component.html85
+ src/app/+admin/users/user-edit/user-edit.component.html85
+
mail@example.comemail@priklad.cz
-
-
- src/app/+admin/users/user-edit/user-edit.component.html107src/app/+admin/users/user-edit/user-edit.component.html107
+ src/app/+admin/users/user-edit/user-edit.component.html107
+ src/app/+admin/users/user-edit/user-edit.component.html107
+
-
- If you leave the password empty, an email will be sent to the user.
-
+ If you leave the password empty, an email will be sent to the user.
If you leave the password empty, an email will be sent to the user.
-
-
- src/app/+admin/users/user-edit/user-edit.component.html121src/app/+admin/users/user-edit/user-edit.component.html121
+ src/app/+admin/users/user-edit/user-edit.component.html121
+ src/app/+admin/users/user-edit/user-edit.component.html121
+
RoleRole
-
-
- 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 ~ .
+ Transcoding is enabled. The video quota only takes into account original video size. At most, this user could upload ~ .
Transcoding is enabled. The video quota only takes into account
- original
- video size.
-
+ original
+ video size.
+
At most, this user could upload ~
.
-
-
- src/app/+admin/users/user-edit/user-edit.component.html161src/app/+admin/users/user-edit/user-edit.component.html161
+ src/app/+admin/users/user-edit/user-edit.component.html161
+ src/app/+admin/users/user-edit/user-edit.component.html161
+
Daily video quotaDenní kvóta pro videa
-
-
-
- src/app/shared/shared-main/users/user-quota.component.html13src/app/+admin/users/user-edit/user-edit.component.html167src/app/+admin/users/user-edit/user-edit.component.html167
+ src/app/shared/shared-main/users/user-quota.component.html13
+ src/app/+admin/users/user-edit/user-edit.component.html167
+ src/app/+admin/users/user-edit/user-edit.component.html167
+
Doesn't need review before a video goes publicDoesn't need review before a video goes public
-
-
- src/app/+admin/users/user-edit/user-edit.component.html180src/app/+admin/users/user-edit/user-edit.component.html180
+ src/app/+admin/users/user-edit/user-edit.component.html180
+ src/app/+admin/users/user-edit/user-edit.component.html180
+
Send a link to reset the password by email to the userZaslat odkaz pro reset hesla uživateli emailem
-
-
- src/app/+admin/users/user-edit/user-edit.component.html205src/app/+admin/users/user-edit/user-edit.component.html205
+ src/app/+admin/users/user-edit/user-edit.component.html205
+ src/app/+admin/users/user-edit/user-edit.component.html205
+
Ask for new passwordPožádat o nové heslo
-
-
- src/app/+admin/users/user-edit/user-edit.component.html206src/app/+admin/users/user-edit/user-edit.component.html206
+ src/app/+admin/users/user-edit/user-edit.component.html206
+ src/app/+admin/users/user-edit/user-edit.component.html206
+
Manually set the user passwordManuálně nastavit heslo uživatele
-
-
- src/app/+admin/users/user-edit/user-edit.component.html210src/app/+admin/users/user-edit/user-edit.component.html210
+ src/app/+admin/users/user-edit/user-edit.component.html210
+ src/app/+admin/users/user-edit/user-edit.component.html210
+
ShowZobrazit
-
- src/app/+admin/users/user-edit/user-password.component.html10
+ src/app/+admin/users/user-edit/user-password.component.html10
+
HideSkrýt
-
- src/app/+admin/users/user-edit/user-password.component.html11
+ src/app/+admin/users/user-edit/user-password.component.html11
+
Batch actionsSouhrnné akce
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22src/app/+admin/users/user-list/user-list.component.html13src/app/+admin/users/user-list/user-list.component.html13
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22
+ src/app/+admin/users/user-list/user-list.component.html13
+ src/app/+admin/users/user-list/user-list.component.html13
+
Advanced user filtersAdvanced user filters
-
- src/app/+admin/users/user-list/user-list.component.html32
+ src/app/+admin/users/user-list/user-list.component.html32
+
Banned usersBanned users
-
- src/app/+admin/users/user-list/user-list.component.html33
+ src/app/+admin/users/user-list/user-list.component.html33
+
The user was bannedThe user was banned
-
- src/app/+admin/users/user-list/user-list.component.html161src/app/+admin/users/user-list/user-list.component.html161
+ src/app/+admin/users/user-list/user-list.component.html161
+ src/app/+admin/users/user-list/user-list.component.html161
+
Open account in a new tabOpen account in a new tab
-
-
-
-
-
- src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-moderation/account-blocklist.component.html39src/app/shared/shared-abuse-list/abuse-list-table.component.html66src/app/shared/shared-abuse-list/abuse-list-table.component.html66src/app/shared/shared-moderation/account-blocklist.component.html39src/app/+admin/moderation/video-comment-list/video-comment-list.component.html87src/app/+admin/users/user-list/user-list.component.html107
+ src/app/+my-library/my-ownership/my-ownership.component.html38
+ src/app/shared/shared-moderation/account-blocklist.component.html39
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html66
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html66
+ src/app/shared/shared-moderation/account-blocklist.component.html39
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html87
+ src/app/+admin/users/user-list/user-list.component.html107
+
-
- Deleted account
-
+ Deleted account
Deleted account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html82
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html82
+
User's email must be verified to loginUživatelský email musí být před přihlášením ověřen
-
- src/app/+admin/users/user-list/user-list.component.html130src/app/+admin/users/user-list/user-list.component.html130
+ src/app/+admin/users/user-list/user-list.component.html130
+ src/app/+admin/users/user-list/user-list.component.html130
+
User's email is verified / User can login without email verificationUživatelský email je ověřen / Uživatel se může přihlásit bez ověření
-
- src/app/+admin/users/user-list/user-list.component.html134
+ src/app/+admin/users/user-list/user-list.component.html134
+
Total daily video quotaTotal daily video quota
-
- src/app/+admin/users/user-list/user-list.component.html151
+ src/app/+admin/users/user-list/user-list.component.html151
+
Ban reason:Důvod zablokování:
-
- src/app/+admin/users/user-list/user-list.component.html178
+ src/app/+admin/users/user-list/user-list.component.html178
+
Showing to of usersShowing
@@ -3310,172 +3419,200 @@ The link will expire within 1 hour. of
users
-
- src/app/+admin/users/user-list/user-list.component.html6
+ src/app/+admin/users/user-list/user-list.component.html6
+
ModerationModeration
-
- src/app/+my-account/my-account.component.ts28src/app/+admin/admin.component.ts47
- ReportsReports
-
- src/app/+admin/admin.component.ts53src/app/+admin/moderation/moderation.routes.ts37
- Video blocksVideo blocks
-
- src/app/+admin/admin.component.ts60
- Video commentsVideo comments
-
- src/app/+admin/admin.component.ts67src/app/+admin/moderation/moderation.routes.ts86
- Muted accountsMuted accounts
-
- src/app/+my-account/my-account.component.ts31src/app/+my-account/my-account-routing.module.ts86src/app/+admin/admin.component.ts74src/app/+admin/moderation/moderation.routes.ts98
- Muted serversMuted servers
-
- src/app/+my-account/my-account.component.ts36src/app/+my-account/my-account-routing.module.ts95src/app/+admin/admin.component.ts81
- UsersUsers
-
- src/app/+admin/admin.component.ts88
- ConfigurationConfiguration
-
- src/app/+admin/admin.component.ts95
+ src/app/+my-account/my-account.component.ts28
+ src/app/+admin/admin.component.ts47
+
+
+ Reports
+ Reports
+ src/app/+admin/admin.component.ts53
+ src/app/+admin/moderation/moderation.routes.ts37
+
+
+ Video blocks
+ Video blocks
+ src/app/+admin/admin.component.ts60
+
+
+ Video comments
+ Video comments
+ src/app/+admin/admin.component.ts67
+ src/app/+admin/moderation/moderation.routes.ts86
+
+
+ Muted accounts
+ Muted accounts
+ src/app/+my-account/my-account.component.ts31
+ src/app/+my-account/my-account-routing.module.ts86
+ src/app/+admin/admin.component.ts74
+ src/app/+admin/moderation/moderation.routes.ts98
+
+
+ Muted servers
+ Muted servers
+ src/app/+my-account/my-account.component.ts36
+ src/app/+my-account/my-account-routing.module.ts95
+ src/app/+admin/admin.component.ts81
+
+
+ Users
+ Users
+ src/app/+admin/admin.component.ts88
+
+
+ Configuration
+ Configuration
+ src/app/+admin/admin.component.ts95
+ Video blocksVideo blocks
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html3
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html3
+
Muted accountsSkryté účty
-
-
- src/app/shared/shared-moderation/account-blocklist.component.html3src/app/shared/shared-moderation/account-blocklist.component.html3
+ src/app/shared/shared-moderation/account-blocklist.component.html3
+ src/app/shared/shared-moderation/account-blocklist.component.html3
+
Muted serversSkryté servery
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html3src/app/shared/shared-moderation/server-blocklist.component.html3
+ src/app/shared/shared-moderation/server-blocklist.component.html3
+ src/app/shared/shared-moderation/server-blocklist.component.html3
+
Advanced block filtersAdvanced block filters
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html23
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html23
+
Automatic blocksAutomatic blocks
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html24
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html24
+
Manual blocksManual blocks
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html25
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html25
+
Video Video
-
-
+
+
-
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html43src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html43
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29
+
Total sizeTotal size
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html30
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html30
+
List redundanciesList redundancies
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html37
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html37
+
Your instance doesn't mirror any video.Your instance doesn't mirror any video.
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html81
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html81
+
Your instance has no mirrored videos.Your instance has no mirrored videos.
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html82
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html82
+
Enabled strategies statsEnabled strategies stats
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html91
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html91
+
-
- No redundancy strategy is enabled on your instance.
-
+ No redundancy strategy is enabled on your instance.
No redundancy strategy is enabled on your instance.
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html96
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html96
+
SensitiveCitlivé
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html44
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html44
+
UnfederatedUnfederated
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html45src/app/+admin/moderation/video-block-list/video-block-list.component.html88
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html45
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html88
+
Date
- Datum
-
-
-
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html62src/app/+admin/moderation/video-block-list/video-block-list.component.html46
- Select this rowSelect this row
-
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70src/app/+admin/users/user-list/user-list.component.html91
+ Datum
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html62
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html46
+
+
+ Select this row
+ Select this row
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70
+ src/app/+admin/users/user-list/user-list.component.html91
+ ActionsAkce
-
-
-
- src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html61src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82src/app/+admin/moderation/video-block-list/video-block-list.component.html62
- Commented videoCommented video
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html103
- No comments found matching current filters.No comments found matching current filters.
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html128
- No comments found.No comments found.
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html129
+ src/app/+my-library/my-ownership/my-ownership.component.html18
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html61
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html62
+
+
+ Commented video
+ Commented video
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html103
+
+
+ No comments found matching current filters.
+ No comments found matching current filters.
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html128
+
+
+ No comments found.
+ No comments found.
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html129
+ No abuses found matching current filters.No abuses found matching current filters.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html188
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html188
+
No abuses found.No abuses found.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html189
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html189
+
Block reason:Block reason:
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html104
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html104
+
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.html124
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html124
+
No blocked video found.No blocked video found.
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html125
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html125
+
Showing to of blocked videosShowing
@@ -3483,158 +3620,158 @@ The link will expire within 1 hour. of
blocked videos
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html10
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html10
+
ReportsReports
-
-
- src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3src/app/+admin/moderation/abuse-list/abuse-list.component.html3
+ src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3
+ src/app/+admin/moderation/abuse-list/abuse-list.component.html3
+
Moderation commentModeration comment
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.html3
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html3
+
This comment can only be seen by you or the other moderators.
Tento komentář můžete vidět pouze vy nebo ostatní moderátoři.
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.html21
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html21
+
Update this commentAktualizovat tento komentář
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.html31
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html31
+
Advanced report filtersAdvanced report filters
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html18
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html18
+
Unsolved reportsUnsolved reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html19
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html19
+
Accepted reportsAccepted reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html20
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html20
+
Refused reportsRefused reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html21
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html21
+
Reports with blocked videosReports with blocked videos
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html22
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html22
+
Reports with deleted videosReports with deleted videos
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html23
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html23
+
ReporterAutor nahlášení
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html41src/app/shared/shared-abuse-list/abuse-details.component.html7
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html41
+ src/app/shared/shared-abuse-list/abuse-details.component.html7
+
-
+
-
-
+
+
-
- src/app/shared/shared-abuse-list/abuse-details.component.html27
+ src/app/shared/shared-abuse-list/abuse-details.component.html27
+
{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.html27
+ src/app/shared/shared-abuse-list/abuse-details.component.html27
+
VideoVideo
-
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+admin/moderation/video-comment-list/video-comment-list.component.html60
- CommentComment
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html61
+ src/app/+my-library/my-video-imports/my-video-imports.component.html18
+ src/app/+my-library/my-ownership/my-ownership.component.html20
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html60
+
+
+ Comment
+ Comment
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html61
+ This video has been reported multiple times.This video has been reported multiple times.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html95src/app/shared/shared-abuse-list/abuse-list-table.component.html95
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html95
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html95
+
The video was blockedThe video was blocked
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html104src/app/shared/shared-abuse-list/abuse-list-table.component.html104
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html104
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html104
+
by on by
on
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html107src/app/shared/shared-abuse-list/abuse-list-table.component.html124
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html107
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html124
+
Video was deletedVideo was deleted
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html114
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html114
+
-
- Account deleted
-
+ Account deleted
Account deleted
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html150
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html150
+
Open video in a new tabOpen video in a new tab
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html49
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html49
+
State
- Stav
-
-
-
-
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html44src/app/+admin/follows/following-list/following-list.component.html36src/app/+admin/follows/followers-list/followers-list.component.html29
+ Stav
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html44
+ src/app/+admin/follows/following-list/following-list.component.html36
+ src/app/+admin/follows/followers-list/followers-list.component.html29
+
MessagesMessages
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html45
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html45
+
Internal noteInternal note
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html46
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html46
+
Score Score
-
-
+
+
-
- src/app/+admin/follows/followers-list/followers-list.component.html30
+ src/app/+admin/follows/followers-list/followers-list.component.html30
+
Showing to of reportsShowing
@@ -3642,79 +3779,79 @@ The link will expire within 1 hour. of
reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html5
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html5
+
ReporteeReportee
-
- src/app/shared/shared-abuse-list/abuse-details.component.html33
+ src/app/shared/shared-abuse-list/abuse-details.component.html33
+
-
+
-
-
+
+
-
- src/app/shared/shared-abuse-list/abuse-details.component.html52
+ src/app/shared/shared-abuse-list/abuse-details.component.html52
+
{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.html52
+ src/app/shared/shared-abuse-list/abuse-details.component.html52
+
UpdatedUpdated
-
- src/app/shared/shared-abuse-list/abuse-details.component.html58
+ src/app/shared/shared-abuse-list/abuse-details.component.html58
+
Mute domainMute domain
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html17src/app/shared/shared-moderation/server-blocklist.component.html17
+ src/app/shared/shared-moderation/server-blocklist.component.html17
+ src/app/shared/shared-moderation/server-blocklist.component.html17
+
InstanceInstance
-
-
-
-
- src/app/+search/search-filters.component.html165src/app/shared/shared-moderation/server-blocklist.component.html35src/app/+about/about.component.html5src/app/shared/shared-moderation/server-blocklist.component.html35
+ src/app/+search/search-filters.component.html165
+ src/app/shared/shared-moderation/server-blocklist.component.html35
+ src/app/+about/about.component.html5
+ src/app/shared/shared-moderation/server-blocklist.component.html35
+
Muted at Muted at
-
-
+
+
-
-
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html36src/app/shared/shared-moderation/account-blocklist.component.html29src/app/shared/shared-moderation/account-blocklist.component.html29src/app/shared/shared-moderation/server-blocklist.component.html36
+ src/app/shared/shared-moderation/server-blocklist.component.html36
+ src/app/shared/shared-moderation/account-blocklist.component.html29
+ src/app/shared/shared-moderation/account-blocklist.component.html29
+ src/app/shared/shared-moderation/server-blocklist.component.html36
+
UnmuteZhlasitit
-
-
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html43src/app/shared/shared-moderation/account-blocklist.component.html36src/app/shared/shared-moderation/account-blocklist.component.html36src/app/shared/shared-moderation/server-blocklist.component.html43
+ src/app/shared/shared-moderation/server-blocklist.component.html43
+ src/app/shared/shared-moderation/account-blocklist.component.html36
+ src/app/shared/shared-moderation/account-blocklist.component.html36
+ src/app/shared/shared-moderation/server-blocklist.component.html43
+
No server found matching current filters.No server found matching current filters.
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html59src/app/shared/shared-moderation/server-blocklist.component.html59
+ src/app/shared/shared-moderation/server-blocklist.component.html59
+ src/app/shared/shared-moderation/server-blocklist.component.html59
+
No server found.No server found.
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html60src/app/shared/shared-moderation/server-blocklist.component.html60
+ src/app/shared/shared-moderation/server-blocklist.component.html60
+ src/app/shared/shared-moderation/server-blocklist.component.html60
+
Showing to of muted instancesShowing
@@ -3722,51 +3859,56 @@ The link will expire within 1 hour. of
muted instances
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html10src/app/shared/shared-moderation/server-blocklist.component.html10
+ src/app/shared/shared-moderation/server-blocklist.component.html10
+ src/app/shared/shared-moderation/server-blocklist.component.html10
+
-
- 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.
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.html85
+ src/app/+admin/follows/following-list/following-list.component.html85
+
Mute domainsMute domains
-
-
- src/app/shared/shared-moderation/server-blocklist.component.html67src/app/shared/shared-moderation/server-blocklist.component.html67
+ src/app/shared/shared-moderation/server-blocklist.component.html67
+ src/app/shared/shared-moderation/server-blocklist.component.html67
+
AccountÚčet
-
-
- src/app/shared/shared-moderation/account-blocklist.component.html28src/app/shared/shared-moderation/account-blocklist.component.html28src/app/+admin/moderation/video-comment-list/video-comment-list.component.html59
+ src/app/shared/shared-moderation/account-blocklist.component.html28
+ src/app/shared/shared-moderation/account-blocklist.component.html28
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html59
+
No account found matching current filters.No account found matching current filters.
-
-
- src/app/shared/shared-moderation/account-blocklist.component.html63src/app/shared/shared-moderation/account-blocklist.component.html63
+ src/app/shared/shared-moderation/account-blocklist.component.html63
+ src/app/shared/shared-moderation/account-blocklist.component.html63
+
No account found.No account found.
-
-
- src/app/shared/shared-moderation/account-blocklist.component.html64src/app/shared/shared-moderation/account-blocklist.component.html64
- List installed pluginsList installed plugins
-
- src/app/+admin/plugins/plugins.routes.ts28
- Search pluginsSearch plugins
-
- src/app/+admin/plugins/plugins.routes.ts37
- Show pluginShow plugin
-
- src/app/+admin/plugins/plugins.routes.ts46
+ src/app/shared/shared-moderation/account-blocklist.component.html64
+ src/app/shared/shared-moderation/account-blocklist.component.html64
+
+
+ List installed plugins
+ List installed plugins
+ src/app/+admin/plugins/plugins.routes.ts28
+
+
+ Search plugins
+ Search plugins
+ src/app/+admin/plugins/plugins.routes.ts37
+
+
+ Show plugin
+ Show plugin
+ src/app/+admin/plugins/plugins.routes.ts46
+ Showing to of muted accountsShowing
@@ -3774,572 +3916,616 @@ The link will expire within 1 hour. of
muted accounts
-
-
- src/app/shared/shared-moderation/account-blocklist.component.html10src/app/shared/shared-moderation/account-blocklist.component.html10
+ src/app/shared/shared-moderation/account-blocklist.component.html10
+ src/app/shared/shared-moderation/account-blocklist.component.html10
+
Plugins/ThemesPlugins/Themes
-
- src/app/+admin/admin.component.ts99
+ src/app/+admin/admin.component.ts99
+
InstalledInstalled
-
- src/app/+admin/plugins/plugins.component.html3
+ src/app/+admin/plugins/plugins.component.html3
+
Plugin homepage (new window)Plugin homepage (new window)
-
-
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html40src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html17src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html21
+ 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
+
SearchHledat
-
-
- src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/+admin/plugins/plugins.component.html5
+ src/app/header/search-typeahead.component.html8
+ src/app/shared/shared-instance/instance-features-table.component.html122
+ src/app/+admin/plugins/plugins.component.html5
+
Users can resolve distant contentUsers can resolve distant content
-
- src/app/shared/shared-instance/instance-features-table.component.html126
+ src/app/shared/shared-instance/instance-features-table.component.html126
+
Close this messageClose this message
-
- src/app/app.component.html34src/app/app.component.html34
+ src/app/app.component.html34
+ src/app/app.component.html34
+
SettingsSettings
-
-
-
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html1src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26
+ src/app/+my-account/my-account-settings/my-account-settings.component.html1
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26
+
Display settingsDisplay settings
-
- src/app/modal/quick-settings-modal.component.html10
+ src/app/modal/quick-settings-modal.component.html10
+
UninstallUninstall
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html32
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html32
+
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
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html10
+
PopularPopular
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html16
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html16
+
- for ""
+ for "" for "
"
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html22
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html22
+
{VAR_PLURAL, plural, =1 {result} other {results} }{VAR_PLURAL, plural, =1 {result} other {results} }
-
-
- src/app/+search/search.component.html5src/app/+admin/plugins/plugin-search/plugin-search.component.html23
+ src/app/+search/search.component.html5
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html23
+
No results.
No results.
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html29
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html29
+
Plugin npm package (new window)Plugin npm package (new window)
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html44
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html44
+
- This does not have settings.
+ This does not have settings.
This
does not have settings.
-
- src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html16
+ src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html16
+
SystemSystém
-
- src/app/+admin/admin.component.ts103
+ src/app/+admin/admin.component.ts103
+
JobsÚlohy
-
- src/app/+admin/system/system.component.html3
+ src/app/+admin/system/system.component.html3
+
LogsProtokoly
-
- src/app/+admin/system/system.component.html5
+ src/app/+admin/system/system.component.html5
+
DebugDebug
-
- src/app/+admin/system/system.component.html7
- Delete this commentDelete this comment
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts65
- Delete all comments of this accountDelete all comments of this account
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts71
- Comments are deleted after a few minutesComments are deleted after a few minutes
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts72
- comments deleted. comments deleted.
+ src/app/+admin/system/system.component.html7
+
+
+ Delete this comment
+ Delete this comment
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts65
+
+
+ Delete all comments of this account
+ Delete all comments of this account
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts71
+
+
+ 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.ts72
+
+
+ comments deleted.
+ comments deleted.src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts137
-
- 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.ts157
- Comments of will be deleted in a few minutesComments of will be deleted in a few minutes
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts169
- Video commentsVideo comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3
- Showing to of commentsShowing to of comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html14
- Advanced comments filtersAdvanced comments filters
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html36
- Local commentsLocal comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html37
- Remote commentsRemote comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38
- Select all rowsSelect all rows
-
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html55src/app/+admin/users/user-list/user-list.component.html51
+
+
+ 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.ts157
+
+
+ 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.ts169
+
+
+ Video comments
+ Video comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3
+
+
+ Showing to of comments
+ Showing to of comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html14
+
+
+ Advanced comments filters
+ Advanced comments filters
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html36
+
+
+ Local comments
+ Local comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html37
+
+
+ Remote comments
+ Remote comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38
+
+
+ Select all rows
+ Select all rows
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html55
+ src/app/+admin/users/user-list/user-list.component.html51
+ Job typeJob type
-
- src/app/+admin/system/jobs/jobs.component.html3
+ src/app/+admin/system/jobs/jobs.component.html3
+
Job stateJob state
-
- src/app/+admin/system/jobs/jobs.component.html12
- anyany
+ src/app/+admin/system/jobs/jobs.component.html12
+
+
+ any
+ anysrc/app/+admin/system/jobs/jobs.component.html21Selector for the list displaying jobs, filtering by their state
-
- Showing to of jobsShowing to of jobs
-
- src/app/+admin/system/jobs/jobs.component.html35
+
+
+ Showing to of jobs
+ Showing to of jobs
+ src/app/+admin/system/jobs/jobs.component.html35
+ TypeTyp
-
- src/app/+admin/system/jobs/jobs.component.html42
- No jobs found.No jobs found.
+ src/app/+admin/system/jobs/jobs.component.html42
+
+
+ No jobs found.
+ No jobs found.src/app/+admin/system/jobs/jobs.component.html94
-
- No jobs found.No jobs found.
+
+
+ No jobs found.
+ No jobs found.src/app/+admin/system/jobs/jobs.component.html95
-
- No jobs found.No jobs found.
-
- src/app/+admin/system/jobs/jobs.component.html98
- No jobs found that are .No jobs found that are .
-
- src/app/+admin/system/jobs/jobs.component.html99
+
+
+ No jobs found.
+ No jobs found.
+ src/app/+admin/system/jobs/jobs.component.html98
+
+
+ No jobs found that are .
+ No jobs found that are .
+ src/app/+admin/system/jobs/jobs.component.html99
+ RefreshObnovit
-
- src/app/+admin/system/logs/logs.component.html34
- nownow
-
- src/app/+admin/system/logs/logs.component.html15
+ src/app/+admin/system/logs/logs.component.html34
+
+
+ now
+ now
+ src/app/+admin/system/logs/logs.component.html15
+ Loading...Loading...
-
- src/app/+admin/system/logs/logs.component.html38
+ src/app/+admin/system/logs/logs.component.html38
+
- By ->
+ By ->By
- ->
+ ->
-
- src/app/+admin/system/logs/logs.component.html46
+ src/app/+admin/system/logs/logs.component.html46
+
INSTANCEINSTANCE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html15
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html15
+
NameJméno
-
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32src/app/+admin/config/edit-custom-config/edit-custom-config.component.html21
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html21
+
Short descriptionKrátký popis
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html30
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html30
+
Main instance categoriesMain instance categories
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html48
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html48
+
Add a new categoryAdd a new category
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html55
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html55
+
The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.The
- sharing system
- implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.
+ sharing system
+ implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.
-
- src/app/shared/shared-user-settings/user-video-settings.component.html50
+ src/app/shared/shared-user-settings/user-video-settings.component.html50
+
Help share videos being playedHelp share videos being played
-
- src/app/shared/shared-user-settings/user-video-settings.component.html47
+ src/app/shared/shared-user-settings/user-video-settings.component.html47
+
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
+ src/app/shared/shared-user-settings/user-video-settings.component.html61
+
Automatically play videosAutomatically play videos
-
- src/app/shared/shared-user-settings/user-video-settings.component.html58
+ src/app/shared/shared-user-settings/user-video-settings.component.html58
+
When a video ends, follow up with the next suggested video.When a video ends, follow up with the next suggested video.
-
- src/app/shared/shared-user-settings/user-video-settings.component.html72
+ src/app/shared/shared-user-settings/user-video-settings.component.html72
+
Automatically start playing the next videoAutomatically start playing the next video
-
- src/app/shared/shared-user-settings/user-video-settings.component.html69
+ src/app/shared/shared-user-settings/user-video-settings.component.html69
+
Main languages you/your moderators speakMain languages you/your moderators speak
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html62
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html62
+
MODERATION & NSFWMODERATION & NSFW
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80
+
- Manage users to build a moderation team.
+ Manage users to build a moderation team.
Manage
- users
- to build a moderation team.
+ users
+ to build a moderation team.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html82
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html82
+
This instance is dedicated to sensitive or NSFW contentThis instance is dedicated to sensitive or NSFW content
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html91
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html91
+
- Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default.
+ Enabling it will allow other administrators to know that you are mainly federating sensitive content. Moreover, the NSFW checkbox on video upload will be automatically checked by default.
Enabling it will allow other administrators to know that you are mainly federating sensitive content.
-
-
+
+
Moreover, the NSFW checkbox on video upload will be automatically checked by default.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html96
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html96
+
Policy on videos containing sensitive contentPravidla pro videa obsahující citlivý obsah
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html104
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html104
+
- With Do not list or Blur thumbnails, a confirmation will be requested to watch the video.
+ With Do not list or Blur thumbnails, a confirmation will be requested to watch the video.
With
- Do not list
- or
- Blur thumbnails
- , a confirmation will be requested to watch the video.
+ Do not list
+ or
+ Blur thumbnails
+ , a confirmation will be requested to watch the video.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html109
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html109
+
Do not listNezobrazovat
-
-
- src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/+admin/config/edit-custom-config/edit-custom-config.component.html117
+ src/app/shared/shared-user-settings/user-video-settings.component.html16
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html117
+
Blur thumbnailsRozmlžit náhledy
-
-
- src/app/shared/shared-user-settings/user-video-settings.component.html17src/app/+admin/config/edit-custom-config/edit-custom-config.component.html118
+ src/app/shared/shared-user-settings/user-video-settings.component.html17
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html118
+
DisplayZobrazit
-
-
-
- src/app/shared/shared-user-settings/user-video-settings.component.html18src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8src/app/+admin/config/edit-custom-config/edit-custom-config.component.html119
+ src/app/shared/shared-user-settings/user-video-settings.component.html18
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html119
+
StrategyStrategy
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html28
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html28
+
TermsPodmínky
-
-
-
- src/app/shared/shared-instance/instance-about-accordion.component.html35src/app/shared/shared-instance/instance-about-accordion.component.html35src/app/+signup/+register/register.component.html13src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-custom-config.component.html126
+ src/app/shared/shared-instance/instance-about-accordion.component.html35
+ src/app/shared/shared-instance/instance-about-accordion.component.html35
+ src/app/+signup/+register/register.component.html13
+ src/app/+about/about-instance/about-instance.component.html168
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html126
+
Code of conductCode of conduct
-
-
-
- src/app/shared/shared-instance/instance-about-accordion.component.html47src/app/shared/shared-instance/instance-about-accordion.component.html47src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-custom-config.component.html135
+ src/app/shared/shared-instance/instance-about-accordion.component.html47
+ src/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-custom-config.component.html135
+
Moderation informationModeration information
-
-
-
- src/app/shared/shared-instance/instance-about-accordion.component.html41src/app/shared/shared-instance/instance-about-accordion.component.html41src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-custom-config.component.html144
+ src/app/shared/shared-instance/instance-about-accordion.component.html41
+ src/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-custom-config.component.html144
+
Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etcWho moderates the instance? What is the policy regarding NSFW videos? Political videos? etc
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html145
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html145
+
YOU AND YOUR INSTANCEYOU AND YOUR INSTANCE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html159
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html159
+
Who is behind the instance?Who is behind the instance?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html165
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html165
+
A single person? A non-profit? A company?A single person? A non-profit? A company?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html166
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html166
+
Why did you create this instance?Why did you create this instance?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html177
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html177
+
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-custom-config.component.html178
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html178
+
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-custom-config.component.html188
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html188
+
It's important to know for users who want to register on your instanceIt's important to know for users who want to register on your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html189
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html189
+
How will you finance the PeerTube server?How will you finance the PeerTube server?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html199
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html199
+
With your own funds? With user donations? Advertising?With your own funds? With user donations? Advertising?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html200
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html200
+
OTHER INFORMATIONOTHER INFORMATION
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html214
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html214
+
What server/hardware does the instance run on?What server/hardware does the instance run on?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html220
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html220
+
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-custom-config.component.html221
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html221
+
Instance informationInstance information
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html7
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html7
+
APPEARANCEAPPEARANCE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html245
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html245
+
- Use plugins & themes for more involved changes, or add slight customizations.
+ Use plugins & themes for more involved changes, or add slight customizations.
Use
- plugins & themes
- for more involved changes, or
- add slight customizations
- .
+ plugins & themes
+ for more involved changes, or
+ add slight customizations
+ .
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html247
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html247
+
defaultdefault
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html259
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html259
+
Landing pageLanding page
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html268
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html268
+
Discover videosDiscover videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html271
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html271
+
Trending videosTrending videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html272
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html272
+
Most liked videosMost liked videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html273
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html273
+
Recently added videosRecently added videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html274
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html274
+
Local videosMístní videa
-
- src/app/menu/menu.component.html147src/app/+admin/config/edit-custom-config/edit-custom-config.component.html275
+ src/app/menu/menu.component.html147
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html275
+
BROADCAST MESSAGEBROADCAST MESSAGE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html286
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html286
+
-
- Display a message on your instance
-
+ Display a message on your instance
Display a message on your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html288
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html288
+
Enable broadcast messageEnable broadcast message
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html299
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html299
+
- Allow users to dismiss the broadcast message
+ Allow users to dismiss the broadcast messageAllow users to dismiss the broadcast message
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html306
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html306
+
Broadcast message levelBroadcast message level
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html311
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html311
+
MessageMessage
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html323
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html323
+
NEW USERSNEW USERS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html338
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html338
+
- Manage users to set their quota individually.
+ Manage users to set their quota individually.
Manage
- users
- to set their quota individually.
+ users
+ to set their quota individually.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html340
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html340
+
Signup requires email verificationRegistrace vyžaduje ověření e-mailem.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html360
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html360
+
Signup limitLimit registrací
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html364
- {VAR_PLURAL, plural, =1 {user} other {users}}{VAR_PLURAL, plural, =1 {user} other {users}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html364
+
+
+ {VAR_PLURAL, plural, =1 {user} other {users}}
+ {VAR_PLURAL, plural, =1 {user} other {users}}src/app/+admin/config/edit-custom-config/edit-custom-config.component.html370
@@ -4348,414 +4534,479 @@ The link will expire within 1 hour.
Enable SignupEnable Signup
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html350
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html350
+ UsersUživatelé
-
-
- src/app/+admin/users/user-edit/user-edit.component.html4src/app/+admin/users/user-edit/user-edit.component.html4
+ src/app/+admin/users/user-edit/user-edit.component.html4
+ src/app/+admin/users/user-edit/user-edit.component.html4
+
{VAR_PLURAL, plural, =1 {Video} other {Videos} }{VAR_PLURAL, plural, =1 {Video} other {Videos} }
-
-
- src/app/+admin/users/user-edit/user-edit.component.html24src/app/+admin/users/user-edit/user-edit.component.html24
+ src/app/+admin/users/user-edit/user-edit.component.html24
+ src/app/+admin/users/user-edit/user-edit.component.html24
+
{VAR_PLURAL, plural, =1 {Channel} other {Channels} }{VAR_PLURAL, plural, =1 {Channel} other {Channels} }
-
-
- src/app/+admin/users/user-edit/user-edit.component.html30src/app/+admin/users/user-edit/user-edit.component.html30
+ src/app/+admin/users/user-edit/user-edit.component.html30
+ src/app/+admin/users/user-edit/user-edit.component.html30
+
{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }
-
-
- src/app/+admin/users/user-edit/user-edit.component.html36src/app/+admin/users/user-edit/user-edit.component.html36
+ src/app/+admin/users/user-edit/user-edit.component.html36
+ src/app/+admin/users/user-edit/user-edit.component.html36
+
Incriminated in reportsIncriminated in reports
-
-
- src/app/+admin/users/user-edit/user-edit.component.html42src/app/+admin/users/user-edit/user-edit.component.html42
+ src/app/+admin/users/user-edit/user-edit.component.html42
+ src/app/+admin/users/user-edit/user-edit.component.html42
+
Authored reports acceptedAuthored reports accepted
-
-
- src/app/+admin/users/user-edit/user-edit.component.html48src/app/+admin/users/user-edit/user-edit.component.html48
+ src/app/+admin/users/user-edit/user-edit.component.html48
+ src/app/+admin/users/user-edit/user-edit.component.html48
+
{VAR_PLURAL, plural, =1 {Comment} other {Comments} }{VAR_PLURAL, plural, =1 {Comment} other {Comments} }
-
-
- src/app/+admin/users/user-edit/user-edit.component.html54src/app/+admin/users/user-edit/user-edit.component.html54
+ src/app/+admin/users/user-edit/user-edit.component.html54
+ src/app/+admin/users/user-edit/user-edit.component.html54
+
NEW USERNEW USER
-
-
- src/app/+admin/users/user-edit/user-edit.component.html73src/app/+admin/users/user-edit/user-edit.component.html73
+ src/app/+admin/users/user-edit/user-edit.component.html73
+ src/app/+admin/users/user-edit/user-edit.component.html73
+
ConfigurationConfiguration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1
+
Default video quota per userDefault video quota per user
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html382
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html382
+
Default daily upload limit per userDefault daily upload limit per user
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html394
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html394
+
Allow import with a torrent file or a magnet URIAllow import with a torrent file or a magnet URI
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html429
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html429
+
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-custom-config.component.html446
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html446
+
Block new videos automaticallyBlock new videos automatically
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html443
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html443
+
SEARCHSEARCH
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html460
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html460
+
Allow users to do remote URI/handle searchAllow users to do remote URI/handle search
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html471
- Allow your users to look up remote videos/actors that may not be federated with your instanceAllow your users to look up remote videos/actors that may not be federated with your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html474
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html471
+
+
+ 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-custom-config.component.html474
+ Allow anonymous to do remote URI/handle searchAllow anonymous to do remote URI/handle search
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html482
- Allow anonymous users to look up remote videos/actors that may not be federated with your instanceAllow anonymous users to look up remote videos/actors that may not be federated with your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html485
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html482
+
+
+ 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-custom-config.component.html485
+ ⚠️ 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-custom-config.component.html499
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html499
+
- You should only use moderated search indexes in production, or host your own.
+ You should only use moderated search indexes in production, or host your own.
You should only use moderated search indexes in production, or
- host your own
- .
+ host your own
+ .
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html502
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html502
+
Search index URLSearch index URL
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html508
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html508
+
Disable local search in search barDisable local search in search bar
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html519
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html519
+
Otherwise the local search stays used by defaultOtherwise the local search stays used by default
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html529
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html529
+
Search bar uses the global search index by defaultSearch bar uses the global search index by default
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html526
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html526
+
Enable global searchEnable global search
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html496
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html496
+
FEDERATIONFEDERATION
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html547
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html547
+
- Manage relations with other instances.
+ Manage relations with other instances.
Manage
- relations
- with other instances.
+ relations
+ with other instances.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html549
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html549
+
Other instances can follow yoursOther instances can follow yours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html561
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html561
+
Manually approve new instance followersManually approve new instance followers
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html568
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html568
+
Automatically follow back instancesAutomatically follow back instances
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html581
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html581
+
- You should only follow moderated indexes in production, or host your own.
+ You should only follow moderated indexes in production, or host your own.
You should only follow moderated indexes in production, or
- host your own
- .
+ host your own
+ .
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html600
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html600
+
⚠️ 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-custom-config.component.html353src/app/+admin/config/edit-custom-config/edit-custom-config.component.html584src/app/+admin/config/edit-custom-config/edit-custom-config.component.html597
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html353
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html584
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html597
+
Index URLIndex URL
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html606
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html606
+
Automatically follow instances of a public indexAutomatically follow instances of a public index
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html594
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html594
+
ADMINISTRATORSADMINISTRATORS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html626
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html626
+
AdministratorAdministrátor
-
- src/app/core/users/user.service.ts393
+ src/app/core/users/user.service.ts393
+
Admin emailE-mail administrátora
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html632
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html632
+
Enable contact formPovolit kontaktní formulář
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html643
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html643
+
Basic configurationZákladní nastavení
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html239
- VOD TranscodingVOD Transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html701
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html239
+
+
+ VOD Transcoding
+ VOD Transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html701
+ TWITTERTWITTER
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html652
- 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-custom-config.component.html652
+
+
+ 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-custom-config.component.html654,656
-
Your Twitter usernameVáš účet na Twitteru
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html665
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html665
+
Instance allowed by TwitterInstance allowed by Twitter
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html677
- If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html682
- 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-custom-config.component.html711
- 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-custom-config.component.html714
- Read guidelinesRead guidelines
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html718
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html677
+
+
+ If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed.
+ If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html682
+
+
+ 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-custom-config.component.html711
+
+
+ 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-custom-config.component.html714
+
+
+ Read guidelines
+ Read guidelines
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html718
+
- LIVELIVE
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.html31src/app/+admin/config/edit-custom-config/edit-custom-config.component.html881
- Enable users of your instance to stream live. Enable users of your instance to stream live.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html883
- ⚠️ 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-custom-config.component.html898
- 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-custom-config.component.html899
- Allow your users to automatically publish a replay of their liveAllow your users to automatically publish a replay of their live
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html907
- 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-custom-config.component.html910
- 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-custom-config.component.html916
- {VAR_PLURAL, plural, =1 {live} other {lives}}{VAR_PLURAL, plural, =1 {live} other {lives}}
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html919
- 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-custom-config.component.html924
- {VAR_PLURAL, plural, =1 {live} other {lives}}{VAR_PLURAL, plural, =1 {live} other {lives}}
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html927
- Max live durationMax live duration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html932
- 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-custom-config.component.html951
- Live transcoding threadsLive transcoding threads
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html990
- Live resolutions to generateLive resolutions to generate
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html971
- Allow live streamingAllow live streaming
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html894
- Transcoding enabled for live streamsTranscoding enabled for live streams
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html965
- will claim at most with VOD transcodingwill claim at most with VOD transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html992
- will claim at least with VOD transcodingwill claim at least with VOD transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html993
- {VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}
-
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html859src/app/+admin/config/edit-custom-config/edit-custom-config.component.html999
+ LIVE
+ LIVE
+ src/app/shared/shared-thumbnail/video-thumbnail.component.html31
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html881
+
+
+ Enable users of your instance to stream live.
+ Enable users of your instance to stream live.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html883
+
+
+ ⚠️ 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-custom-config.component.html898
+
+
+ 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-custom-config.component.html899
+
+
+ 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-custom-config.component.html907
+
+
+ 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-custom-config.component.html910
+
+
+ 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-custom-config.component.html916
+
+
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html919
+
+
+ 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-custom-config.component.html924
+
+
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html927
+
+
+ Max live duration
+ Max live duration
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html932
+
+
+ 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-custom-config.component.html951
+
+
+ Live transcoding threads
+ Live transcoding threads
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html990
+
+
+ Live resolutions to generate
+ Live resolutions to generate
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html971
+
+
+ Allow live streaming
+ Allow live streaming
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html894
+
+
+ Transcoding enabled for live streams
+ Transcoding enabled for live streams
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html965
+
+
+ will claim at most with VOD transcoding
+ will claim at most with VOD transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html992
+
+
+ will claim at least with VOD transcoding
+ will claim at least with VOD transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html993
+
+
+ {VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}
+ {VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html859
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html999
+
- Live streamingLive streaming
-
- src/app/shared/shared-instance/instance-features-table.component.html67src/app/+admin/config/edit-custom-config/edit-custom-config.component.html875
+ Live streaming
+ Live streaming
+ src/app/shared/shared-instance/instance-features-table.component.html67
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html875
+
TRANSCODINGTRANSCODING
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html728src/app/+admin/config/edit-custom-config/edit-custom-config.component.html949
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html728
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html949
+
- 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-custom-config.component.html730
- Input formatsInput formats
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html748
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html730
+
+
+ Input formats
+ Input formats
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html748
+ Transcoding enabledPřekódování povoleno
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html742
- If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html785
- 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-custom-config.component.html805
- will claim at most with live transcodingwill claim at most with live transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html852
- will claim at least with live transcodingwill claim at least with live transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html853
-
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html742
+
+
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html785
+
+
+ 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-custom-config.component.html805
+
+
+ will claim at most with live transcoding
+ will claim at most with live transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html852
+
+
+ will claim at least with live transcoding
+ will claim at least with live transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html853
+ Allow additional extensionsPovolit dodatečné přípony
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html753
- Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html753
+
+
+ Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+ Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.src/app/+admin/config/edit-custom-config/edit-custom-config.component.html756
-
Allow audio files uploadUmožnit upload audio souborů
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html764
- 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-custom-config.component.html767
- 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-custom-config.component.html768
- Output formatsOutput formats
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html775
- WebTorrent enabledWebTorrent enabled
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html781
-
-
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html764
+
+
+ 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-custom-config.component.html767
+
+
+ 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-custom-config.component.html768
+
+
+ Output formats
+ Output formats
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html775
+
+
+ WebTorrent enabled
+ WebTorrent enabled
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html781
+ HLS with P2P support enabledHLS with P2P support enabled
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html800
- Resolutions to generate per enabled formatResolutions to generate per enabled format
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html822
- 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-custom-config.component.html800
+
+
+ Resolutions to generate per enabled format
+ Resolutions to generate per enabled format
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html822
+
+
+ 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-custom-config.component.html838,839
@@ -4764,432 +5015,418 @@ The link will expire within 1 hour.
Transcoding threadsVlákna na překódování
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html850
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html850
+ CACHECACHE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1022
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1022
+
-
- 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.
Some files are not federated, and fetched when necessary. Define their caching policies.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1024
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1024
+
Number of previews to keep in cacheNumber of previews to keep in cache
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1032
- {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-custom-config.component.html1038
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1032
+
+
+ {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-custom-config.component.html1038
+ Number of video captions to keep in cacheNumber of video captions to keep in cache
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1044
- {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-custom-config.component.html1050
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1044
+
+
+ {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-custom-config.component.html1050
+ CUSTOMIZATIONSCUSTOMIZATIONS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1062
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1062
+
-
- 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.
Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1064
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1064
+
JavaScriptJavaScript
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1073
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1073
+
- Write JavaScript code directly.Example: console.log('my instance is amazing');
+ Write JavaScript code directly.Example: console.log('my instance is amazing');
Write JavaScript code directly.
- Example:
- console.log('my instance is amazing');
-
+ Example:
+ console.log('my instance is amazing');
+
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1077
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1077
+
- Write CSS code directly. Example: #custom-css
- color: red;
-
- Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email
- color: red;
-
-
+ Write CSS code directly. Example: #custom-css color: red; Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email color: red;
Write CSS code directly. Example:
-
-
- #custom-css
+
+
+ #custom-css
color: red;
-
+
Prepend with
- #custom-css
- to override styles. Example:
-
-
- #custom-css .logged-in-email
+ #custom-css
+ to override styles. Example:
+
+
+ #custom-css .logged-in-email
color: red;
-
+
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1096
- It seems like the configuration is invalid. Please search for potential errors in the different tabs. It seems like the configuration is invalid. Please search for potential errors in the different tabs.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1134
- 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.html1138
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1096
+
+
+ It seems like the configuration is invalid. Please search for potential errors in the different tabs.
+ It seems like the configuration is invalid. Please search for potential errors in the different tabs.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1134
+
+
+ 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.html1138
+ Advanced configurationPokročilá nastavení
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1016
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1016
+
Update configurationAktualizovat nastavení
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1141
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1141
+
VIDEO SETTINGSVIDEO SETTINGS
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html26
+ src/app/+my-account/my-account-settings/my-account-settings.component.html26
+
NOTIFICATIONSNOTIFICATIONS
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html37
+ src/app/+my-account/my-account-settings/my-account-settings.component.html37
+
INTERFACEINTERFACE
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html47
+ src/app/+my-account/my-account-settings/my-account-settings.component.html47
+
PASSWORDPASSWORD
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html57
+ src/app/+my-account/my-account-settings/my-account-settings.component.html57
+
EMAILEMAIL
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html67
+ src/app/+my-account/my-account-settings/my-account-settings.component.html67
+
DANGER ZONEDANGER ZONE
-
-
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html77src/app/+admin/users/user-edit/user-edit.component.html198src/app/+admin/users/user-edit/user-edit.component.html198
+ src/app/+my-account/my-account-settings/my-account-settings.component.html77
+ src/app/+admin/users/user-edit/user-edit.component.html198
+ src/app/+admin/users/user-edit/user-edit.component.html198
+
ProfileProfil
-
- src/app/shared/shared-video-miniature/video-download.component.ts170
+ src/app/shared/shared-video-miniature/video-download.component.ts170
+
ResolutionResolution
-
- src/app/shared/shared-video-miniature/video-download.component.ts179
+ src/app/shared/shared-video-miniature/video-download.component.ts179
+
Aspect ratioAspect ratio
-
- src/app/shared/shared-video-miniature/video-download.component.ts180
+ src/app/shared/shared-video-miniature/video-download.component.ts180
+
Average frame rateAverage frame rate
-
- src/app/shared/shared-video-miniature/video-download.component.ts181
+ src/app/shared/shared-video-miniature/video-download.component.ts181
+
Pixel formatPixel format
-
- src/app/shared/shared-video-miniature/video-download.component.ts182
+ src/app/shared/shared-video-miniature/video-download.component.ts182
+
Sample rateSample rate
-
- src/app/shared/shared-video-miniature/video-download.component.ts186
+ src/app/shared/shared-video-miniature/video-download.component.ts186
+
Channel LayoutChannel Layout
-
- src/app/shared/shared-video-miniature/video-download.component.ts187
+ src/app/shared/shared-video-miniature/video-download.component.ts187
+
Video settingsNastavení videí
-
- src/app/modal/quick-settings-modal.component.html18
+ src/app/modal/quick-settings-modal.component.html18
+
Interface settingsInterface settings
-
- src/app/modal/quick-settings-modal.component.html22
+ src/app/modal/quick-settings-modal.component.html22
+
Change passwordZměnit heslo
-
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html5src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html33
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html5
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html33
+
Current passwordSoučasné heslo
-
- 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 passwordNové heslo
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html17
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html17
+
Confirm new passwordPotvrďte nové heslo
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html26
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html26
+
Default policy on videos containing sensitive contentVychozí nastavení pro videa obsahující citlivý materiál
-
- src/app/shared/shared-user-settings/user-video-settings.component.html4
+ src/app/shared/shared-user-settings/user-video-settings.component.html4
+
- With Do not list or Blur thumbnails, a confirmation will be requested to watch the video.
+ With Do not list or Blur thumbnails, a confirmation will be requested to watch the video.
With
- Do not list
- or
- Blur thumbnails
- , a confirmation will be requested to watch the video.
+ Do not list
+ or
+ Blur thumbnails
+ , a confirmation will be requested to watch the video.
-
- src/app/shared/shared-user-settings/user-video-settings.component.html8
+ src/app/shared/shared-user-settings/user-video-settings.component.html8
+
Policy for sensitive videosPolicy for sensitive videos
-
-
- src/app/shared/shared-user-settings/user-video-settings.component.html15src/app/+admin/config/edit-custom-config/edit-custom-config.component.html116
+ src/app/shared/shared-user-settings/user-video-settings.component.html15
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html116
+
Only display videos in the following languages/subtitlesOnly display videos in the following languages/subtitles
-
- src/app/shared/shared-user-settings/user-video-settings.component.html25
+ src/app/shared/shared-user-settings/user-video-settings.component.html25
+
In Recently added, Trending, Local, Most liked and Search pagesIn Recently added, Trending, Local, Most liked and Search pages
-
- src/app/shared/shared-user-settings/user-video-settings.component.html28
+ src/app/shared/shared-user-settings/user-video-settings.component.html28
+
Add a new languageAdd a new language
-
-
- src/app/shared/shared-user-settings/user-video-settings.component.html36src/app/+admin/config/edit-custom-config/edit-custom-config.component.html69
-
+ src/app/shared/shared-user-settings/user-video-settings.component.html36
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html69
+
- is awaiting email verification
-
+ is awaiting email verification
-
+
- čeká na ověření emailem
+ čeká na ověření emailem
-
- 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 emailNový 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 emailZměnit 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
+
ThemeTheme
-
-
- src/app/shared/shared-user-settings/user-interface-settings.component.html4src/app/+admin/config/edit-custom-config/edit-custom-config.component.html255
+ src/app/shared/shared-user-settings/user-interface-settings.component.html4
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html255
+
instance defaultinstance default
-
- src/app/shared/shared-user-settings/user-interface-settings.component.html8
+ src/app/shared/shared-user-settings/user-interface-settings.component.html8
+
peertube defaultpeertube default
-
- src/app/shared/shared-user-settings/user-interface-settings.component.html9
+ src/app/shared/shared-user-settings/user-interface-settings.component.html9
+
Change ownershipZměnit vlastnictví
-
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.html3
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html3
+
Select the next ownerVyber nového vlastníka
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.html10
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html10
+
Search your videosSearch your videos
-
- src/app/+my-library/my-videos/my-videos.component.html23
+ src/app/+my-library/my-videos/my-videos.component.html23
+
Accept ownershipAccept ownership
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html3
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html3
+
Select a channel to receive the videoSelect a channel to receive the video
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10
+
Channel that will receive the videoChannel that will receive the video
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html13
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html13
+
My ownership changesMy ownership changes
-
- src/app/+my-library/my-ownership/my-ownership.component.html3
+ src/app/+my-library/my-ownership/my-ownership.component.html3
+
InitiatorIniciátor
-
- src/app/+my-library/my-ownership/my-ownership.component.html19
+ src/app/+my-library/my-ownership/my-ownership.component.html19
+
- Created
-
- Vytvořeno
-
-
-
-
-
- src/app/+my-library/my-ownership/my-ownership.component.html22
+ Created
+ Vytvořeno
+ src/app/+my-library/my-ownership/my-ownership.component.html22
+
StatusStatus
-
- src/app/+my-library/my-ownership/my-ownership.component.html25
+ src/app/+my-library/my-ownership/my-ownership.component.html25
+
Account pageAccount page
-
-
- src/app/+videos/+video-watch/video-watch.component.html185src/app/+videos/+video-watch/video-watch.component.html191
+ src/app/+videos/+video-watch/video-watch.component.html185
+ src/app/+videos/+video-watch/video-watch.component.html191
+
-
-
-
+
-
- src/app/+videos/+video-watch/video-watch.component.html192
+ src/app/+videos/+video-watch/video-watch.component.html192
+
No ownership change request found.No ownership change request found.
-
- src/app/+my-library/my-ownership/my-ownership.component.html83
- Account settingsAccount settings
-
- src/app/+my-account/my-account-routing.module.ts29
- Playlist elementsPlaylist elements
-
- src/app/+my-library/my-library-routing.module.ts58
+ src/app/+my-library/my-ownership/my-ownership.component.html83
+
+
+ Account settings
+ Account settings
+ src/app/+my-account/my-account-routing.module.ts29
+
+
+ Playlist elements
+ Playlist elements
+ src/app/+my-library/my-library-routing.module.ts58
+ My importsMy imports
-
- src/app/+my-library/my-videos/my-videos.component.html11src/app/+my-library/my-video-imports/my-video-imports.component.html3
+ src/app/+my-library/my-videos/my-videos.component.html11
+ src/app/+my-library/my-video-imports/my-video-imports.component.html3
+
Create video channelCreate video channel
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.html19
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html19
+
-
- subscribers
-
+ subscribers odběratelů
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html32
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html32
+
Example: my_channelPříklad: můj_kanál
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35
+
CHANNELCHANNEL
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26src/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
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26
+
- 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.
- Short text to tell people how they can support your channel (membership platform...).<br /><br />
+ 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.
+ 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.html77src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
+
Overwrite support field of all videos of this channelOverwrite support field of all videos of this channel
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92
+
-
- subscribers
-
+ subscribers odběratelů
-
- src/app/shared/shared-main/account/actor-avatar-info.component.html28
- Upload a new avatarUpload a new avatar
+ src/app/shared/shared-main/account/actor-avatar-info.component.html28
+
+
+ Upload a new avatar
+ Upload a new avatarsrc/app/shared/shared-main/account/actor-avatar-info.component.html10
@@ -5202,18 +5439,18 @@ The link will expire within 1 hour.
TargetTarget
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html17
+ src/app/+my-library/my-video-imports/my-video-imports.component.html17
+ See the errorSee 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 deletedThis video was deleted
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html49
+ src/app/+my-library/my-video-imports/my-video-imports.component.html49
+
Showing to of importsShowing
@@ -5221,62 +5458,61 @@ The link will expire within 1 hour. of
imports
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html10
+ src/app/+my-library/my-video-imports/my-video-imports.component.html10
+
Once you delete your account, there is no going back. You will be asked to confirm this action.Once you delete your account, there is no going back. You will be asked to confirm this action.
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html2
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html2
+
Delete your accountSmazat vlastní účet
-
- 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.html4
+
Channel pageChannel page
-
-
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html27src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+videos/+video-watch/video-watch.component.html182
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html27
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html30
+ src/app/+videos/+video-watch/video-watch.component.html182
+
Created by
- Autor:
-
-
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html35
+ Vytvořil
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html35
+
Owner account pageOwner account page
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html34
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html34
+
Go the owner account pagePřejít na autorův profil
-
- src/app/+video-channels/video-channels.component.html30
-
+ src/app/+video-channels/video-channels.component.html30
+
Delete history
-
-
+
+
Smazat historii
-
- src/app/+my-library/my-history/my-history.component.html24
- 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.html24
+
+
+ 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.html30
- Open syndication dropdownOpen syndication dropdown
+ Open syndication dropdown
+ Open syndication dropdownsrc/app/shared/shared-main/feeds/feed.component.html3
@@ -5289,347 +5525,362 @@ The link will expire within 1 hour.
Notification preferences
-
-
+
+
Nastavení notifikací
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html4
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html4
+ Newest firstNewest first
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html11
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html11
+
Unread firstUnread first
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html12
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html12
+
All readAll read
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html26
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html26
+
ActivitiesAktivity
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html2
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html2
+
WebWeb
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html3
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html3
+
My PlaylistsMy Playlists
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4
+
NEW PLAYLISTNEW PLAYLIST
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25
+
PLAYLISTPLAYLIST
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26
+
Create playlistCreate playlist
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.html18
- My video channelsMy video channels
-
- src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts13
- Create a new video channelCreate a new video channel
-
- src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts22
- Playlist } deleted.Playlist } deleted.
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.ts60
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html18
+
+
+ My video channels
+ My video channels
+ src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts13
+
+
+ Create a new video channel
+ Create a new video channel
+ src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts22
+
+
+ Playlist } deleted.
+ Playlist } deleted.
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.ts60
+ Playlist thumbnailMiniatura playlistu
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html82src/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
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html82
+
Search your playlistsSearch your playlists
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.html10
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html10
+
No videos in this playlist.Žádná videa v tomto seznamu.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html25
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html25
+
-
- Browse videos on PeerTube to add them in your playlist.
-
+ Browse videos on PeerTube to add them in your playlist.
Browse videos on PeerTube to add them in your playlist.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html28
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html28
+
- See the documentation for more information.
+ See the documentation for more information.
See the
- documentation
- for more information.
+ documentation
+ for more information.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html32
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html32
+
Welcome to PeerTube!Welcome to PeerTube!
-
- src/app/+signup/shared/signup-success.component.html8
+ src/app/+signup/shared/signup-success.component.html8
+
- If you need help to use PeerTube, you can have a look at the documentation.
+ If you need help to use PeerTube, you can have a look at the documentation.
If you need help to use PeerTube, you can have a look at the
- documentation
- .
+ documentation
+ .
-
- src/app/+signup/shared/signup-success.component.html14
+ src/app/+signup/shared/signup-success.component.html14
+
Verify account email confirmation
Verify account email confirmation
-
- src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html3
-
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html3
+
Email updated.
Email updated.
-
- src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html10
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html10
+
An error occurred.An error occurred.
-
- src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html14
- Video channel videosVideo channel videos
-
- src/app/+video-channels/video-channels-routing.module.ts25
- Video channel playlistsVideo channel playlists
-
- src/app/+video-channels/video-channels-routing.module.ts38
- About video channelAbout video channel
-
- src/app/+video-channels/video-channels-routing.module.ts47
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html14
+
+
+ Video channel videos
+ Video channel videos
+ src/app/+video-channels/video-channels-routing.module.ts25
+
+
+ Video channel playlists
+ Video channel playlists
+ src/app/+video-channels/video-channels-routing.module.ts38
+
+
+ About video channel
+ About video channel
+ src/app/+video-channels/video-channels-routing.module.ts47
+ Request email for account verification
Request email for account verification
-
- src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html3
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html3
+
Send verification emailSend verification email
-
- src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html17
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html17
+
This instance does not require email verification.This instance does not require email verification.
-
- src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html20
- Verify account via emailVerify account via email
-
- src/app/+signup/+verify-account/verify-account-routing.module.ts17
- Ask to send an email to verify you accountAsk to send an email to verify you account
-
- src/app/+signup/+verify-account/verify-account-routing.module.ts26
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html20
+
+
+ Verify account via email
+ Verify account via email
+ src/app/+signup/+verify-account/verify-account-routing.module.ts17
+
+
+ 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.ts26
+ BannedZablokován
-
- src/app/+accounts/accounts.component.html18
+ src/app/+accounts/accounts.component.html18
+
Instance mutedInstance skryta
-
- src/app/+accounts/accounts.component.html20
+ src/app/+accounts/accounts.component.html20
+
Muted by your instanceSkryt vaší instancí
-
- src/app/+accounts/accounts.component.html21
+ src/app/+accounts/accounts.component.html21
+
Instance muted by your instanceInstance skryta vaší instancí
-
- src/app/+accounts/accounts.component.html22
+ src/app/+accounts/accounts.component.html22
+
Manage accountManage account
-
- src/app/+accounts/accounts.component.html36
+ src/app/+accounts/accounts.component.html36
+
This account does not have channels.Tento účet nemá žádné kanály.
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html4
+ src/app/+accounts/account-video-channels/account-video-channels.component.html4
+
{VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}}{VAR_PLURAL, plural, =1 {1 subscriber} other {
subscribers} }
-
-
-
- src/app/+video-channels/video-channels.component.html28src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+my-library/+my-video-channels/my-video-channels.component.html35
+ src/app/+video-channels/video-channels.component.html28
+ src/app/+accounts/account-video-channels/account-video-channels.component.html13
+ src/app/+my-library/+my-video-channels/my-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.html37
- Do you really want to delete ?
-It will delete videos uploaded in this channel, and you will not be able to create another
-channel with the same name ()!Do you really want to delete ?
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html37
+
+
+ Do you really want to delete ? It will delete videos uploaded in this channel, and you will not be able to create another channel with the same name ()!
+ Do you really want to delete ?
It will delete videos uploaded in this channel, and you will not be able to create another
channel with the same name ()!
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts63
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts63
+
My ChannelsMy Channels
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4
+
NEW CHANNELNEW CHANNEL
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25
+
See this video channelZobrazit tento videokanál
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html9
+ src/app/+accounts/account-video-channels/account-video-channels.component.html9
+
This channel doesn't have any videos.This channel doesn't have any videos.
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html20
+ src/app/+accounts/account-video-channels/account-video-channels.component.html20
+
-
- SHOW THIS CHANNEL
-
+ SHOW THIS CHANNEL
SHOW THIS CHANNEL
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html29
+ src/app/+accounts/account-video-channels/account-video-channels.component.html29
+
DESCRIPTIONDESCRIPTION
-
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html5src/app/+accounts/account-about/account-about.component.html5
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html5
+ src/app/+accounts/account-about/account-about.component.html5
+
STATSSTATS
-
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html17src/app/+accounts/account-about/account-about.component.html10
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html17
+ src/app/+accounts/account-about/account-about.component.html10
+
StatsStatistiky
-
- src/app/menu/menu.component.html176
+ src/app/menu/menu.component.html176
+
Joined
- Registrován/a od
-
-
-
- src/app/+accounts/account-about/account-about.component.html12
+ Registrován/a od
+ src/app/+accounts/account-about/account-about.component.html12
+
-
- Manage channel
-
+ Manage channel
Manage channel
-
- src/app/+video-channels/video-channels.component.html22
+ src/app/+video-channels/video-channels.component.html22
+
Created byCreated by
-
- src/app/+video-channels/video-channels.component.html31
+ src/app/+video-channels/video-channels.component.html31
+
SUPPORT THIS CHANNELSUPPORT THIS CHANNEL
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html10
- Most liked videosMost liked videos
-
- src/app/+videos/videos-routing.module.ts46src/app/+videos/video-list/video-most-liked.component.ts41
- Videos that have the most likes.Videos that have the most likes.
-
- src/app/+videos/video-list/video-most-liked.component.ts42
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html10
+
+
+ Most liked videos
+ Most liked videos
+ src/app/+videos/videos-routing.module.ts46
+ src/app/+videos/video-list/video-most-liked.component.ts41
+
+
+ Videos that have the most likes.
+ Videos that have the most likes.
+ src/app/+videos/video-list/video-most-liked.component.ts42
+ Created
- Vytvořeno
-
-
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html18
+ Vytvořeno
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html18
+
- Created playlists
+ Created playlists
Created
playlists
-
- src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2
+ src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2
+
This channel does not have playlists.Tento kanál nemá seznamy.
-
- src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html6
+ src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html6
+
PeerTubePeerTube
-
- src/app/+about/about.component.html7
- NetworkNetwork
-
- src/app/+about/about.component.html9
+ src/app/+about/about.component.html7
+
+
+ Network
+ Network
+ src/app/+about/about.component.html9
+ FollowsFollows
-
-
- src/app/+about/about-follows/about-follows.component.html2
- Followers instances ()Followers instances ()
+ src/app/+about/about-follows/about-follows.component.html2
+
+
+ Followers instances ()
+ Followers instances ()src/app/+about/about-follows/about-follows.component.html4
-
- Following instances ()Following instances ()
+
+
+ Following instances ()
+ Following instances ()src/app/+about/about-follows/about-follows.component.html16
@@ -5637,217 +5888,201 @@ channel with the same name ()!
Contact administrator
- Kontaktujte administrátora
-
-
-
- src/app/+about/about-instance/contact-admin-modal.component.html3
+ Kontaktovat správce
+ src/app/+about/about-instance/contact-admin-modal.component.html3
+
Your nameVaše jméno
-
- src/app/+about/about-instance/contact-admin-modal.component.html11
+ src/app/+about/about-instance/contact-admin-modal.component.html11
+
Your emailVáš e-mail
-
- src/app/+about/about-instance/contact-admin-modal.component.html20
+ src/app/+about/about-instance/contact-admin-modal.component.html20
+
SubjectSubject
-
- src/app/+about/about-instance/contact-admin-modal.component.html29
+ src/app/+about/about-instance/contact-admin-modal.component.html29
+
Your messageVaše zpráva
-
- src/app/+about/about-instance/contact-admin-modal.component.html38
+ src/app/+about/about-instance/contact-admin-modal.component.html38
+
About About
-
- src/app/+about/about-instance/about-instance.component.html5
+ src/app/+about/about-instance/about-instance.component.html5
+
Contact administratorKontaktovat administrátora
-
- src/app/+about/about-instance/about-instance.component.html7
+ src/app/+about/about-instance/about-instance.component.html7
+
This instance is dedicated to sensitive/NSFW content.This instance is dedicated to sensitive/NSFW content.
-
- src/app/+about/about-instance/about-instance.component.html19
+ src/app/+about/about-instance/about-instance.component.html19
+
-
- ADMINISTRATORS & SUSTAINABILITY
-
+ ADMINISTRATORS & SUSTAINABILITY
ADMINISTRATORS & SUSTAINABILITY
-
- src/app/+about/about-instance/about-instance.component.html32
+ src/app/+about/about-instance/about-instance.component.html32
+
Who we areWho we are
-
- src/app/+about/about-instance/about-instance.component.html44
+ src/app/+about/about-instance/about-instance.component.html44
+
Why we created this instanceWhy we created this instance
-
- src/app/+about/about-instance/about-instance.component.html58
+ src/app/+about/about-instance/about-instance.component.html58
+
How long we plan to maintain this instanceHow long we plan to maintain this instance
-
- src/app/+about/about-instance/about-instance.component.html72
+ src/app/+about/about-instance/about-instance.component.html72
+
How we will pay for this instanceHow we will pay for this instance
-
- src/app/+about/about-instance/about-instance.component.html86
+ src/app/+about/about-instance/about-instance.component.html86
+
-
- INFORMATION
-
+ INFORMATION
INFORMATION
-
- src/app/+about/about-instance/about-instance.component.html101
+ src/app/+about/about-instance/about-instance.component.html101
+
-
- MODERATION
-
+ MODERATION
MODERATION
-
- src/app/+about/about-instance/about-instance.component.html128
+ src/app/+about/about-instance/about-instance.component.html128
+
-
- OTHER INFORMATION
-
+ OTHER INFORMATION
OTHER INFORMATION
-
- src/app/+about/about-instance/about-instance.component.html183
+ src/app/+about/about-instance/about-instance.component.html183
+
Hardware informationHardware information
-
- src/app/+about/about-instance/about-instance.component.html195
+ src/app/+about/about-instance/about-instance.component.html195
+
FEATURESFEATURES
-
- src/app/+about/about-instance/about-instance.component.html203
+ src/app/+about/about-instance/about-instance.component.html203
+
Features found on this instanceFunkce podporované touto instancí
-
-
- 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
+
STATISTICSSTATISTICS
-
- src/app/+about/about-instance/about-instance.component.html215
+ src/app/+about/about-instance/about-instance.component.html215
+
-
- What is PeerTube?
-
+ What is PeerTube?
What is PeerTube?
-
- src/app/+about/about-peertube/about-peertube.component.html3
+ src/app/+about/about-peertube/about-peertube.component.html3
+
-
- 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 is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.
-
- 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.
-
- src/app/+about/about-peertube/about-peertube.component.html14
-
+ 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.
+ src/app/+about/about-peertube/about-peertube.component.html14
+
- For more information, please visit joinpeertube.org.
+ For more information, please visit joinpeertube.org.
For more information, please visit
- joinpeertube.org
- .
+ joinpeertube.org
+ .
-
- src/app/+about/about-peertube/about-peertube.component.html19
+ src/app/+about/about-peertube/about-peertube.component.html19
+
Use PeerTube documentationUse PeerTube
documentation
-
- src/app/+about/about-peertube/about-peertube.component.html28
+ src/app/+about/about-peertube/about-peertube.component.html28
+
-
- Discover how to setup your account, what is a channel, how to create a playlist and more!
-
+ Discover how to setup your account, what is a channel, how to create a playlist and more!
Discover how to setup your account, what is a channel, how to create a playlist and more!
-
- src/app/+about/about-peertube/about-peertube.component.html33
+ src/app/+about/about-peertube/about-peertube.component.html33
+
PeerTube ApplicationsPeerTube
Applications
-
- src/app/+about/about-peertube/about-peertube.component.html41
+ src/app/+about/about-peertube/about-peertube.component.html41
+
-
- Discover unofficial Android applications or browser addons!
-
+ Discover unofficial Android applications or browser addons!
Discover unofficial Android applications or browser addons!
-
- src/app/+about/about-peertube/about-peertube.component.html46
+ src/app/+about/about-peertube/about-peertube.component.html46
+
Contribute on PeerTubeContribute on
PeerTube
-
- src/app/+about/about-peertube/about-peertube.component.html54
+ src/app/+about/about-peertube/about-peertube.component.html54
+
-
- Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!
-
+ Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!
Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!
-
- src/app/+about/about-peertube/about-peertube.component.html59
+ src/app/+about/about-peertube/about-peertube.component.html59
+
P2P & PrivacyP2P & soukromí
-
- src/app/+about/about-peertube/about-peertube.component.html71
+ src/app/+about/about-peertube/about-peertube.component.html71
+
- PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.
+ PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.
PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server,
but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What
follows applies only if you want to keep using the P2P mode of PeerTube.
-
- 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.
+ 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. src/app/+about/about-peertube/about-peertube.component.html81,83
@@ -5856,147 +6091,144 @@ channel with the same name ()!
What are the consequences?Co to má za následky?
-
- src/app/+about/about-peertube/about-peertube.component.html85
+ src/app/+about/about-peertube/about-peertube.component.html85
+
- In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:
+ In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:
In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video.
In practice, this is much more difficult because:
-
- src/app/+about/about-peertube/about-peertube.component.html88
+ src/app/+about/about-peertube/about-peertube.component.html88
+
- An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)
+ An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)
An HTTP request has to be sent on each tracker for each video to spy.
If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)
-
- src/app/+about/about-peertube/about-peertube.component.html94
+ src/app/+about/about-peertube/about-peertube.component.html94
+
- For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm
+ For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm
For each request sent, the tracker returns random peers at a limited number.
For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50
requests sent to know every peer in the swarm
-
- src/app/+about/about-peertube/about-peertube.component.html99
+ src/app/+about/about-peertube/about-peertube.component.html99
+
-
- Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour
-
+ Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour
Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour
-
- src/app/+about/about-peertube/about-peertube.component.html105
+ src/app/+about/about-peertube/about-peertube.component.html105
+
- If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video
+ If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video
If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the
video
-
- src/app/+about/about-peertube/about-peertube.component.html109
+ src/app/+about/about-peertube/about-peertube.component.html109
+
-
- The IP address is a vague information: usually, it regularly changes and can represent many persons or entities
-
+ The IP address is a vague information: usually, it regularly changes and can represent many persons or entities
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
+ 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 src/app/+about/about-peertube/about-peertube.component.html118,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.
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?Jaký je PeerTube v porovnání s YouTubem?
-
- 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).
+ 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).
-
- 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?Co mohu dělat pro zkrácení doby uložení mé IP adresy?
-
- 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.
+ 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.
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.
-
- 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?Co můžete udělat pro zmírnění tohoto problému?
-
- 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:
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 trackerWe 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 trackerWe 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 interfaceAllow 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.
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
+ src/app/+about/about-follows/about-follows.component.html6
+
+
+ Show full list
+ Show full listsrc/app/+about/about-follows/about-follows.component.html12
@@ -6005,307 +6237,341 @@ channel with the same name ()!
src/app/+about/about-follows/about-follows.component.html24
-
- This instance is not following any other.This instance is not following any other.
-
- src/app/+about/about-follows/about-follows.component.html18
-
+
+
+ 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 instanceAbout this instance
-
- src/app/+about/about-routing.module.ts26
- About PeerTubeAbout PeerTube
-
- src/app/+about/about-routing.module.ts38
- About this instance's networkAbout this instance's network
-
- src/app/+about/about-routing.module.ts47
- Link copiedLink copied
-
- src/app/+about/about-instance/about-instance.component.ts91
+ About this instance
+ About this instance
+ src/app/+about/about-routing.module.ts26
+
+
+ About PeerTube
+ About PeerTube
+ src/app/+about/about-routing.module.ts38
+
+
+ About this instance's network
+ About this instance's network
+ src/app/+about/about-routing.module.ts47
+
+
+ Link copied
+ Link copied
+ src/app/+about/about-instance/about-instance.component.ts91
+ Developed with ❤ by FramasoftDeveloped with ❤ by
- Framasoft
-
+ Framasoft
+
-
- src/app/+about/about-peertube/about-peertube-contributors.component.html3
+ src/app/+about/about-peertube/about-peertube-contributors.component.html3
+
Create an account
Vytvořit účet
-
- src/app/+signup/+register/register.component.html4
+ src/app/+signup/+register/register.component.html4
+
- Get helpGet help
-
- src/app/shared/shared-main/misc/help.component.ts16
+ Get help
+ Get help
+ src/app/shared/shared-main/misc/help.component.ts16
+
Create my account
Vytvořit můj účet
-
- src/app/+signup/+register/register.component.html38
+ src/app/+signup/+register/register.component.html38
+
PeerTube is creating your account...PeerTube vytváří Váš účet...
-
- src/app/+signup/+register/register.component.html46
+ src/app/+signup/+register/register.component.html46
+
DoneHotovo
-
- src/app/+signup/+register/register.component.html42
+ src/app/+signup/+register/register.component.html42
+
Who are we?Who are we?
-
- 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?How long do we plan to maintain this instance?
-
- 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?How will we finance this instance?
-
- src/app/shared/shared-instance/instance-about-accordion.component.html29
+ src/app/shared/shared-instance/instance-about-accordion.component.html29
+
Administrators & SustainabilityAdministrators & 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
+
StepStep
-
- src/app/+signup/+register/custom-stepper.component.html9
+ src/app/+signup/+register/custom-stepper.component.html9
+
- A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology.
+ A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology.
A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.
-
+
For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology.
-
- src/app/+signup/+register/register-step-channel.component.html5
+ src/app/+signup/+register/register-step-channel.component.html5
+
Other users can decide to subscribe any channel they want, to be notified when you publish a new video.
Other users can decide to subscribe any channel they want, to be notified when you publish a new video.
-
- src/app/+signup/+register/register-step-channel.component.html10
+ src/app/+signup/+register/register-step-channel.component.html10
+
Channel display nameChannel display name
-
- src/app/+signup/+register/register-step-channel.component.html15
+ src/app/+signup/+register/register-step-channel.component.html15
+
Channel nameChannel name
-
-
-
- src/app/+signup/+register/register-step-channel.component.html30src/app/+admin/users/user-edit/user-edit.component.html94src/app/+admin/users/user-edit/user-edit.component.html94
+ src/app/+signup/+register/register-step-channel.component.html30
+ src/app/+admin/users/user-edit/user-edit.component.html94
+ src/app/+admin/users/user-edit/user-edit.component.html94
+
john_channeljohn_channel
-
-
- src/app/+admin/users/user-edit/user-edit.component.html96src/app/+admin/users/user-edit/user-edit.component.html96
+ src/app/+admin/users/user-edit/user-edit.component.html96
+ src/app/+admin/users/user-edit/user-edit.component.html96
+
Example: my_super_channelExample: my_super_channel
-
- src/app/+signup/+register/register-step-channel.component.html34
+ src/app/+signup/+register/register-step-channel.component.html34
+
-
- 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.
-
+ 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.
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. 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
-
-
+ 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.
+ 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
+
-
- 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.
-
+ 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.
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.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.html4,5
- I am at least 16 years old and agree to the Terms and to the Code of Conduct of this instance
+ I am at least 16 years old and agree to the Terms and to the Code of Conduct of this instance
I am at least 16 years old and agree
to the
- Terms
-
- and to the
- Code of Conduct
-
-
+ Terms
+
+ and to the
+ Code of Conduct
+
+
of this instance
-
- src/app/+signup/+register/register-step-terms.component.html6
- RegisterRegister
-
- src/app/+signup/+register/register-routing.module.ts14
-
+ src/app/+signup/+register/register-step-terms.component.html6
+
+
+ Register
+ Register
+ src/app/+signup/+register/register-routing.module.ts14
+ Your message has been sent.Your message has been sent.
-
- src/app/+about/about-instance/contact-admin-modal.component.ts77
+ src/app/+about/about-instance/contact-admin-modal.component.ts77
+
You already sent this form recentlyYou already sent this form recently
-
- src/app/+about/about-instance/contact-admin-modal.component.ts83
+ src/app/+about/about-instance/contact-admin-modal.component.ts83
+
No descriptionŽádný popis
-
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.ts41src/app/+accounts/account-about/account-about.component.ts38
- Account videosAccount videos
-
- src/app/+accounts/accounts-routing.module.ts48
- Search videos within accountSearch videos within account
+ src/app/+video-channels/video-channel-about/video-channel-about.component.ts41
+ src/app/+accounts/account-about/account-about.component.ts38
+
+
+ Account videos
+ Account videos
+ src/app/+accounts/accounts-routing.module.ts48
+
+
+ Search videos within account
+ Search videos within accountsrc/app/+accounts/accounts-routing.module.ts61
-
- Account video channelsAccount video channels
-
- src/app/+accounts/accounts-routing.module.ts30
- About accountAbout account
-
- src/app/+accounts/accounts-routing.module.ts39
+
+
+ Account video channels
+ Account video channels
+ src/app/+accounts/accounts-routing.module.ts30
+
+
+ About account
+ About account
+ src/app/+accounts/accounts-routing.module.ts39
+ Published videos
- Published
- videos
-
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87src/app/+accounts/account-search/account-search.component.ts90src/app/+accounts/account-videos/account-videos.component.ts79
- 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.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39
+ Zveřejněno videí
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87
+ src/app/+accounts/account-search/account-search.component.ts90
+ src/app/+accounts/account-videos/account-videos.component.ts79
+
+
+ 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.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+
-
- direct account followers
-
+ direct account followers direct account followers
-
- src/app/+accounts/accounts.component.ts127
- Report this accountReport this account
-
- src/app/+accounts/accounts.component.ts133
- Search videosSearch videos
+ src/app/+accounts/accounts.component.ts127
+
+
+ Report this account
+ Report this account
+ src/app/+accounts/accounts.component.ts133
+
+
+ Search videos
+ Search videossrc/app/+accounts/accounts.component.html48
-
VIDEO CHANNELSVIDEO CHANNELS
-
- src/app/+accounts/accounts.component.ts65
- VIDEOSVIDEOS
-
- src/app/+video-channels/video-channels.component.ts69src/app/+accounts/accounts.component.ts66
+ src/app/+accounts/accounts.component.ts65
+
+
+ VIDEOS
+ VIDEOS
+ src/app/+video-channels/video-channels.component.ts69
+ src/app/+accounts/accounts.component.ts66
+ ABOUTABOUT
-
-
- src/app/+video-channels/video-channels.component.ts71src/app/+accounts/accounts.component.ts67
+ src/app/+video-channels/video-channels.component.ts71
+ src/app/+accounts/accounts.component.ts67
+
Username copiedUsername copied
-
-
- src/app/+video-channels/video-channels.component.ts96src/app/+accounts/accounts.component.ts95
- 1 subscriber1 subscriber
-
- src/app/+accounts/accounts.component.ts99
- subscribers subscribers
-
- src/app/+accounts/accounts.component.ts101
-
+ src/app/+video-channels/video-channels.component.ts96
+ src/app/+accounts/accounts.component.ts95
+
+
+ 1 subscriber
+ 1 subscriber
+ src/app/+accounts/accounts.component.ts99
+
+
+ subscribers
+ subscribers
+ src/app/+accounts/accounts.component.ts101
+ Instances you followInstances you follow
-
- src/app/+admin/follows/following-list/following-list.component.html3
+ src/app/+admin/follows/following-list/following-list.component.html3
+
Instances following youInstances following you
-
- src/app/+admin/follows/followers-list/followers-list.component.html3
+ src/app/+admin/follows/followers-list/followers-list.component.html3
+
Audio-onlyAudio-only
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts61
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts61
+
- 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-custom-config.component.ts62
+ 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-custom-config.component.ts62
+
240p240p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts66
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts66
+
360p360p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts70
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts70
+
480p480p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts74
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts74
+
720p720p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts78
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts78
+
1080p1080p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts82
- 1440p1440p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts82
+
+
+ 1440p
+ 1440psrc/app/+admin/config/edit-custom-config/edit-custom-config.component.ts86
@@ -6314,836 +6580,875 @@ channel with the same name ()!
2160p2160p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts90
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts90
+ Auto (via ffmpeg)Auto (via ffmpeg)
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts97
- No limitNo limit
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts105
- 1 hour1 hour
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts106
- 3 hours3 hours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts107
- 5 hours5 hours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts108
- 10 hours10 hours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts109
- threadsthreads
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts149
- threadthread
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts150
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts97
+
+
+ No limit
+ No limit
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts105
+
+
+ 1 hour
+ 1 hour
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts106
+
+
+ 3 hours
+ 3 hours
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts107
+
+
+ 5 hours
+ 5 hours
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts108
+
+
+ 10 hours
+ 10 hours
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts109
+
+
+ threads
+ threads
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts149
+
+
+ thread
+ thread
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts150
+ Configuration updated.Nastavení aktualizováno.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts380
- 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-custom-config.component.ts473
- Edit custom configurationEdit custom configuration
-
- src/app/+admin/config/config.routes.ts26
-
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts380
+
+
+ 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-custom-config.component.ts473
+
+
+ Edit custom configuration
+ Edit custom configuration
+ src/app/+admin/config/config.routes.ts26
+ Process domainsProcess domains
-
- src/app/shared/shared-moderation/batch-domains-modal.component.ts28
+ src/app/shared/shared-moderation/batch-domains-modal.component.ts28
+
- Report
-
-
+ Report Report
-
- src/app/shared/shared-moderation/report-modals/account-report.component.ts51
+ src/app/shared/shared-moderation/report-modals/account-report.component.ts51
+
Account reported.Account reported.
-
- src/app/shared/shared-moderation/report-modals/account-report.component.ts82
+ src/app/shared/shared-moderation/report-modals/account-report.component.ts82
+
Comment reported.Comment reported.
-
- src/app/shared/shared-moderation/report-modals/comment-report.component.ts82
+ src/app/shared/shared-moderation/report-modals/comment-report.component.ts82
+
Domain is required.Domain is required.
-
- src/app/shared/form-validators/batch-domains-validators.ts56
+ src/app/shared/form-validators/batch-domains-validators.ts56
+
Domains entered are invalid.Domains entered are invalid.
-
- src/app/shared/form-validators/batch-domains-validators.ts57
+ src/app/shared/form-validators/batch-domains-validators.ts57
+
Domains entered contain duplicates.Domains entered contain duplicates.
-
- src/app/shared/form-validators/batch-domains-validators.ts58
+ src/app/shared/form-validators/batch-domains-validators.ts58
+
UnlimitedNeomezeně
-
-
-
-
- src/app/shared/shared-main/users/user-quota.component.ts32src/app/shared/shared-main/users/user-quota.component.ts38src/app/shared/shared-instance/instance-features-table.component.ts26src/app/shared/shared-instance/instance-features-table.component.ts33src/app/+admin/config/shared/config.service.ts21src/app/+admin/config/shared/config.service.ts34
+ src/app/shared/shared-main/users/user-quota.component.ts32
+ src/app/shared/shared-main/users/user-quota.component.ts38
+ src/app/shared/shared-instance/instance-features-table.component.ts26
+ src/app/shared/shared-instance/instance-features-table.component.ts33
+ src/app/+admin/config/shared/config.service.ts21
+ src/app/+admin/config/shared/config.service.ts34
+
None - no upload possibleNone - no upload possible
-
-
- src/app/+admin/config/shared/config.service.ts23src/app/+admin/config/shared/config.service.ts36
+ src/app/+admin/config/shared/config.service.ts23
+ src/app/+admin/config/shared/config.service.ts36
+
100MB100MB
-
-
- src/app/+admin/config/shared/config.service.ts24src/app/+admin/config/shared/config.service.ts39
+ src/app/+admin/config/shared/config.service.ts24
+ src/app/+admin/config/shared/config.service.ts39
+
500MB500MB
-
-
- src/app/+admin/config/shared/config.service.ts25src/app/+admin/config/shared/config.service.ts40
+ src/app/+admin/config/shared/config.service.ts25
+ src/app/+admin/config/shared/config.service.ts40
+
1GB1GB
-
- src/app/+admin/config/shared/config.service.ts26
+ src/app/+admin/config/shared/config.service.ts26
+
5GB5GB
-
-
- src/app/+admin/config/shared/config.service.ts27src/app/+admin/config/shared/config.service.ts42
+ src/app/+admin/config/shared/config.service.ts27
+ src/app/+admin/config/shared/config.service.ts42
+
20GB20GB
-
- src/app/+admin/config/shared/config.service.ts28
+ src/app/+admin/config/shared/config.service.ts28
+
50GB50GB
-
- src/app/+admin/config/shared/config.service.ts29
+ src/app/+admin/config/shared/config.service.ts29
+
10MB10MB
-
- src/app/+admin/config/shared/config.service.ts37
+ src/app/+admin/config/shared/config.service.ts37
+
50MB50MB
-
- src/app/+admin/config/shared/config.service.ts38
+ src/app/+admin/config/shared/config.service.ts38
+
2GB2GB
-
- src/app/+admin/config/shared/config.service.ts41
+ src/app/+admin/config/shared/config.service.ts41
+
-
- accepted in instance followers
-
+ accepted in instance followers accepted in instance followers
-
- src/app/+admin/follows/followers-list/followers-list.component.ts41
+ src/app/+admin/follows/followers-list/followers-list.component.ts41
+
Do you really want to reject this follower?Do you really want to reject this follower?
-
- src/app/+admin/follows/followers-list/followers-list.component.ts52
+ src/app/+admin/follows/followers-list/followers-list.component.ts52
+
RejectReject
-
- src/app/+admin/follows/followers-list/followers-list.component.ts53
+ src/app/+admin/follows/followers-list/followers-list.component.ts53
+
-
- rejected from instance followers
-
+ rejected from instance followers rejected from instance followers
-
- src/app/+admin/follows/followers-list/followers-list.component.ts60
+ src/app/+admin/follows/followers-list/followers-list.component.ts60
+
Do you really want to delete this follower?Do you really want to delete this follower?
-
- src/app/+admin/follows/followers-list/followers-list.component.ts73
- DeleteDelete
-
- src/app/+my-library/my-videos/my-videos.component.ts104src/app/+my-library/my-videos/my-videos.component.ts131src/app/+my-library/my-videos/my-videos.component.ts172src/app/+my-library/my-video-playlists/my-video-playlists.component.ts50src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/shared/shared-main/buttons/delete-button.component.ts16src/app/shared/shared-main/buttons/delete-button.component.ts21src/app/shared/shared-moderation/user-moderation-dropdown.component.ts91src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308src/app/shared/shared-abuse-list/abuse-list-table.component.ts129src/app/shared/shared-abuse-list/abuse-list-table.component.ts371src/app/shared/shared-abuse-list/abuse-list-table.component.ts406src/app/+my-library/+my-video-channels/my-video-channels.component.ts71src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts86src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts158src/app/+videos/+video-watch/comment/video-comments.component.ts167src/app/+admin/moderation/video-block-list/video-block-list.component.ts75src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/+admin/users/user-list/user-list.component.ts76src/app/+admin/users/user-list/user-list.component.ts194src/app/+admin/follows/followers-list/followers-list.component.ts74
+ src/app/+admin/follows/followers-list/followers-list.component.ts73
+
+
+ Delete
+ Delete
+ src/app/+my-library/my-videos/my-videos.component.ts104
+ src/app/+my-library/my-videos/my-videos.component.ts131
+ src/app/+my-library/my-videos/my-videos.component.ts172
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.ts50
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127
+ src/app/shared/shared-main/buttons/delete-button.component.ts16
+ src/app/shared/shared-main/buttons/delete-button.component.ts21
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts91
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts129
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts371
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts406
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts71
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts86
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts158
+ src/app/+videos/+video-watch/comment/video-comments.component.ts167
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts75
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts79
+ src/app/+admin/users/user-list/user-list.component.ts76
+ src/app/+admin/users/user-list/user-list.component.ts194
+ src/app/+admin/follows/followers-list/followers-list.component.ts74
+
-
- removed from instance followers
-
+ removed from instance followers removed from instance followers
-
- src/app/+admin/follows/followers-list/followers-list.component.ts81
+ src/app/+admin/follows/followers-list/followers-list.component.ts81
+
-
- is not valid
-
+ is not valid není platný
-
- src/app/shared/form-validators/batch-domains-validators.ts19
+ src/app/shared/form-validators/batch-domains-validators.ts19
+
Follow request(s) sent!Požadavek odeslán!
-
- src/app/+admin/follows/following-list/following-list.component.ts47
+ src/app/+admin/follows/following-list/following-list.component.ts47
+
Do you really want to unfollow ?
- Opravdu chcete zrušit odběr kanálu
- ?
-
-
- src/app/+admin/follows/following-list/following-list.component.ts57
+ Opravdu chcete zrušit odběr kanálu ?
+ src/app/+admin/follows/following-list/following-list.component.ts57
+
UnfollowZrušit odběr
-
- src/app/+admin/follows/following-list/following-list.component.ts58
+ src/app/+admin/follows/following-list/following-list.component.ts58
+
You are not following anymore.
- Už dále neodebíráte
- .
-
-
- src/app/+admin/follows/following-list/following-list.component.ts64
+ Už dále neodebíráte .
+ src/app/+admin/follows/following-list/following-list.component.ts64
+
enabledenabled
-
- src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+ src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+
disableddisabled
-
- src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+ src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+
Redundancy for is
- Redundancy for
- is
-
-
-
- src/app/+admin/follows/shared/redundancy-checkbox.component.ts25
+ Nadbytečnost pro je
+ src/app/+admin/follows/shared/redundancy-checkbox.component.ts25
+
UsedUsed
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+
AvailableAvailable
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+
Do you really want to remove this video redundancy?Do you really want to remove this video redundancy?
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts140
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts140
+
Remove redundancyRemove redundancy
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts141
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts141
+
Video redundancies removed!Video redundancies removed!
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts147
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts147
+
Account unmuted by your instance.Account
unmuted by your instance.
-
- src/app/shared/shared-moderation/account-blocklist.component.ts48
+ src/app/shared/shared-moderation/account-blocklist.component.ts48
+
Instance unmuted by your instance.Instance
unmuted by your instance.
-
- src/app/shared/shared-moderation/server-blocklist.component.ts46
+ src/app/shared/shared-moderation/server-blocklist.component.ts46
+
Instance muted.
- Instance
- muted.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts147src/app/shared/shared-moderation/server-blocklist.component.ts68
+ Instance ztišena.
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts147
+ src/app/shared/shared-moderation/server-blocklist.component.ts68
+
Instance muted by your instance.
- Instance
- muted by your instance.
-
-
- src/app/shared/shared-moderation/server-blocklist.component.ts69
+ Instance ztišena vaší instancí.
+ src/app/shared/shared-moderation/server-blocklist.component.ts69
+
Comment updated.Comment updated.
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts58
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts58
+
Violent or RepulsiveViolent or Repulsive
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts21
+ src/app/shared/shared-abuse-list/abuse-details.component.ts21
+
Hateful or AbusiveHateful or Abusive
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts22
+ src/app/shared/shared-abuse-list/abuse-details.component.ts22
+
Spam or MisleadingSpam or Misleading
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts23
- PrivacyPrivacy
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts24
+ src/app/shared/shared-abuse-list/abuse-details.component.ts23
+
+
+ Privacy
+ Privacy
+ src/app/shared/shared-abuse-list/abuse-details.component.ts24
+ CopyrightCopyright
-
-
- src/app/shared/shared-moderation/abuse.service.ts159src/app/shared/shared-abuse-list/abuse-details.component.ts25
+ src/app/shared/shared-moderation/abuse.service.ts159
+ src/app/shared/shared-abuse-list/abuse-details.component.ts25
+
Server rulesServer rules
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts26
+ src/app/shared/shared-abuse-list/abuse-details.component.ts26
+
ThumbnailsThumbnails
-
-
- src/app/shared/shared-moderation/abuse.service.ts173src/app/shared/shared-abuse-list/abuse-details.component.ts27
+ src/app/shared/shared-moderation/abuse.service.ts173
+ src/app/shared/shared-abuse-list/abuse-details.component.ts27
+
Internal actionsInternal actions
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts239src/app/+admin/moderation/video-block-list/video-block-list.component.ts43
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts239
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts43
+
Delete reportDelete report
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts270
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts270
+
Actions for the flagged accountActions for the flagged account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts281
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts281
+
Mark as acceptedMark as accepted
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts255
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts255
+
Mark as rejectedMark as rejected
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts260
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts260
+
Add internal noteAdd internal note
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts265
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts265
+
Actions for the videoActions for the video
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts329src/app/+admin/moderation/video-block-list/video-block-list.component.ts66
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts329
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts66
+
Block videoBlock video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts334
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts334
+
Video blocked.Video blocked.
-
-
- src/app/shared/shared-moderation/video-block.component.ts60src/app/shared/shared-abuse-list/abuse-list-table.component.ts340
+ src/app/shared/shared-moderation/video-block.component.ts60
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts340
+
Unblock videoUnblock video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts350
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts350
+
Video unblocked.Video unblocked.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts356
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts356
+
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.ts129
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts129
+
Abuse deleted.Abuse deleted.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts134
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts134
+
Deleted commentDeleted comment
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts210
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts210
+
Messages with reporterMessages with reporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts244
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts244
+
Messages with moderatorsMessages with moderators
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts245
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts245
+
Update internal noteUpdate internal note
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts250
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts250
+
Switch video block to manualSwitch video block to manual
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.ts48
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts48
+
Video switched to manual block.
- Video
- switched to manual block.
-
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.ts54
+ Video přepnuto na ruční blokování.
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts54
+
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/shared/shared-video-miniature/video-actions-dropdown.component.ts180src/app/+admin/moderation/video-block-list/video-block-list.component.ts146
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts146
+
UnblockUnblock
-
-
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296src/app/+admin/moderation/video-block-list/video-block-list.component.ts70src/app/+admin/moderation/video-block-list/video-block-list.component.ts148
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts70
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts148
+
Video unblocked.
- Video
- unblocked.
-
-
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188src/app/+admin/moderation/video-block-list/video-block-list.component.ts153
+ Video odblokováno.
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts153
+
yesyes
-
- src/app/shared/shared-instance/feature-boolean.component.html1src/app/shared/shared-instance/feature-boolean.component.html1
+ src/app/shared/shared-instance/feature-boolean.component.html1
+ src/app/shared/shared-instance/feature-boolean.component.html1
+
nono
-
- src/app/shared/shared-instance/feature-boolean.component.html2src/app/shared/shared-instance/feature-boolean.component.html2
+ src/app/shared/shared-instance/feature-boolean.component.html2
+ src/app/shared/shared-instance/feature-boolean.component.html2
+
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.ts89
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89
+
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.ts92
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts92
+
- Update to
-
-
+ Update to Update to
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts100
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts100
+
Do you really want to uninstall ?
- Do you really want to uninstall
- ?
-
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts109
- UninstallUninstall
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110
+ Opravdu chcete odinstalovat ?
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts109
+
+
+ Uninstall
+ Uninstall
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110
+
-
- uninstalled.
-
+ uninstalled. uninstalled.
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts117
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts117
+
-
- updated.
-
+ updated. updated.
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts139
- JobsJobs
-
- src/app/+admin/system/system.routes.ts26
- LogsLogs
-
- src/app/+admin/system/system.routes.ts37
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts139
+
+
+ Jobs
+ Jobs
+ src/app/+admin/system/system.routes.ts26
+
+
+ Logs
+ Logs
+ src/app/+admin/system/system.routes.ts37
+ 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.ts126
+ src/app/+admin/plugins/plugin-search/plugin-search.component.ts126
+
Install ?
- Install
- ?
-
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.ts127
+ Instalovat ?
+ src/app/+admin/plugins/plugin-search/plugin-search.component.ts127
+
-
- installed.
-
+ installed. installed.
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.ts139
+ src/app/+admin/plugins/plugin-search/plugin-search.component.ts139
+
Settings updated.Settings updated.
-
- src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts52
+ src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts52
+
PluginsPlugins
-
- src/app/+admin/plugins/shared/plugin-api.service.ts33
+ src/app/+admin/plugins/shared/plugin-api.service.ts33
+
ThemesThemes
-
- src/app/+admin/plugins/shared/plugin-api.service.ts37
+ src/app/+admin/plugins/shared/plugin-api.service.ts37
+
pluginplugin
-
- src/app/+admin/plugins/shared/plugin-api.service.ts45
+ src/app/+admin/plugins/shared/plugin-api.service.ts45
+
themetheme
-
- src/app/+admin/plugins/shared/plugin-api.service.ts48
+ src/app/+admin/plugins/shared/plugin-api.service.ts48
+
Last weekLast week
-
- src/app/+admin/system/logs/logs.component.ts79
+ src/app/+admin/system/logs/logs.component.ts79
+
Last dayLast day
-
- src/app/+admin/system/logs/logs.component.ts84
+ src/app/+admin/system/logs/logs.component.ts84
+
Last hourLast hour
-
- src/app/+admin/system/logs/logs.component.ts89
- debugdebug
-
- src/app/+admin/system/logs/logs.component.ts101
- infoinfo
-
- src/app/+admin/system/logs/logs.component.ts105
- warningwarning
-
- src/app/+admin/system/logs/logs.component.ts109
- errorerror
-
- src/app/+admin/system/logs/logs.component.ts113
- DebugDebug
-
- src/app/+admin/system/system.routes.ts48
+ src/app/+admin/system/logs/logs.component.ts89
+
+
+ debug
+ debug
+ src/app/+admin/system/logs/logs.component.ts101
+
+
+ info
+ info
+ src/app/+admin/system/logs/logs.component.ts105
+
+
+ warning
+ warning
+ src/app/+admin/system/logs/logs.component.ts109
+
+
+ error
+ error
+ src/app/+admin/system/logs/logs.component.ts113
+
+
+ Debug
+ Debug
+ src/app/+admin/system/system.routes.ts48
+ InfoInfo
-
-
- src/app/core/notification/notifier.service.ts11
+ src/app/core/notification/notifier.service.ts11
+
WarningVarování
-
-
- src/app/core/routing/can-deactivate-guard.service.ts23
+ src/app/core/routing/can-deactivate-guard.service.ts23
+
ErrorChyba
-
-
-
- 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 logsStandard logs
-
- src/app/+admin/system/logs/logs.component.ts124
+ src/app/+admin/system/logs/logs.component.ts124
+
Audit logsAudit logs
-
- src/app/+admin/system/logs/logs.component.ts128
+ src/app/+admin/system/logs/logs.component.ts128
+
User created.
- Uživatel
- vytvořen.
-
-
- src/app/+admin/users/user-edit/user-create.component.ts77
- Create userCreate user
-
- src/app/+admin/users/user-edit/user-create.component.ts95
- Blocked videosBlocked videos
-
- src/app/+admin/moderation/moderation.routes.ts69
- Muted instancesMuted instances
-
- src/app/+admin/moderation/moderation.routes.ts109
+ Uživatel vytvořen.
+ src/app/+admin/users/user-edit/user-create.component.ts77
+
+
+ Create user
+ Create user
+ src/app/+admin/users/user-edit/user-create.component.ts95
+
+
+ Blocked videos
+ Blocked videos
+ src/app/+admin/moderation/moderation.routes.ts69
+
+
+ Muted instances
+ Muted instances
+ src/app/+admin/moderation/moderation.routes.ts109
+ Password changed for user .
- Password changed for user
- .
-
-
- src/app/+admin/users/user-edit/user-password.component.ts40
+ Heslo uživatele změněno.
+ src/app/+admin/users/user-edit/user-password.component.ts40
+
Update user passwordUpdate user password
-
- src/app/+admin/users/user-edit/user-password.component.ts52
- Following listFollowing list
-
- src/app/+admin/follows/follows.routes.ts28
- Followers listFollowers list
-
- src/app/+admin/follows/follows.routes.ts37
+ src/app/+admin/users/user-edit/user-password.component.ts52
+
+
+ Following list
+ Following list
+ src/app/+admin/follows/follows.routes.ts28
+
+
+ Followers list
+ Followers list
+ src/app/+admin/follows/follows.routes.ts37
+ User updated.
- User
- updated.
-
-
- src/app/+admin/users/user-edit/user-update.component.ts85
+ Uživatel aktualizován.
+ src/app/+admin/users/user-edit/user-update.component.ts85
+
Update userAktualizovat uživatele
-
- src/app/+admin/users/user-edit/user-update.component.ts102
+ src/app/+admin/users/user-edit/user-update.component.ts102
+
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.ts108
- Users listUsers list
-
- src/app/+admin/users/users.routes.ts27
- Create a userCreate a user
-
- src/app/+admin/users/users.routes.ts36
- Update a userUpdate a user
-
- src/app/+admin/users/users.routes.ts48
- FederationFederation
-
- src/app/+admin/admin.component.ts26
- Instances you followInstances you follow
-
- src/app/+admin/admin.component.ts29
- Instances following youInstances following you
-
- src/app/+admin/admin.component.ts34
+ src/app/+admin/users/user-edit/user-update.component.ts108
+
+
+ Users list
+ Users list
+ src/app/+admin/users/users.routes.ts27
+
+
+ Create a user
+ Create a user
+ src/app/+admin/users/users.routes.ts36
+
+
+ Update a user
+ Update a user
+ src/app/+admin/users/users.routes.ts48
+
+
+ Federation
+ Federation
+ src/app/+admin/admin.component.ts26
+
+
+ Instances you follow
+ Instances you follow
+ src/app/+admin/admin.component.ts29
+
+
+ Instances following you
+ Instances following you
+ src/app/+admin/admin.component.ts34
+ Videos will be deleted, comments will be tombstoned.Videos will be deleted, comments will be tombstoned.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269src/app/+admin/users/user-list/user-list.component.ts77
- BanBan
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts273src/app/+admin/users/user-list/user-list.component.ts82
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269
+ src/app/+admin/users/user-list/user-list.component.ts77
+
+
+ Ban
+ Ban
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts273
+ src/app/+admin/users/user-list/user-list.component.ts82
+ 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/shared/shared-moderation/user-moderation-dropdown.component.ts274src/app/+admin/users/user-list/user-list.component.ts83
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274
+ src/app/+admin/users/user-list/user-list.component.ts83
+
UnbanOdblokovat
-
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70src/app/+admin/users/user-list/user-list.component.ts88src/app/+admin/users/user-list/user-list.component.ts171
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70
+ src/app/+admin/users/user-list/user-list.component.ts88
+ src/app/+admin/users/user-list/user-list.component.ts171
+
Set Email as VerifiedSet Email as Verified
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts285src/app/+admin/users/user-list/user-list.component.ts95
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts285
+ src/app/+admin/users/user-list/user-list.component.ts95
+
You cannot ban root.You cannot ban root.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts58src/app/+admin/users/user-list/user-list.component.ts154
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts58
+ src/app/+admin/users/user-list/user-list.component.ts154
+
Do you really want to unban users?
- Opravdu chcete odblokovat
- uživatelů?
-
-
- src/app/+admin/users/user-list/user-list.component.ts171
+ Opravdu chcete odblokovat uživatelů?
+ src/app/+admin/users/user-list/user-list.component.ts171
+
-
- users unbanned.
-
+ users unbanned. uživatelů odblokováno.
-
- src/app/+admin/users/user-list/user-list.component.ts177
+ src/app/+admin/users/user-list/user-list.component.ts177
+
You cannot delete root.Uživatel root nelze odstranit.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86src/app/+admin/users/user-list/user-list.component.ts188
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86
+ src/app/+admin/users/user-list/user-list.component.ts188
+
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.ts193
+ src/app/+admin/users/user-list/user-list.component.ts193
+
-
- users deleted.
-
+ users deleted. users deleted.
-
- src/app/+admin/users/user-list/user-list.component.ts199
+ src/app/+admin/users/user-list/user-list.component.ts199
+
-
- users email set as verified.
-
+ users email set as verified. users email set as verified.
-
- src/app/+admin/users/user-list/user-list.component.ts210
+ src/app/+admin/users/user-list/user-list.component.ts210
+
Account unmuted.Account
unmuted.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts133src/app/shared/shared-moderation/account-blocklist.component.ts47
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts133
+ src/app/shared/shared-moderation/account-blocklist.component.ts47
+
Instance unmuted.Instance
unmuted.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts161src/app/shared/shared-moderation/server-blocklist.component.ts45
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts161
+ src/app/shared/shared-moderation/server-blocklist.component.ts45
+
Videos history is enabledVideos history is enabled
-
- src/app/+my-library/my-history/my-history.component.ts106
+ src/app/+my-library/my-history/my-history.component.ts106
+
Videos history is disabledVideos history is disabled
-
- src/app/+my-library/my-history/my-history.component.ts107
+ src/app/+my-library/my-history/my-history.component.ts107
+
Delete videos historyDelete videos history
-
- src/app/+my-library/my-history/my-history.component.ts119
+ src/app/+my-library/my-history/my-history.component.ts119
+
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.ts120
+ src/app/+my-library/my-history/my-history.component.ts120
+
Videos history deletedVideos history deleted
-
- src/app/+my-library/my-history/my-history.component.ts128
- My watch historyMy watch history
+ src/app/+my-library/my-history/my-history.component.ts128
+
+
+ My watch history
+ My watch historysrc/app/+my-library/my-history/my-history.component.html3
-
- Search your historySearch your history
+
+
+ Search your history
+ Search your historysrc/app/+my-library/my-history/my-history.component.html10
-
- Track watch historyTrack watch history
+
+
+ Track watch history
+ Track watch historysrc/app/+my-library/my-history/my-history.component.html20
@@ -7152,20 +7457,21 @@ channel with the same name ()!
Ownership acceptedOwnership accepted
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts71
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts71
+ Please check your emails to verify your new email.Please check your emails to verify your new email.
-
- src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts53
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts53
+
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.
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts55
+
+
+ Your current email is . It is never shown to the public.
+ Your current email is . It is never shown to the public.
src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html
@@ -7175,124 +7481,128 @@ channel with the same name ()!
You current password is invalid.You current password is invalid.
-
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts56src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts56
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61
+ Password updated.Heslo aktualizováno.
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts48
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts48
+
Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts22
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts22
+
Type your username to confirmType your username to confirm
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23
- Delete your accountDelete your account
-
- src/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.ts23
+
+
+ Delete your account
+ Delete your account
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts25
+ Delete my accountDelete my account
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26
+
Your account is deleted.Your account is deleted.
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32
+
Interface settings updated.Interface settings updated.
-
-
- src/app/shared/shared-user-settings/user-interface-settings.component.ts74src/app/shared/shared-user-settings/user-interface-settings.component.ts81
+ src/app/shared/shared-user-settings/user-interface-settings.component.ts74
+ src/app/shared/shared-user-settings/user-interface-settings.component.ts81
+
New video from your subscriptionsNové video od sledovaných kanálů
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts32
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts32
+
New comment on your videoNový komentář u Vašeho videa
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts33
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts33
+
New abuseNew abuse
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts34
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts34
+
Video blocked automatically waiting reviewVideo blocked automatically waiting review
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts35
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts35
+
One of your video is blocked/unblockedOne of your video is blocked/unblocked
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts36
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts36
+
Video published (after transcoding/scheduled update)Video bude po překódování a/nebo naplánované aktualizaci publikováno
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts37
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts37
+
Video import finishedImport videa byl dokončen
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts38
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts38
+
A new user registered on your instanceVe Vaší instanci je nově registrovaný uživatel
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts39
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts39
+
You or your channel(s) has a new followerVy nebo Vaše kanály mají nového sledujícího
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts40
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts40
+
Someone mentioned you in video commentsNěkdo Vás označil v komentáři pod některém z videí
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts41
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts41
+
Your instance has a new followerVaše instance má nového sledujícího
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts42
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts42
+
Your instance automatically followed another instanceYour instance automatically followed another instance
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts43
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts43
+
An abuse report received a new messageAn abuse report received a new message
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts44
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts44
+
One of your abuse reports has been accepted or rejected by moderatorsOne 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
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts45
+
Preferences savedPreferences saved
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts92
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts92
+
Profile updated.Profil aktualizován.
-
- 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.html11,13
@@ -7301,13 +7611,18 @@ channel with the same name ()!
Avatar changed.Avatar změněn.
-
-
- src/app/+my-account/my-account-settings/my-account-settings.component.ts44src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts107
- avataravatar
-
- src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts114
- Avatar deleted.Avatar deleted.
+ src/app/+my-account/my-account-settings/my-account-settings.component.ts44
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts107
+
+
+ avatar
+ avatar
+ src/app/+my-account/my-account-settings/my-account-settings.component.ts51
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts114
+
+
+ Avatar deleted.
+ Avatar deleted.src/app/+my-account/my-account-settings/my-account-settings.component.ts61
@@ -7317,89 +7632,92 @@ channel with the same name ()!
124
-
Unknown languageUnknown language
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts57
+ src/app/shared/shared-user-settings/user-video-settings.component.ts57
+ 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.ts102
+ src/app/shared/shared-user-settings/user-video-settings.component.ts102
+
You need to enable at least 1 video language.You need to enable at least 1 video language.
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts107
+ src/app/shared/shared-user-settings/user-video-settings.component.ts107
+
Video settings updated.Video settings updated.
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts133
+ src/app/shared/shared-user-settings/user-video-settings.component.ts133
+
Display/Video settings updated.Display/Video settings updated.
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts140
+ src/app/shared/shared-user-settings/user-video-settings.component.ts140
+
Video channel created.
- Videokanál
- vytvořen.
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts57
+ Videokanál vytvořen.
+ src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts57
+
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.ts63
+ src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts63
+
Video channel updated.
- Videokanál
- aktualizován.
-
-
- src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts94
+ Videokanál aktualizován.
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts94
+
Please type the display name of the video channel () to confirmPlease type the display name of the video channel (
) to confirm
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts67
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts67
+
Video channel deleted.
- Videokanál
- odstraněn.
-
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts79
+ Videokanál odstraněn.
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts79
+
Views for the dayViews for the day
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts98
- Update video channelUpdate video channel
-
- src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts31
- Not foundNot 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
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts98
+
+
+ Update video channel
+ Update video channel
+ src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts31
+
+
+ Not found
+ Not found
+ src/app/+page-not-found/page-not-found-routing.module.ts14
+
+
+ URL parameter is missing in URL parameters
+ URL parameter is missing in URL parameterssrc/app/+remote-interaction/remote-interaction.component.ts25
-
- Cannot access to the remote resourceCannot access to the remote resource
+
+
+ Cannot access to the remote resource
+ Cannot access to the remote resourcesrc/app/+remote-interaction/remote-interaction.component.ts48
-
- Remote interactionRemote interaction
+
+
+ Remote interaction
+ Remote interactionsrc/app/+remote-interaction/remote-interaction-routing.module.ts13
@@ -7407,84 +7725,84 @@ channel with the same name ()!
Playlist created.
- Seznam
- vytvořen.
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts76
- CreateCreate
-
- src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts77
+ Seznam vytvořen.
+ src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts76
+
+
+ Create
+ Create
+ src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89
+ src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts77
+ Update playlistUpdate playlist
-
- src/app/+my-library/my-library-routing.module.ts67src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47
- NotificationsNotifications
-
- src/app/+my-account/my-account.component.ts55src/app/+my-account/my-account-routing.module.ts109
- ApplicationsApplications
-
- src/app/+my-account/my-account.component.ts60src/app/+my-account/my-account-routing.module.ts127
+ src/app/+my-library/my-library-routing.module.ts67
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47
+
+
+ Notifications
+ Notifications
+ src/app/+my-account/my-account.component.ts55
+ src/app/+my-account/my-account-routing.module.ts109
+
+
+ Applications
+ Applications
+ src/app/+my-account/my-account.component.ts60
+ src/app/+my-account/my-account-routing.module.ts127
+ Delete playlistDelete playlist
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts52
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts52
+
Playlist updated.
- Seznam
- aktualizován.
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts97
+ Seznam aktualizován.
+ src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts97
+
Do you really want to delete ?
- Opravdu chcete smazat seznam
- ?
-
-
-
- src/app/+my-library/my-videos/my-videos.component.ts130src/app/+my-library/my-video-playlists/my-video-playlists.component.ts49src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126
- Change ownershipChange ownership
-
- src/app/+my-library/my-videos/my-videos.component.ts167
+ Opravdu chcete smazat seznam ?
+ src/app/+my-library/my-videos/my-videos.component.ts130
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.ts49
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126
+
+
+ Change ownership
+ Change ownership
+ src/app/+my-library/my-videos/my-videos.component.ts167
+ Playlist deleted.
- Seznam
- smazán.
-
-
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts135
+ Seznam smazán.
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts135
+
My videosMoje videa
-
- src/app/+my-library/my-videos/my-videos.component.html4
- Ownership changesOwnership changes
-
- src/app/+my-library/my-videos/my-videos.component.html16
+ src/app/+my-library/my-videos/my-videos.component.html4
+
+
+ Ownership changes
+ Ownership changes
+ src/app/+my-library/my-videos/my-videos.component.html16
+ Do you really want to delete videos?
- Opravdu chcete odstranit
- videí?
-
-
- src/app/+my-library/my-videos/my-videos.component.ts103
+ Opravdu chcete odstranit videí?
+ src/app/+my-library/my-videos/my-videos.component.ts103
+
-
- videos deleted.
-
+ videos deleted. videí odstraněno.
-
- src/app/+my-library/my-videos/my-videos.component.ts120
+ src/app/+my-library/my-videos/my-videos.component.ts120
+
- Do you really want to delete
- ?
-
+ Do you really want to delete ? Opravdu chcete odstranit
?
@@ -7495,87 +7813,95 @@ channel with the same name ()!
Video deleted.
- Video
- odstraněno.
-
-
-
- src/app/+my-library/my-videos/my-videos.component.ts138src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214
+ Video odstraněno.
+ src/app/+my-library/my-videos/my-videos.component.ts138
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214
+
Ownership change request sent.Ownership change request sent.
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.ts64
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.ts64
+
My channelsMoje kanály
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.html4
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html4
+
Search your channelsSearch your channels
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.html11
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html11
+
My playlistsMoje seznamy
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.html4
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html4
+
My subscriptionsMoje odběry
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html4
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html4
+
Search your subscriptionsSearch your subscriptions
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html11
- You don't have any subscription yet.You don't have any subscription yet.
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html11
+
+
+ You don't have any subscription yet.
+ You don't have any subscription yet.src/app/+my-library/my-subscriptions/my-subscriptions.component.html18
-
-
My abuse reportsMy abuse reports
-
- src/app/+my-account/my-account-routing.module.ts118
+ src/app/+my-account/my-account-routing.module.ts118
+
Ownership changesOwnership changes
-
- src/app/+my-library/my-library-routing.module.ts108
- My video historyMy video history
-
- src/app/+my-library/my-library-routing.module.ts118
- ChannelsChannels
-
- src/app/+my-library/my-library.component.ts47
- VideosVideos
-
- src/app/+my-library/my-library.component.ts54
- PlaylistsPlaylists
-
- src/app/+my-library/my-library.component.ts61
-
-
+ src/app/+my-library/my-library-routing.module.ts108
+
+
+ My video history
+ My video history
+ src/app/+my-library/my-library-routing.module.ts118
+
+
+ Channels
+ Channels
+ src/app/+my-library/my-library.component.ts47
+
+
+ Videos
+ Videos
+ src/app/+my-library/my-library.component.ts54
+
+
+ Playlists
+ Playlists
+ src/app/+my-library/my-library.component.ts61
+ max sizemax size
-
-
- src/app/shared/shared-forms/preview-upload.component.ts39src/app/shared/shared-main/account/actor-avatar-info.component.ts40
- Maximize editorMaximize editor
+ src/app/shared/shared-forms/preview-upload.component.ts39
+ src/app/shared/shared-main/account/actor-avatar-info.component.ts40
+
+
+ Maximize editor
+ Maximize editorsrc/app/shared/shared-forms/markdown-textarea.component.ts38
-
- Exit maximized editorExit maximized editor
+
+
+ Exit maximized editor
+ Exit maximized editorsrc/app/shared/shared-forms/markdown-textarea.component.ts39
@@ -7584,492 +7910,488 @@ channel with the same name ()!
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.ts126
+ src/app/+signup/+register/register.component.ts126
+ You are now logged in as !
- Nyní jste přihlášen/a jako
- !
-
-
- src/app/+signup/+register/register.component.ts134
+ Nyní jste přihlášen/a jako !
+ src/app/+signup/+register/register.component.ts134
+
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.ts45
+ Email s ověřovacím odkazem zaslán na .
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts45
+
Unable to find user id or verification string.Nelze najít uživatelovo id nebo verifikační řetězec.
-
-
- src/app/+reset-password/reset-password.component.ts38src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33
+ src/app/+reset-password/reset-password.component.ts38
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33
+
Published videosPublikovaná videa
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts42
- Published 1 videoPublished 1 video
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts86
-
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts42
+
+
+ Published 1 video
+ Published 1 video
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts86
+ Subscribe to the accountOdebírat účet
-
-
- src/app/+video-channels/video-channels.component.ts64src/app/+videos/+video-watch/video-watch.component.ts953
+ src/app/+video-channels/video-channels.component.ts64
+ src/app/+videos/+video-watch/video-watch.component.ts953
+
VIDEO PLAYLISTSVIDEO PLAYLISTS
-
- src/app/+video-channels/video-channels.component.ts70
+ src/app/+video-channels/video-channels.component.ts70
+
Focus the search barZaměřit na vyhledávací pole
-
- src/app/app.component.ts313
+ src/app/app.component.ts313
+
Toggle the left menuToggle the left menu
-
- src/app/app.component.ts318
+ src/app/app.component.ts318
+
Go to the discover videos pageGo to the discover videos page
-
- src/app/app.component.ts323
+ src/app/app.component.ts323
+
Go to the trending videos pageGo to the trending videos page
-
- src/app/app.component.ts328
+ src/app/app.component.ts328
+
Go to the recently added videos pageGo to the recently added videos page
-
- src/app/app.component.ts333
+ src/app/app.component.ts333
+
Go to the local videos pageGo to the local videos page
-
- src/app/app.component.ts338
+ src/app/app.component.ts338
+
Go to the videos upload pageGo to the videos upload page
-
- src/app/app.component.ts343
+ src/app/app.component.ts343
+
Go to my subscriptionsGo to my subscriptions
-
- src/app/core/auth/auth.service.ts64
+ src/app/core/auth/auth.service.ts64
+
Go to my videosGo to my videos
-
- src/app/core/auth/auth.service.ts68
+ src/app/core/auth/auth.service.ts68
+
Go to my importsGo to my imports
-
- src/app/core/auth/auth.service.ts72
+ src/app/core/auth/auth.service.ts72
+
Go to my channelsGo to my channels
-
- 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: .
+ 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.Musíte se znovu připojit.
-
- 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
+ src/app/core/hotkeys/hotkeys.component.ts11
+
SuccessÚspěšně
-
- src/app/core/notification/notifier.service.ts25
+ src/app/core/notification/notifier.service.ts25
+
Incorrect username or password.Incorrect username or password.
-
- src/app/+login/login.component.ts164
+ src/app/+login/login.component.ts164
+
Your account is blocked.Your account is blocked.
-
- src/app/+login/login.component.ts165
-
+ src/app/+login/login.component.ts165
+
any languageany language
-
- src/app/menu/menu.component.ts251
- ON ON
-
- src/app/menu/menu.component.html123
+ src/app/menu/menu.component.ts251
+
+
+ ON
+ ON
+ src/app/menu/menu.component.html123
+ hidehide
-
- src/app/menu/menu.component.ts284
+ src/app/menu/menu.component.ts284
+
blurblur
-
- src/app/menu/menu.component.ts288
+ src/app/menu/menu.component.ts288
+
displaydisplay
-
- src/app/menu/menu.component.ts292
+ src/app/menu/menu.component.ts292
+
UnknownUnknown
-
- src/app/menu/menu.component.ts197
+ src/app/menu/menu.component.ts197
+
Your password has been successfully reset!Vaše heslo bylo úspěšně resetováno!
-
- src/app/+reset-password/reset-password.component.ts47
+ src/app/+reset-password/reset-password.component.ts47
+
AnyAny
-
-
- src/app/+search/search-filters.component.ts38src/app/+search/search-filters.component.ts61
+ src/app/+search/search-filters.component.ts38
+ src/app/+search/search-filters.component.ts61
+
TodayDnes
-
-
- src/app/+search/search-filters.component.ts42src/app/shared/shared-video-miniature/abstract-video-list.ts116src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts70
- YesterdayYesterday
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts117
- This weekThis week
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts118
- This monthThis month
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts119
- Last monthLast month
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts120
- OlderOlder
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts121
- Cannot load more videos. Try again later.Cannot load more videos. Try again later.
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts198
+ src/app/+search/search-filters.component.ts42
+ src/app/shared/shared-video-miniature/abstract-video-list.ts116
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts70
+
+
+ Yesterday
+ Yesterday
+ src/app/shared/shared-video-miniature/abstract-video-list.ts117
+
+
+ This week
+ This week
+ src/app/shared/shared-video-miniature/abstract-video-list.ts118
+
+
+ This month
+ This month
+ src/app/shared/shared-video-miniature/abstract-video-list.ts119
+
+
+ Last month
+ Last month
+ src/app/shared/shared-video-miniature/abstract-video-list.ts120
+
+
+ Older
+ Older
+ src/app/shared/shared-video-miniature/abstract-video-list.ts121
+
+
+ Cannot load more videos. Try again later.
+ Cannot load more videos. Try again later.
+ src/app/shared/shared-video-miniature/abstract-video-list.ts198
+ Last 7 daysLast 7 days
-
- src/app/+search/search-filters.component.ts46
+ src/app/+search/search-filters.component.ts46
+
Last 30 daysLast 30 days
-
- src/app/+search/search-filters.component.ts50
+ src/app/+search/search-filters.component.ts50
+
Last 365 daysLast 365 days
-
- src/app/+search/search-filters.component.ts54
+ src/app/+search/search-filters.component.ts54
+
Short (< 4 min)Short (< 4 min)
-
- src/app/+search/search-filters.component.ts65
+ src/app/+search/search-filters.component.ts65
+
Medium (4-10 min)Medium (4-10 min)
-
- src/app/+search/search-filters.component.ts69
+ src/app/+search/search-filters.component.ts69
+
- Long (> 10 min)
- Long (> 10 min)
-
- src/app/+search/search-filters.component.ts73
+ Long (> 10 min)
+ Long (> 10 min)
+ src/app/+search/search-filters.component.ts73
+
RelevanceRelevance
-
- src/app/+search/search-filters.component.ts80
+ src/app/+search/search-filters.component.ts80
+
Publish datePublish date
-
- src/app/+search/search-filters.component.ts84
+ src/app/+search/search-filters.component.ts84
+
ViewsViews
-
- src/app/+search/search-filters.component.ts88
+ src/app/+search/search-filters.component.ts88
+
Search index is unavailable. Retrying with instance results instead.Search index is unavailable. Retrying with instance results instead.
-
- src/app/+search/search.component.ts171
+ src/app/+search/search.component.ts171
+
Search errorSearch error
-
- src/app/+search/search.component.ts172
- SearchSearch
-
- src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/+search/search.component.ts230src/app/+search/search-routing.module.ts15
+ src/app/+search/search.component.ts172
+
+
+ Search
+ Search
+ src/app/shared/shared-main/misc/simple-search-input.component.ts15
+ src/app/+search/search.component.ts230
+ src/app/+search/search-routing.module.ts15
+
-
- years ago
-
+ years ago před
lety
-
- src/app/shared/shared-main/angular/from-now.pipe.ts12
+ src/app/shared/shared-main/angular/from-now.pipe.ts12
+
-
- year ago
-
+ year ago year ago
-
- src/app/shared/shared-main/angular/from-now.pipe.ts13
+ src/app/shared/shared-main/angular/from-now.pipe.ts13
+
-
- months ago
-
+ months ago před
měsíci
-
- src/app/shared/shared-main/angular/from-now.pipe.ts16
+ src/app/shared/shared-main/angular/from-now.pipe.ts16
+
-
- month ago
-
+ month ago před
měsícem
-
- src/app/shared/shared-main/angular/from-now.pipe.ts17
+ src/app/shared/shared-main/angular/from-now.pipe.ts17
+
-
- weeks ago
-
+ weeks ago před
týdny
-
- src/app/shared/shared-main/angular/from-now.pipe.ts20
+ src/app/shared/shared-main/angular/from-now.pipe.ts20
+
-
- week ago
-
+ week ago před
týdnem
-
- src/app/shared/shared-main/angular/from-now.pipe.ts21
+ src/app/shared/shared-main/angular/from-now.pipe.ts21
+
-
- days ago
-
+ days ago před
dny
-
- src/app/shared/shared-main/angular/from-now.pipe.ts24
+ src/app/shared/shared-main/angular/from-now.pipe.ts24
+
-
- day ago
-
+ day ago před
dnem
-
- src/app/shared/shared-main/angular/from-now.pipe.ts25
+ src/app/shared/shared-main/angular/from-now.pipe.ts25
+
-
- hours ago
-
+ hours ago před
hodinami
-
- src/app/shared/shared-main/angular/from-now.pipe.ts28
+ src/app/shared/shared-main/angular/from-now.pipe.ts28
+
-
- hour ago
-
+ hour ago před
hodinou
-
- src/app/shared/shared-main/angular/from-now.pipe.ts29
+ src/app/shared/shared-main/angular/from-now.pipe.ts29
+
-
- min ago
-
+ min ago před
minutami
-
- src/app/shared/shared-main/angular/from-now.pipe.ts32
+ src/app/shared/shared-main/angular/from-now.pipe.ts32
+
just nowjust now
-
- src/app/shared/shared-main/angular/from-now.pipe.ts34
-
-
+ src/app/shared/shared-main/angular/from-now.pipe.ts34
+
-
- sec
-
+ sec sec
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts30
- Abuse reportsAbuse reports
-
- src/app/+my-account/my-account.component.ts41
- SettingsSettings
-
- src/app/+my-account/my-account.component.ts50
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts30
+
+
+ Abuse reports
+ Abuse reports
+ src/app/+my-account/my-account.component.ts41
+
+
+ Settings
+ Settings
+ src/app/+my-account/my-account.component.ts50
+ ConfirmPotvrdit
-
- src/app/modal/confirm.component.ts39
+ src/app/modal/confirm.component.ts39
+
Instance name is required.Jméno instance je vyžadováno.
-
- src/app/shared/form-validators/custom-config-validators.ts7
+ src/app/shared/form-validators/custom-config-validators.ts7
+
Short description should not be longer than 250 characters.Krátký popis by neměl přesahovat 250 znaků.
-
- src/app/shared/form-validators/custom-config-validators.ts14
+ src/app/shared/form-validators/custom-config-validators.ts14
+
Twitter username is required.Uživatelské jméno pro Twitter je vyžadováno.
-
- src/app/shared/form-validators/custom-config-validators.ts21
+ src/app/shared/form-validators/custom-config-validators.ts21
+
Previews cache size is required.Mezipaměť pro náhledy je vyžadována.
-
- src/app/shared/form-validators/custom-config-validators.ts28
+ src/app/shared/form-validators/custom-config-validators.ts28
+
Previews cache size must be greater than 1.Velikost nezipaměti pro náhledy musí být větší než 1.
-
- src/app/shared/form-validators/custom-config-validators.ts29
+ src/app/shared/form-validators/custom-config-validators.ts29
+
Previews cache size must be a number.Velikost mezipaměti pro náhledy musí být číslo.
-
- src/app/shared/form-validators/custom-config-validators.ts30
+ src/app/shared/form-validators/custom-config-validators.ts30
+
Captions cache size is required.Captions cache size is required.
-
- src/app/shared/form-validators/custom-config-validators.ts37
+ src/app/shared/form-validators/custom-config-validators.ts37
+
Captions cache size must be greater than 1.Captions cache size must be greater than 1.
-
- src/app/shared/form-validators/custom-config-validators.ts38
+ src/app/shared/form-validators/custom-config-validators.ts38
+
Captions cache size must be a number.Captions cache size must be a number.
-
- src/app/shared/form-validators/custom-config-validators.ts39
+ src/app/shared/form-validators/custom-config-validators.ts39
+
Signup limit is required.Limit registrací je vyžadován.
-
- src/app/shared/form-validators/custom-config-validators.ts46
+ src/app/shared/form-validators/custom-config-validators.ts46
+
Signup limit must be greater than 1.Limit registrací musí být větší než 1.
-
- src/app/shared/form-validators/custom-config-validators.ts47
+ src/app/shared/form-validators/custom-config-validators.ts47
+
Signup limit must be a number.Limit registrací musí být číslo.
-
- src/app/shared/form-validators/custom-config-validators.ts48
+ src/app/shared/form-validators/custom-config-validators.ts48
+
Admin email is required.E-mail administrátora je vyžadován.
-
- src/app/shared/form-validators/custom-config-validators.ts55
+ src/app/shared/form-validators/custom-config-validators.ts55
+
Admin email must be valid.E-mail administrátora musí být platný.
-
- src/app/shared/form-validators/custom-config-validators.ts56
+ src/app/shared/form-validators/custom-config-validators.ts56
+
Transcoding threads is required.Počet vláken pro překódování je vyžadován.
-
- src/app/shared/form-validators/custom-config-validators.ts63
+ src/app/shared/form-validators/custom-config-validators.ts63
+
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.ts64
+ src/app/shared/form-validators/custom-config-validators.ts64
+
Index URL should be a URLIndex URL should be a URL
-
- src/app/shared/form-validators/custom-config-validators.ts71
+ src/app/shared/form-validators/custom-config-validators.ts71
+
Search index URL should be a URLSearch index URL should be a URL
-
- src/app/shared/form-validators/custom-config-validators.ts78
+ src/app/shared/form-validators/custom-config-validators.ts78
+
Email is required.E-mail je vyžadován.
-
-
- src/app/shared/form-validators/user-validators.ts37src/app/shared/form-validators/instance-validators.ts7
+ src/app/shared/form-validators/user-validators.ts37
+ src/app/shared/form-validators/instance-validators.ts7
+
Email must be valid.E-mail musí být platný.
-
-
- src/app/shared/form-validators/user-validators.ts38src/app/shared/form-validators/instance-validators.ts8
- Handle is required.Handle is required.
+ src/app/shared/form-validators/user-validators.ts38
+ src/app/shared/form-validators/instance-validators.ts8
+
+
+ Handle is required.
+ Handle is required.src/app/shared/form-validators/user-validators.ts48
-
- Handle must be valid (chocobozzz@example.com).Handle must be valid (chocobozzz@example.com).
+
+
+ Handle must be valid (chocobozzz@example.com).
+ Handle must be valid (chocobozzz@example.com).src/app/shared/form-validators/user-validators.ts49
@@ -8078,358 +8400,375 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Your name is required.Your name is required.
-
- src/app/shared/form-validators/instance-validators.ts19
+ src/app/shared/form-validators/instance-validators.ts19
+ Your name must be at least 1 character long.Your name must be at least 1 character long.
-
- src/app/shared/form-validators/instance-validators.ts20
+ src/app/shared/form-validators/instance-validators.ts20
+
Your name cannot be more than 120 characters long.Your name cannot be more than 120 characters long.
-
- src/app/shared/form-validators/instance-validators.ts21
+ src/app/shared/form-validators/instance-validators.ts21
+
A subject is required.A subject is required.
-
- src/app/shared/form-validators/instance-validators.ts32
+ src/app/shared/form-validators/instance-validators.ts32
+
The subject must be at least 1 character long.The subject must be at least 1 character long.
-
- src/app/shared/form-validators/instance-validators.ts33
+ src/app/shared/form-validators/instance-validators.ts33
+
The subject cannot be more than 120 characters long.The subject cannot be more than 120 characters long.
-
- src/app/shared/form-validators/instance-validators.ts34
+ src/app/shared/form-validators/instance-validators.ts34
+
A message is required.A message is required.
-
- src/app/shared/form-validators/instance-validators.ts45
+ src/app/shared/form-validators/instance-validators.ts45
+
The message must be at least 3 characters long.The message must be at least 3 characters long.
-
- src/app/shared/form-validators/instance-validators.ts46
+ src/app/shared/form-validators/instance-validators.ts46
+
The message cannot be more than 5000 characters long.The message cannot be more than 5000 characters long.
-
- src/app/shared/form-validators/instance-validators.ts47
+ src/app/shared/form-validators/instance-validators.ts47
+
Username is required.Uživatelské jméno je vyžadováno.
-
-
- src/app/shared/form-validators/user-validators.ts12src/app/shared/form-validators/login-validators.ts9
+ src/app/shared/form-validators/user-validators.ts12
+ src/app/shared/form-validators/login-validators.ts9
+
Password is required.Heslo je vyžadováno.
-
-
- src/app/shared/form-validators/user-validators.ts58src/app/shared/form-validators/user-validators.ts69src/app/shared/form-validators/login-validators.ts18
+ src/app/shared/form-validators/user-validators.ts58
+ src/app/shared/form-validators/user-validators.ts69
+ src/app/shared/form-validators/login-validators.ts18
+
Confirmation of the password is required.Potvrzení hesla je vyžadováno.
-
- src/app/shared/form-validators/reset-password-validators.ts9
+ src/app/shared/form-validators/reset-password-validators.ts9
+
Username must be at least 1 character long.Username must be at least 1 character long.
-
- src/app/shared/form-validators/user-validators.ts13
+ src/app/shared/form-validators/user-validators.ts13
+
Username cannot be more than 50 characters long.Username cannot be more than 50 characters long.
-
- src/app/shared/form-validators/user-validators.ts14
+ src/app/shared/form-validators/user-validators.ts14
+
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.ts15
+ src/app/shared/form-validators/user-validators.ts15
+
Channel name is required.Channel name is required.
-
- src/app/shared/form-validators/user-validators.ts27
+ src/app/shared/form-validators/user-validators.ts27
+
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.ts28
+ src/app/shared/form-validators/user-validators.ts28
+
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.ts29
- 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.ts30
-
+ src/app/shared/form-validators/user-validators.ts29
+
+
+ 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.ts30
+ Password must be at least 6 characters long.Heslo musí mít délku minimálně 6 znaků.
-
-
- src/app/shared/form-validators/user-validators.ts70src/app/shared/form-validators/user-validators.ts81
+ src/app/shared/form-validators/user-validators.ts70
+ src/app/shared/form-validators/user-validators.ts81
+
Password cannot be more than 255 characters long.Heslo nemůže být delší než 255 znaků.
-
-
- src/app/shared/form-validators/user-validators.ts71src/app/shared/form-validators/user-validators.ts82
+ src/app/shared/form-validators/user-validators.ts71
+ src/app/shared/form-validators/user-validators.ts82
+
The new password and the confirmed password do not correspond.Nové heslo a jeho potvrzení nesouhlasí.
-
- src/app/shared/form-validators/user-validators.ts89
+ src/app/shared/form-validators/user-validators.ts89
+
Video quota is required.Limit na videa je vyžadován.
-
- src/app/shared/form-validators/user-validators.ts96
+ src/app/shared/form-validators/user-validators.ts96
+
Quota must be greater than -1.Limit na videa musí být větší než -1.
-
- src/app/shared/form-validators/user-validators.ts97
+ src/app/shared/form-validators/user-validators.ts97
+
Daily upload limit is required.Daily upload limit is required.
-
- src/app/shared/form-validators/user-validators.ts103
+ src/app/shared/form-validators/user-validators.ts103
+
Daily upload limit must be greater than -1.Daily upload limit must be greater than -1.
-
- src/app/shared/form-validators/user-validators.ts104
+ src/app/shared/form-validators/user-validators.ts104
+
User role is required.Role uživatele je vyžadována.
-
- src/app/shared/form-validators/user-validators.ts111
+ src/app/shared/form-validators/user-validators.ts111
+
Description must be at least 3 characters long.Popis musí mít délku minimálně 3 znaky.
-
-
-
- src/app/shared/form-validators/user-validators.ts123src/app/shared/form-validators/video-channel-validators.ts38src/app/shared/form-validators/video-playlist-validators.ts33
+ src/app/shared/form-validators/user-validators.ts123
+ 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.ts124src/app/shared/form-validators/video-channel-validators.ts39src/app/shared/form-validators/video-playlist-validators.ts34
+ src/app/shared/form-validators/user-validators.ts124
+ 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.ts131
+ src/app/shared/form-validators/user-validators.ts131
+
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.ts141
+ src/app/shared/form-validators/user-validators.ts141
+
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.ts142
+ src/app/shared/form-validators/user-validators.ts142
+
Display name is required.Zobrazované jméno je vyžadováno.
-
-
-
- src/app/shared/form-validators/user-validators.ts153src/app/shared/form-validators/video-channel-validators.ts26src/app/shared/form-validators/video-playlist-validators.ts12
+ src/app/shared/form-validators/user-validators.ts153
+ 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.ts154src/app/shared/form-validators/video-channel-validators.ts27src/app/shared/form-validators/video-playlist-validators.ts13
+ src/app/shared/form-validators/user-validators.ts154
+ 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.ts155src/app/shared/form-validators/video-channel-validators.ts28
+ src/app/shared/form-validators/user-validators.ts155
+ src/app/shared/form-validators/video-channel-validators.ts28
+
Report reason is required.Důvod nahlášení je vyžadován.
-
- src/app/shared/form-validators/abuse-validators.ts7
+ src/app/shared/form-validators/abuse-validators.ts7
+
Report reason must be at least 2 characters long.Důvod nahlášení musí mít délku minimálně 2 znaky.
-
- src/app/shared/form-validators/abuse-validators.ts8
+ src/app/shared/form-validators/abuse-validators.ts8
+
Report reason cannot be more than 3000 characters long.Report reason cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts9
+ src/app/shared/form-validators/abuse-validators.ts9
+
Moderation comment is required.Moderation comment is required.
-
- src/app/shared/form-validators/abuse-validators.ts16
+ src/app/shared/form-validators/abuse-validators.ts16
+
Moderation comment must be at least 2 characters long.Moderation comment must be at least 2 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts17
+ src/app/shared/form-validators/abuse-validators.ts17
+
Moderation comment cannot be more than 3000 characters long.Moderation comment cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts18
+ src/app/shared/form-validators/abuse-validators.ts18
+
Abuse message is required.Abuse message is required.
-
- src/app/shared/form-validators/abuse-validators.ts25
+ src/app/shared/form-validators/abuse-validators.ts25
+
Abuse message must be at least 2 characters long.Abuse message must be at least 2 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts26
+ src/app/shared/form-validators/abuse-validators.ts26
+
Abuse message cannot be more than 3000 characters long.Abuse message cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts27
+ src/app/shared/form-validators/abuse-validators.ts27
+
The channel is required.The channel is required.
-
- src/app/shared/form-validators/video-ownership-change-validators.ts7
+ src/app/shared/form-validators/video-ownership-change-validators.ts7
+
Block reason must be at least 2 characters long.Block reason must be at least 2 characters long.
-
- src/app/shared/form-validators/video-block-validators.ts7
+ src/app/shared/form-validators/video-block-validators.ts7
+
Block reason cannot be more than 300 characters long.Block reason cannot be more than 300 characters long.
-
- src/app/shared/form-validators/video-block-validators.ts8
+ src/app/shared/form-validators/video-block-validators.ts8
+
Video caption language is required.Video caption language is required.
-
- src/app/shared/form-validators/video-captions-validators.ts7
+ src/app/shared/form-validators/video-captions-validators.ts7
+
Video caption file is required.Video caption file is required.
-
- src/app/shared/form-validators/video-captions-validators.ts14
+ src/app/shared/form-validators/video-captions-validators.ts14
+
The username is required.The username is required.
-
- src/app/shared/form-validators/video-ownership-change-validators.ts14
+ src/app/shared/form-validators/video-ownership-change-validators.ts14
+
You can only transfer ownership to a local accountYou can only transfer ownership to a local account
-
- src/app/shared/form-validators/video-ownership-change-validators.ts15
+ src/app/shared/form-validators/video-ownership-change-validators.ts15
+
Name is required.Name is required.
-
- src/app/shared/form-validators/video-channel-validators.ts12
+ src/app/shared/form-validators/video-channel-validators.ts12
+
Name must be at least 1 character long.Name must be at least 1 character long.
-
- src/app/shared/form-validators/video-channel-validators.ts13
+ src/app/shared/form-validators/video-channel-validators.ts13
+
Name cannot be more than 50 characters long.Name cannot be more than 50 characters long.
-
- src/app/shared/form-validators/video-channel-validators.ts14
+ src/app/shared/form-validators/video-channel-validators.ts14
+
Name should be lowercase alphanumeric; dots and underscores are allowed.Name should be lowercase alphanumeric; dots and underscores are allowed.
-
- src/app/shared/form-validators/video-channel-validators.ts15
+ src/app/shared/form-validators/video-channel-validators.ts15
+
Support text must be at least 3 characters long.Text pro podporu musí mít délku minimálně 3 znaky.
-
- src/app/shared/form-validators/video-channel-validators.ts49
- Support text cannot be more than 1000 characters longSupport 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.
+ src/app/shared/form-validators/video-channel-validators.ts49
+
+
+ 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.
src/app/shared/shared-video-live/live-documentation-link.component.html2,4
-
Comment is required.Komentář je vyžadován.
-
- src/app/shared/form-validators/video-comment-validators.ts7
+ src/app/shared/form-validators/video-comment-validators.ts7
+
Comment must be at least 2 characters long.Komentář musí mít délku minimálně 2 znaky.
-
- src/app/shared/form-validators/video-comment-validators.ts8
+ src/app/shared/form-validators/video-comment-validators.ts8
+
Comment cannot be more than 3000 characters long.Komentář nesmí být delší než 3000 znaků.
-
- src/app/shared/form-validators/video-comment-validators.ts9
+ src/app/shared/form-validators/video-comment-validators.ts9
+
Display name cannot be more than 120 characters long.Zobrazované jméno nesmí být delší než 120 znaků.
-
- src/app/shared/form-validators/video-playlist-validators.ts14
+ src/app/shared/form-validators/video-playlist-validators.ts14
+
Privacy is required.Privacy is required.
-
- src/app/shared/form-validators/video-playlist-validators.ts23
+ src/app/shared/form-validators/video-playlist-validators.ts23
+
The channel is required when the playlist is public.The channel is required when the playlist is public.
-
- src/app/shared/form-validators/video-playlist-validators.ts41
- Live informationLive information
-
- src/app/shared/shared-video-live/live-stream-information.component.html3
- Live RTMP UrlLive RTMP Url
-
- src/app/shared/shared-video-live/live-stream-information.component.html19src/app/+videos/+video-edit/shared/video-edit.component.html218
- Live stream keyLive stream key
-
- src/app/shared/shared-video-live/live-stream-information.component.html24src/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
- Permanent livePermanent live
+ src/app/shared/form-validators/video-playlist-validators.ts41
+
+
+ Live information
+ Live information
+ src/app/shared/shared-video-live/live-stream-information.component.html3
+
+
+ Live RTMP Url
+ Live RTMP Url
+ 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.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.html27
+ src/app/+videos/+video-edit/shared/video-edit.component.html226
+
+
+ Permanent live
+ Permanent livesrc/app/shared/shared-video-live/live-stream-information.component.html10
-
- Replay will be savedReplay will be saved
+
+
+ Replay will be saved
+ Replay will be savedsrc/app/shared/shared-video-live/live-stream-information.component.html11
@@ -8438,518 +8777,497 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Video name is required.Jméno videa je vyžadováno.
-
- src/app/shared/form-validators/video-validators.ts7
+ src/app/shared/form-validators/video-validators.ts7
+ Video name must be at least 3 characters long.Jméno videa musí mít délku minimálně 3 znaky.
-
- src/app/shared/form-validators/video-validators.ts8
+ src/app/shared/form-validators/video-validators.ts8
+
Video name cannot be more than 120 characters long.Jméno videa nesmí být delší než 120 znaků.
-
- src/app/shared/form-validators/video-validators.ts9
+ src/app/shared/form-validators/video-validators.ts9
+
Video privacy is required.Ochrana soukromí videa je vyžadována.
-
- src/app/shared/form-validators/video-validators.ts16
+ src/app/shared/form-validators/video-validators.ts16
+
Video channel is required.Video kanál je vyžadován.
-
- src/app/shared/form-validators/video-validators.ts43
+ src/app/shared/form-validators/video-validators.ts43
+
Video description must be at least 3 characters long.Popis videa musí mít délku minimálně 3 znaky.
-
- src/app/shared/form-validators/video-validators.ts50
+ src/app/shared/form-validators/video-validators.ts50
+
Video description cannot be more than 10000 characters long.Popis videa nesmí být delší než 10000 znaků.
-
- src/app/shared/form-validators/video-validators.ts51
+ src/app/shared/form-validators/video-validators.ts51
+
A tag should be more than 2 characters long.Tag musí mít délku minimálně 2 znaky.
-
- src/app/shared/form-validators/video-validators.ts58
+ src/app/shared/form-validators/video-validators.ts58
+
A tag should be less than 30 characters long.Tag nesmí být delší než 30 znaků.
-
- src/app/shared/form-validators/video-validators.ts59
+ src/app/shared/form-validators/video-validators.ts59
+
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.ts66
- 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.ts66
+
+
+ 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.ts67
-
Video support must be at least 3 characters long.Text pro podporu videa musí mít délku minimálně 3 znaky.
-
- src/app/shared/form-validators/video-validators.ts74
+ src/app/shared/form-validators/video-validators.ts74
+
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.ts75
+ src/app/shared/form-validators/video-validators.ts75
+
A date is required to schedule video update.Datum k naplánování aktualizace videa je vyžadováno.
-
- src/app/shared/form-validators/video-validators.ts82
+ src/app/shared/form-validators/video-validators.ts82
+
This file is too large.This file is too large.
-
- src/app/shared/shared-forms/reactive-file.component.ts50
- PeerTube cannot handle this kind of file. Accepted extensions are }.PeerTube cannot handle this kind of file. Accepted extensions are }.
-
- src/app/shared/shared-forms/reactive-file.component.ts56
-
+ src/app/shared/shared-forms/reactive-file.component.ts50
+
+
+ PeerTube cannot handle this kind of file. Accepted extensions are }.
+ PeerTube cannot handle this kind of file. Accepted extensions are }.
+ src/app/shared/shared-forms/reactive-file.component.ts56
+ Add a new optionAdd a new option
-
- src/app/shared/shared-forms/select/select-checkbox.component.ts28
+ src/app/shared/shared-forms/select/select-checkbox.component.ts28
+
All unsaved data will be lost, are you sure you want to leave this page?Všechna neuložená data budou ztracena, opravdu chcete opustit tuto stránku?
-
- src/app/core/routing/can-deactivate-guard.service.ts19
+ src/app/core/routing/can-deactivate-guard.service.ts19
+
Sundayneděle
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11
+
Mondaypondělí
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12
+
Tuesdayúterý
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13
+
Wednesdaystředa
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14
+
Thursdayčtvrtek
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15
+
Fridaypátek
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16
+
Saturdaysobota
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts17
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts17
+
SunNeDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21
+
MonPoDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22
+
TueÚtDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23
+
WedStDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24
+
ThuČtDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25
+
FriPá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
+
SatSoDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts27
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts27
+
SuneDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31
+
MopoDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32
+
TuútDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33
+
WestDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34
+
ThčtDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35
+
Frpá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
+
SasoDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts37
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts37
+
Januaryleden
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41
+
Februaryúnor
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42
+
Marchbřezen
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43
+
Aprilduben
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44
+
Maykvěten
-
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60
+
Junečerven
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46
+
Julyčervenec
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47
+
Augustsrpen
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48
+
Septemberzáří
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49
+
Octoberříjen
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50
+
Novemberlistopad
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51
+
Decemberprosinec
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts52
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts52
+
JanledMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56
+
FebúnoMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57
+
MarbřeMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58
+
AprdubMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59
+
JunčerMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61
+
JulčvcMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62
+
AugsrpMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63
+
Sepzář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
+
OctříjMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65
+
NovlisMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66
+
DecproMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts67
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts67
+
ClearVymazat
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts72
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts72
+
yy-mm-dddd. mm. yyyyDate format in this locale.
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts88
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts88
+
Instance languagesInstance languages
-
- src/app/+videos/+video-edit/shared/video-edit.component.ts185
+ src/app/+videos/+video-edit/shared/video-edit.component.ts185
+
All languagesAll languages
-
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts38src/app/+videos/+video-edit/shared/video-edit.component.ts186
+ src/app/shared/shared-user-settings/user-video-settings.component.ts38
+ src/app/+videos/+video-edit/shared/video-edit.component.ts186
+
HiddenHidden
-
- src/app/shared/shared-instance/instance-features-table.component.ts50
+ src/app/shared/shared-instance/instance-features-table.component.ts50
+
Blurred with confirmation requestBlurred with confirmation request
-
- src/app/shared/shared-instance/instance-features-table.component.ts51
+ src/app/shared/shared-instance/instance-features-table.component.ts51
+
DisplayedDisplayed
-
- src/app/shared/shared-instance/instance-features-table.component.ts52
- ~ 1 minute~ 1 minute
-
- src/app/shared/shared-instance/instance-features-table.component.ts67
- ~ minutes~ minutes
-
- src/app/shared/shared-instance/instance-features-table.component.ts69
-
-
+ src/app/shared/shared-instance/instance-features-table.component.ts52
+
+
+ ~ 1 minute
+ ~ 1 minute
+ src/app/shared/shared-instance/instance-features-table.component.ts67
+
+
+ ~ minutes
+ ~ minutes
+ src/app/shared/shared-instance/instance-features-table.component.ts69
+
-
- of full HD videos
-
+ of full HD videos FullHD videí
-
- src/app/shared/shared-instance/instance-features-table.component.ts85
+ src/app/shared/shared-instance/instance-features-table.component.ts85
+
-
- of HD videos
-
+ of HD videos HD videí
-
- src/app/shared/shared-instance/instance-features-table.component.ts86
+ src/app/shared/shared-instance/instance-features-table.component.ts86
+
-
- of average quality videos
-
+ of average quality videos videí průměrné kvality
-
- src/app/shared/shared-instance/instance-features-table.component.ts87
+ src/app/shared/shared-instance/instance-features-table.component.ts87
+
-
- (channel page)
-
+ (channel page) (channel page)
-
-
- src/app/shared/shared-main/account/video-avatar-channel.component.ts20src/app/shared/shared-video-miniature/video-miniature.component.ts117
+ src/app/shared/shared-main/account/video-avatar-channel.component.ts20
+ src/app/shared/shared-video-miniature/video-miniature.component.ts117
+
-
- (account page)
-
+ (account page) (account page)
-
- src/app/shared/shared-main/account/video-avatar-channel.component.ts21
-
+ src/app/shared/shared-main/account/video-avatar-channel.component.ts21
+
EmphasisStyly písma
-
- src/app/shared/shared-main/misc/help.component.ts81
+ src/app/shared/shared-main/misc/help.component.ts81
+
LinksOdkazy
-
- src/app/shared/shared-main/misc/help.component.ts82
+ src/app/shared/shared-main/misc/help.component.ts82
+
New linesOdřádkování
-
- src/app/shared/shared-main/misc/help.component.ts83
+ src/app/shared/shared-main/misc/help.component.ts83
+
ListsSeznamy
-
- src/app/shared/shared-main/misc/help.component.ts84
+ src/app/shared/shared-main/misc/help.component.ts84
+
ImagesObrázky
-
- src/app/shared/shared-main/misc/help.component.ts85
+ src/app/shared/shared-main/misc/help.component.ts85
+
-
- users banned.
-
+ users banned. uživatelů zablokováno.
-
- src/app/shared/shared-moderation/user-ban-modal.component.ts53
+ src/app/shared/shared-moderation/user-ban-modal.component.ts53
+
User banned.
- Uživatel
- zablokován.
-
-
- src/app/shared/shared-moderation/user-ban-modal.component.ts54
+ Uživatel zablokován.
+ src/app/shared/shared-moderation/user-ban-modal.component.ts54
+
Do you really want to unban ?
- Opravdu chcete odblokovat uživatele
- ?
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70
+ Opravdu chcete odblokovat uživatele ?
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70
+
User unbanned.
- Uživatel
- odblokován.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts76
+ Uživatel odblokován.
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts76
+
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.ts90
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts90
+
User deleted.
- Uživatel
- odstraněn.
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts96
+ Uživatel odstraněn.
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts96
+
User email set as verifiedUser
email set as verified
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts107
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts107
+
Account muted.
- Account
- muted.
-
-
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240src/app/shared/shared-moderation/user-moderation-dropdown.component.ts119
+ Účet ztišen.
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts119
+
- Instance
- muted.
-
+ Instance muted. Instance
muted.
@@ -8960,324 +9278,326 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Account muted by the instance.
- Account
- muted by the instance.
-
-
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts175src/app/shared/shared-abuse-list/abuse-list-table.component.ts429
+ Účet ztišen instancí.
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts175
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts429
+
Mute serverMute server
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts317
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts317
+
Server muted by the instance.
- Server
- muted by the instance.
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts441
+ Server ztišen instancí.
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts441
+
Add a message to communicate with the reporterAdd a message to communicate with the reporter
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.ts100
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.ts100
+
Add a message to communicate with the moderation teamAdd a message to communicate with the moderation team
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.ts103
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.ts103
+
Account unmuted by the instance.Account
unmuted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts189
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts189
+
Instance muted by the instance.Instance
muted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts203
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts203
+
Instance unmuted by the instance.Instance
unmuted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts217
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts217
+
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.ts228
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts228
+
Delete account commentsDelete account comments
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts229
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts229
+
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.ts235
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts235
+
Edit userEdit user
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts263
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts263
+
Change quota, role, and more.Change quota, role, and more.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264
+
Delete userDelete user
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts268
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts268
+
Unban userUnban user
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts279
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts279
+
Allow the user to login and create videos/comments againAllow the user to login and create videos/comments again
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts280
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts280
+
Mute this accountMute this account
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts297
- 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.ts298
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts297
+
+
+ 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.ts298
+ Unmute this accountUnmute this account
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts303
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts303
+
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.ts304
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts304
+
Mute the instanceMute the instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts309
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts309
+
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.ts310
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts310
+
Unmute the instanceUnmute the instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts315
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts315
+
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.ts316
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts316
+
Remove comments from your videosRemove comments from your videos
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts321
- 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.ts322
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts321
+
+
+ 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.ts322
+ Mute this account by your instanceMute this account by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts333
- 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.ts334
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts333
+
+
+ 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.ts334
+ Unmute this account by your instanceUnmute this account by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339
- 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.ts340
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339
+
+
+ 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.ts340
+ Mute the instance by your instanceMute the instance by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351
- 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.ts352
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351
+
+
+ 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.ts352
+ Unmute the instance by your instanceUnmute the instance by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357
+
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.ts358
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts358
+
Remove comments from your instanceRemove comments from your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts368
- 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.ts369
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts368
+
+
+ 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.ts369
+ Violent or repulsiveViolent or repulsive
-
- src/app/shared/shared-moderation/abuse.service.ts139
+ src/app/shared/shared-moderation/abuse.service.ts139
+
Contains offensive, violent, or coarse language or iconography.Contains offensive, violent, or coarse language or iconography.
-
- src/app/shared/shared-moderation/abuse.service.ts140
+ src/app/shared/shared-moderation/abuse.service.ts140
+
Hateful or abusiveHateful or abusive
-
- src/app/shared/shared-moderation/abuse.service.ts144
+ src/app/shared/shared-moderation/abuse.service.ts144
+
Contains abusive, racist or sexist language or iconography.Contains abusive, racist or sexist language or iconography.
-
- src/app/shared/shared-moderation/abuse.service.ts145
+ src/app/shared/shared-moderation/abuse.service.ts145
+
Spam, ad or false newsSpam, ad or false news
-
- src/app/shared/shared-moderation/abuse.service.ts149
+ src/app/shared/shared-moderation/abuse.service.ts149
+
Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.
-
- src/app/shared/shared-moderation/abuse.service.ts150
+ src/app/shared/shared-moderation/abuse.service.ts150
+
Privacy breach or doxxingPrivacy breach or doxxing
-
- src/app/shared/shared-moderation/abuse.service.ts154
+ src/app/shared/shared-moderation/abuse.service.ts154
+
Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).
-
- src/app/shared/shared-moderation/abuse.service.ts155
+ src/app/shared/shared-moderation/abuse.service.ts155
+
Infringes your copyright wrt. the regional laws with which the server must comply.Infringes your copyright wrt. the regional laws with which the server must comply.
-
- src/app/shared/shared-moderation/abuse.service.ts160
+ src/app/shared/shared-moderation/abuse.service.ts160
+
Breaks server rulesBreaks server rules
-
- src/app/shared/shared-moderation/abuse.service.ts164
+ src/app/shared/shared-moderation/abuse.service.ts164
+
Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.
-
- src/app/shared/shared-moderation/abuse.service.ts165
+ src/app/shared/shared-moderation/abuse.service.ts165
+
The above can only be seen in thumbnails.The above can only be seen in thumbnails.
-
- src/app/shared/shared-moderation/abuse.service.ts174
- CaptionsCaptions
-
- src/app/shared/shared-moderation/abuse.service.ts178src/app/shared/shared-abuse-list/abuse-details.component.ts28
+ src/app/shared/shared-moderation/abuse.service.ts174
+
+
+ Captions
+ Captions
+ src/app/shared/shared-moderation/abuse.service.ts178
+ src/app/shared/shared-abuse-list/abuse-details.component.ts28
+ The above can only be seen in captions (please describe which).The above can only be seen in captions (please describe which).
-
- src/app/shared/shared-moderation/abuse.service.ts179
-
+ src/app/shared/shared-moderation/abuse.service.ts179
+
Too many attempts, please try again after minutes.
- Příliš mnoho pokusů, zkuste to prosím znovu za
- minut.
-
-
- src/app/core/rest/rest-extractor.service.ts67
+ Příliš mnoho pokusů, zkuste to prosím znovu za minut.
+ src/app/core/rest/rest-extractor.service.ts67
+
Too many attempts, please try again later.Příliš mnoho pokusů, zkuste to prosím později.
-
- src/app/core/rest/rest-extractor.service.ts69
+ src/app/core/rest/rest-extractor.service.ts69
+
Server error. Please retry later.Chyba serveru. Zkuste to prosím později.
-
- 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
. You will be notified of all their new videos.
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts109
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts109
+
Subscribed to . You will be notified of all their new videos.Subscribed to
. You will be notified of all their new videos.
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts110
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts110
+
SubscribedOdebíráte
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts112
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts112
+
- Unsubscribed from all channels of
-
-
+ Unsubscribed from all channels of Unsubscribed from all channels of
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts139
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts139
+
- Unsubscribed from
-
-
+ Unsubscribed from Již neodebíráte kanál
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts140
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts140
+
UnsubscribedOdběr zrušen
-
- 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
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts142
+
+
+ Multiple ways to subscribe to the current channel
+ Multiple ways to subscribe to the current channelsrc/app/shared/shared-user-subscription/subscribe-button.component.html44
-
- Open subscription dropdownOpen subscription dropdown
+
+
+ Open subscription dropdown
+ Open subscription dropdownsrc/app/shared/shared-user-subscription/subscribe-button.component.html46
@@ -9286,190 +9606,212 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
ModeratorModerator
-
- src/app/core/users/user.service.ts394
+ src/app/core/users/user.service.ts394
+
- Video removed from
-
-
+ Video removed from Video removed from
-
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts98src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts98
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307
+
Video added in at timestamps
- Video added in
- at timestamps
-
-
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts377
+ Video přidáno do v časových známkách
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts377
+
- Video added in
-
-
+ Video added in Video added in
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts378
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts378
+
Timestamps updatedTimestamps updated
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts117src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273
- Starts at Starts at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts140src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
- Stops at Stops at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts141
- and stops at and stops at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
-
-
-
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts117
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273
+
+
+ Starts at
+ Starts at
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts140
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
+
+
+ Stops at
+ Stops at
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts141
+
+
+ and stops at
+ and stops at
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
+ Delete videoDelete video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts366
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts366
+
Actions for the commentActions for the comment
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts395
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts395
+
Delete commentDelete comment
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts401
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts401
+
Do you really want to delete this comment?Do you really want to delete this comment?
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts405src/app/+videos/+video-watch/comment/video-comments.component.ts168
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts405
+ src/app/+videos/+video-watch/comment/video-comments.component.ts168
+
Comment deleted.Comment deleted.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts413
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts413
+
EncoderEncoder
-
- src/app/shared/shared-video-miniature/video-download.component.ts145
+ src/app/shared/shared-video-miniature/video-download.component.ts145
+
Format nameFormat name
-
- src/app/shared/shared-video-miniature/video-download.component.ts146
+ src/app/shared/shared-video-miniature/video-download.component.ts146
+
SizeSize
-
- src/app/shared/shared-video-miniature/video-download.component.ts147
+ src/app/shared/shared-video-miniature/video-download.component.ts147
+
BitrateBitrate
-
-
- src/app/shared/shared-video-miniature/video-download.component.ts149src/app/shared/shared-video-miniature/video-download.component.ts172
+ src/app/shared/shared-video-miniature/video-download.component.ts149
+ src/app/shared/shared-video-miniature/video-download.component.ts172
+
CodecCodec
-
- src/app/shared/shared-video-miniature/video-download.component.ts169
+ src/app/shared/shared-video-miniature/video-download.component.ts169
+
CopiedZkopírováno
-
-
- src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts136
- CopyCopy
-
-
- 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.ts47
+ src/app/shared/shared-video-miniature/video-download.component.ts136
+
+
+ Copy
+ Copy
+ src/app/shared/shared-forms/input-toggle-hidden.component.html15
+ src/app/shared/shared-forms/input-toggle-hidden.component.html15
+ Video reported.Video nahlášeno.
-
- src/app/shared/shared-moderation/report-modals/video-report.component.ts110
+ src/app/shared/shared-moderation/report-modals/video-report.component.ts110
+
Do you really want to delete this video?Opravdu chcete odstranit toto video?
-
-
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203src/app/shared/shared-abuse-list/abuse-list-table.component.ts370src/app/+admin/moderation/video-block-list/video-block-list.component.ts78
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts370
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts78
+
Video deleted.Video deleted.
-
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts378src/app/+admin/moderation/video-block-list/video-block-list.component.ts86
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts378
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts86
+
Actions for the reporterActions for the reporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts305
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts305
+
Mute reporterMute reporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts311
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts311
+
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
- DownloadDownload
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272
- Display live informationDisplay live information
-
- src/app/+my-library/my-videos/my-videos.component.ts161src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278
- UpdateUpdate
-
- src/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.ts284src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts146
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226
+
+
+ Download
+ Download
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272
+
+
+ Display live information
+ Display live information
+ src/app/+my-library/my-videos/my-videos.component.ts161
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278
+
+
+ Update
+ Update
+ 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
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts146
+ BlockBlock
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts290
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts290
+
Save to playlistSave to playlist
-
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264src/app/+videos/+video-watch/video-watch.component.ts135
- 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/video-watch.component.ts220
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264
+ src/app/+videos/+video-watch/video-watch.component.ts135
+
+
+ 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/video-watch.component.ts220
+ MirrorMirror
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302
- ReportReport
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314
- RemoveRemove
-
- src/app/+videos/+video-watch/comment/video-comment.component.ts181
- Remove & re-draftRemove & re-draft
-
- src/app/+videos/+video-watch/comment/video-comment.component.ts189
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302
+
+
+ Report
+ Report
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314
+
+
+ Remove
+ Remove
+ src/app/+videos/+video-watch/comment/video-comment.component.ts181
+
+
+ Remove & re-draft
+ Remove & re-draft
+ src/app/+videos/+video-watch/comment/video-comment.component.ts189
+ Mute accountMute account
-
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322src/app/shared/shared-abuse-list/abuse-list-table.component.ts287
- Open video actionsOpen video actions
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts287
+
+
+ Open video actions
+ Open video actionssrc/app/shared/shared-video-miniature/video-actions-dropdown.component.html4
@@ -9482,507 +9824,615 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Mute server accountMute server account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts293
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts293
+ ReportNahlásit
-
- src/app/shared/shared-abuse-list/abuse-details.component.html65
+ src/app/shared/shared-abuse-list/abuse-details.component.html65
+
Reported partReported part
-
- src/app/shared/shared-abuse-list/abuse-details.component.html83
+ src/app/shared/shared-abuse-list/abuse-details.component.html83
+
NoteNote
-
- src/app/shared/shared-abuse-list/abuse-details.component.html90
+ src/app/shared/shared-abuse-list/abuse-details.component.html90
+
The video was deletedThe video was deleted
-
- src/app/shared/shared-abuse-list/abuse-details.component.html99
+ src/app/shared/shared-abuse-list/abuse-details.component.html99
+
Comment:Comment:
-
- src/app/shared/shared-abuse-list/abuse-details.component.html105
+ src/app/shared/shared-abuse-list/abuse-details.component.html105
+
Messages with the reporterMessages with the reporter
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html4
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html4
+
Messages with the moderation teamMessages with the moderation team
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html5
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html5
+
-
- No messages for now.
-
+ No messages for now.
No messages for now.
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html28
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html28
+
Add a messageAdd a message
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html44
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html44
+
PublishedPublikováno
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts162
- Publication scheduled on Publication scheduled on
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts167
-
+ src/app/shared/shared-video-miniature/video-miniature.component.ts162
+
+
+ Publication scheduled on
+ Publication scheduled on
+ src/app/shared/shared-video-miniature/video-miniature.component.ts167
+ Waiting transcodingČekající překódování
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts171
+ src/app/shared/shared-video-miniature/video-miniature.component.ts171
+
To transcodeK překódování
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts175
+ src/app/shared/shared-video-miniature/video-miniature.component.ts175
+
To importK importování
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts179
+ src/app/shared/shared-video-miniature/video-miniature.component.ts179
+
Add to watch laterAdd to watch later
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.ts29
+ src/app/shared/shared-thumbnail/video-thumbnail.component.ts29
+
Remove from watch laterRemove from watch later
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.ts30
- LIVE ENDEDLIVE ENDED
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.html32
+ src/app/shared/shared-thumbnail/video-thumbnail.component.ts30
+
+
+ LIVE ENDED
+ LIVE ENDED
+ src/app/shared/shared-thumbnail/video-thumbnail.component.html32
+ Only I can see this videoOnly I can see this video
-
- src/app/shared/shared-main/video/video.service.ts375
+ src/app/shared/shared-main/video/video.service.ts375
+
Only shareable via a private linkOnly shareable via a private link
-
- src/app/shared/shared-main/video/video.service.ts379
+ src/app/shared/shared-main/video/video.service.ts379
+
Anyone can see this videoKdokoliv může vidět toto video
-
- src/app/shared/shared-main/video/video.service.ts383
+ src/app/shared/shared-main/video/video.service.ts383
+
Only users of this instance can see this videoOnly users of this instance can see this video
-
- src/app/shared/shared-main/video/video.service.ts387
- viewers viewers
+ src/app/shared/shared-main/video/video.service.ts387
+
+
+ viewers
+ viewerssrc/app/shared/shared-main/video/video.model.ts211
-
- views views
+
+
+ views
+ viewssrc/app/shared/shared-main/video/video.model.ts214
-
- CloseClose
-
- node_modules/@ng-bootstrap/src/alert/alert.ts55node_modules/@ng-bootstrap/src/alert/alert.ts70
- Slide of Slide of
+
+
+ Close
+ Close
+ node_modules/@ng-bootstrap/src/alert/alert.ts55
+ node_modules/@ng-bootstrap/src/alert/alert.ts70
+
+
+ Slide of
+ Slide of node_modules/@ng-bootstrap/src/carousel/carousel.ts114,118Currently selected slide number read by screen reader
-
- PreviousPrevious
-
- node_modules/@ng-bootstrap/src/carousel/carousel.ts132
- NextNext
-
- node_modules/@ng-bootstrap/src/carousel/carousel.ts147
- Previous monthPrevious month
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts34
- Next monthNext month
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts57
- Select monthSelect month
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49
- Select yearSelect year
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts72
- ««««
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts147
- ««
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts153
- »»
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts158
- »»»»
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts164
- FirstFirst
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts168
- PreviousPrevious
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts176
- NextNext
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts188
- LastLast
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts195
-
-
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts31
- HHHH
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46
- HoursHours
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts50
- MMMM
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts55
- MinutesMinutes
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts62
- Increment hoursIncrement hours
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts68
- Decrement hoursDecrement hours
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts73
- Increment minutesIncrement minutes
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts80
- Decrement minutesDecrement minutes
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts86
- SSSS
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts91
- SecondsSeconds
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts96
- Increment secondsIncrement seconds
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts103
- Decrement secondsDecrement seconds
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts109
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts131
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts154
- CloseClose
-
- node_modules/@ng-bootstrap/src/toast/toast.ts78
+
+
+ Previous
+ Previous
+ node_modules/@ng-bootstrap/src/carousel/carousel.ts132
+
+
+ Next
+ Next
+ node_modules/@ng-bootstrap/src/carousel/carousel.ts147
+
+
+ Previous month
+ Previous month
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts34
+
+
+ Next month
+ Next month
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts44
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts57
+
+
+ Select month
+ Select month
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49
+
+
+ Select year
+ Select year
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts72
+
+
+ ««
+ ««
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts147
+
+
+ «
+ «
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts153
+
+
+ »
+ »
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts158
+
+
+ »»
+ »»
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts164
+
+
+ First
+ First
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts168
+
+
+ Previous
+ Previous
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts176
+
+
+ Next
+ Next
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts188
+
+
+ Last
+ Last
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts195
+
+
+
+
+ node_modules/@ng-bootstrap/src/progressbar/progressbar.ts31
+
+
+ HH
+ HH
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46
+
+
+ Hours
+ Hours
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts50
+
+
+ MM
+ MM
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts55
+
+
+ Minutes
+ Minutes
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts62
+
+
+ Increment hours
+ Increment hours
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts68
+
+
+ Decrement hours
+ Decrement hours
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts73
+
+
+ Increment minutes
+ Increment minutes
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts80
+
+
+ Decrement minutes
+ Decrement minutes
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts86
+
+
+ SS
+ SS
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts91
+
+
+ Seconds
+ Seconds
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts96
+
+
+ Increment seconds
+ Increment seconds
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts103
+
+
+ Decrement seconds
+ Decrement seconds
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts109
+
+
+
+
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts131
+
+
+
+
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts154
+
+
+ Close
+ Close
+ node_modules/@ng-bootstrap/src/toast/toast.ts78
+ Video to import updated.Video to import updated.
-
-
- src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+
Your video was uploaded to your account and is private.Vaše video bylo nahráno na váš účet a je soukromé.
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts92
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts92
+
But associated data (tags, description...) will be lost, are you sure you want to leave this page?Ovšem přidružená data (štítky, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts93
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts93
+
Your video is not uploaded yet, are you sure you want to leave this page?Video ještě nebylo nahráno, opravdu chcete opustit tuto stránku?
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts95
- UploadUpload
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts115
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts95
+
+
+ Upload
+ Upload
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts115
+
- Upload
-
-
+ Upload Upload
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts117
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts117
+
Upload cancelledNahrávání zrušeno
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts143
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts143
+
Video published.Video publikováno
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts267
- Your video quota is exceeded with this video (
-video size: , used: , quota: )Your video quota is exceeded with this video (
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts267
+
+
+ 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.ts289
- Your daily video quota is exceeded with this video (
-video size: , used: , quota: )Your daily video quota is exceeded with this video (
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289
+
+
+ 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.ts309
-
-
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts309
+
You have unsaved changes! If you leave, your changes will be lost.Máte neuložené změny! Pokud odejdete, budou vaše změny ztraceny.
-
- src/app/+videos/+video-edit/video-update.component.ts94
+ src/app/+videos/+video-edit/video-update.component.ts94
+
Video updated.Video aktualizováno.
-
- src/app/+videos/+video-edit/video-update.component.ts142
+ src/app/+videos/+video-edit/video-update.component.ts142
+
Report commentReport comment
-
-
- src/app/shared/shared-moderation/report-modals/comment-report.component.ts51
+ src/app/shared/shared-moderation/report-modals/comment-report.component.ts51
+
- 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. The deletion will be sent to remote instances so they can reflect the change.
-
- src/app/+videos/+video-watch/comment/video-comments.component.ts171
- 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/comment/video-comments.component.ts173
- Delete and re-draftDelete and re-draft
-
- src/app/+videos/+video-watch/comment/video-comments.component.ts199
- 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/comment/video-comments.component.ts199
-
+ src/app/+videos/+video-watch/comment/video-comments.component.ts171
+
+
+ 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/comment/video-comments.component.ts173
+
+
+ Delete and re-draft
+ Delete and re-draft
+ src/app/+videos/+video-watch/comment/video-comments.component.ts199
+
+
+ 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/comment/video-comments.component.ts199
+ Stop autoplaying next videoStop autoplaying next video
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts203
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts203
+
Autoplay next videoAutoplay next video
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts204
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts204
+
Stop looping playlist videosStop looping playlist videos
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts209
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts209
+
Loop playlist videosLoop playlist videos
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts210
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts210
+
- 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.ts415
- RedirectionRedirection
-
- src/app/+videos/+video-watch/video-watch.component.ts416
-
+ 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.ts415
+
+
+ Redirection
+ Redirection
+ src/app/+videos/+video-watch/video-watch.component.ts416
+ This video contains mature or explicit content. Are you sure you want to watch it?Toto video obsahuje citlivý materiál. Opravdu jej chcete přehrát?
-
- src/app/+videos/+video-watch/video-watch.component.ts547
+ src/app/+videos/+video-watch/video-watch.component.ts547
+
Mature or explicit contentObsahuje citlivý materiál
-
- src/app/+videos/+video-watch/video-watch.component.ts548
+ src/app/+videos/+video-watch/video-watch.component.ts548
+
Up NextUp Next
-
- src/app/+videos/+video-watch/video-watch.component.ts600
- CancelCancel
-
- src/app/+videos/+video-watch/video-watch.component.ts601
+ src/app/+videos/+video-watch/video-watch.component.ts600
+
+
+ Cancel
+ Cancel
+ src/app/+videos/+video-watch/video-watch.component.ts601
+ Autoplay is suspendedAutoplay is suspended
-
- src/app/+videos/+video-watch/video-watch.component.ts602
+ src/app/+videos/+video-watch/video-watch.component.ts602
+
Enter/exit fullscreen (requires player focus)Enter/exit fullscreen (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts920
+ src/app/+videos/+video-watch/video-watch.component.ts920
+
Play/Pause the video (requires player focus)Play/Pause the video (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts921
+ src/app/+videos/+video-watch/video-watch.component.ts921
+
Mute/unmute the video (requires player focus)Mute/unmute the video (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts922
+ src/app/+videos/+video-watch/video-watch.component.ts922
+
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.ts924
+ src/app/+videos/+video-watch/video-watch.component.ts924
+
Increase the volume (requires player focus)Increase the volume (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts926
+ src/app/+videos/+video-watch/video-watch.component.ts926
+
Decrease the volume (requires player focus)Decrease the volume (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts927
+ src/app/+videos/+video-watch/video-watch.component.ts927
+
Seek the video forward (requires player focus)Seek the video forward (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts929
+ src/app/+videos/+video-watch/video-watch.component.ts929
+
Seek the video backward (requires player focus)Seek the video backward (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts930
+ src/app/+videos/+video-watch/video-watch.component.ts930
+
Increase playback rate (requires player focus)Increase playback rate (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts932
+ src/app/+videos/+video-watch/video-watch.component.ts932
+
Decrease playback rate (requires player focus)Decrease playback rate (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts933
+ src/app/+videos/+video-watch/video-watch.component.ts933
+
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.ts935
+ src/app/+videos/+video-watch/video-watch.component.ts935
+
Like the videoTo se mi líbí
-
- src/app/+videos/+video-watch/video-watch.component.ts943
+ src/app/+videos/+video-watch/video-watch.component.ts943
+
Dislike the videoTo se mi nelíbí
-
- src/app/+videos/+video-watch/video-watch.component.ts948
+ src/app/+videos/+video-watch/video-watch.component.ts948
+
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/recommendations/recommended-videos.component.ts59
+ src/app/+videos/+video-watch/recommendations/recommended-videos.component.ts59
+
- Recently addedRecently added
-
- src/app/+videos/video-list/video-recently-added.component.ts36
+ Recently added
+ Recently added
+ src/app/+videos/video-list/video-recently-added.component.ts36
+
Trending for the last 24 hoursTrendy posledních 24 hodin
-
- src/app/+videos/video-list/video-trending.component.ts46
+ src/app/+videos/video-list/video-trending.component.ts46
+
Trending videos are those totalizing the greatest number of views during the last 24 hoursTrending videos are those totalizing the greatest number of views during the last 24 hours
-
- src/app/+videos/video-list/video-trending.component.ts47
- Trending for the last daysTrending for the last days
+ src/app/+videos/video-list/video-trending.component.ts47
+
+
+ Trending for the last days
+ Trending for the last dayssrc/app/+videos/video-list/video-trending.component.ts51
-
- Trending videos are those totalizing the greatest number of views during the last daysTrending videos are those totalizing the greatest number of views during the last days
+
+
+ Trending videos are those totalizing the greatest number of views during the last days
+ Trending videos are those totalizing the greatest number of views during the last dayssrc/app/+videos/video-list/video-trending.component.ts52
-
-
Videos from your subscriptionsVidea od vašich odběrů
-
- src/app/+videos/video-list/video-user-subscriptions.component.ts42
- Copy feed URLCopy feed URL
+ src/app/+videos/video-list/video-user-subscriptions.component.ts42
+
+
+ Copy feed URL
+ Copy feed URLsrc/app/+videos/video-list/video-user-subscriptions.component.ts65
-
- Feed URL copiedFeed URL copied
-
- src/app/+videos/video-list/video-user-subscriptions.component.ts109
- SubscriptionsSubscriptions
-
- src/app/+my-library/my-library.component.ts66src/app/+videos/videos-routing.module.ts73src/app/+videos/video-list/video-user-subscriptions.component.ts46
- HistoryHistory
-
- src/app/+my-library/my-library.component.ts71
- Open actionsOpen actions
+
+
+ Feed URL copied
+ Feed URL copied
+ src/app/+videos/video-list/video-user-subscriptions.component.ts109
+
+
+ Subscriptions
+ Subscriptions
+ src/app/+my-library/my-library.component.ts66
+ src/app/+videos/videos-routing.module.ts73
+ src/app/+videos/video-list/video-user-subscriptions.component.ts46
+
+
+ History
+ History
+ src/app/+my-library/my-library.component.ts71
+
+
+ Open actions
+ Open actionssrc/app/shared/shared-main/buttons/action-dropdown.component.html4
-
- Local videosLocal videos
-
- src/app/+videos/videos-routing.module.ts86src/app/+videos/video-list/video-local.component.ts36
- Discover videosDiscover videos
-
- src/app/+videos/videos-routing.module.ts24
- Trending videosTrending videos
-
- src/app/+videos/videos-routing.module.ts33
- Recently added videosRecently added videos
-
- src/app/+videos/videos-routing.module.ts59
- Upload a videoUpload a video
-
- src/app/+videos/videos-routing.module.ts99
- Edit a videoEdit a video
-
- src/app/+videos/videos-routing.module.ts108
+
+
+ Local videos
+ Local videos
+ src/app/+videos/videos-routing.module.ts86
+ src/app/+videos/video-list/video-local.component.ts36
+
+
+ Discover videos
+ Discover videos
+ src/app/+videos/videos-routing.module.ts24
+
+
+ Trending videos
+ Trending videos
+ src/app/+videos/videos-routing.module.ts33
+
+
+ Recently added videos
+ Recently added videos
+ src/app/+videos/videos-routing.module.ts59
+
+
+ Upload a video
+ Upload a video
+ src/app/+videos/videos-routing.module.ts99
+
+
+ Edit a video
+ Edit a video
+ src/app/+videos/videos-routing.module.ts108
+
-
\ No newline at end of file
+
diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf
index 41243062d..fa9658661 100644
--- a/client/src/locale/angular.de-DE.xlf
+++ b/client/src/locale/angular.de-DE.xlf
@@ -381,8 +381,7 @@
src/app/shared/shared-video/video-views-counter.component.html3
-
+ src/app/shared/shared-video/video-views-counter.component.html
@@ -398,8 +397,7 @@
-
+ src/app/shared/shared-video/video-views-counter.component.html
@@ -408,7 +406,7 @@
Cannot fetch information of this remote account
- Cannot fetch information of this remote account
+ Informationen zu diesem Remote-Konto können nicht abgerufen werdensrc/app/shared/shared-user-subscription/remote-subscribe.component.ts60
@@ -529,8 +527,8 @@
src/app/shared/shared-forms/markdown-textarea.component.html19
- <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
- <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> kompatibel. Unterstützt:
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> kompatibel. Unterstützt:src/app/shared/shared-main/misc/help.component.ts75
@@ -545,7 +543,7 @@
Subscribe with a remote account:
- Subscribe with a remote account:
+ Mit einem Remote-Konto abonnieren:src/app/shared/shared-user-subscription/subscribe-button.component.html62
@@ -560,8 +558,10 @@
Subscribe with your local accountMit deinem lokalen Konto abonnierensrc/app/shared/shared-user-subscription/subscribe-button.component.html58
-
- Published videos matching ""Published videos matching ""
+
+
+ Published videos matching ""
+ Veröffentlicht Videos passend zu ""src/app/+accounts/account-search/account-search.component.ts89
@@ -594,7 +594,7 @@
You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
- You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
+ Sie können den Kanal über jede ActivityPub-fähige fediverse-Instanz (z. B. PeerTube, Mastodon oder Pleroma) abonnieren.src/app/shared/shared-user-subscription/remote-subscribe.component.html18,19
@@ -602,7 +602,7 @@
You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
- You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
+ Sie können damit über jede ActivityPub-fähige fediverse-Instanz (z. B. PeerTube, Mastodon oder Pleroma) interagieren.src/app/shared/shared-user-subscription/remote-subscribe.component.html26,27
@@ -894,16 +894,16 @@
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.
- Diese Instanz erlaubt eine Registrierung. Lesen sie sich trotzdem die RichtlinienRichtliniendurch, bevor sie sich ein Konto erstellen. Hier können sie auch nach einer anderen Instanz suchen, die ihren Wünschen entspricht: 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.
+ Diese Instanz erlaubt eine Registrierung. Lesen sie sich trotzdem die RichtlinienRichtliniendurch, bevor sie sich ein Konto erstellen. Hier können sie auch nach einer anderen Instanz suchen, die ihren Wünschen entspricht: https://joinpeertube.org/instances. src/app/+login/login.component.html60,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.
- Diese Instanz erlaubt zurzeit keine Registrierung, sie können sich die Richtlinien für mehr Details durchlesen, oder hier nach einer Instanz suchen, die Ihnen das Anlegen eines Kontos und das Hochladen von Videos erlaubt: 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.
+ Diese Instanz erlaubt zurzeit keine Registrierung, sie können sich die Richtlinien für mehr Details durchlesen, oder hier nach einer Instanz suchen, die Ihnen das Anlegen eines Kontos und das Hochladen von Videos erlaubt: https://joinpeertube.org/instances. src/app/+login/login.component.html65,67
@@ -972,8 +972,7 @@
src/app/+login/login.component.html103
- An email with the reset password instructions will be sent to .
-The link will expire within 1 hour.
+ An email with the reset password instructions will be sent to . The link will expire within 1 hour.Es wird eine E-Mail zum Zurücksetzen des Passworts an gesendet. Der Link wird in einer Stunde ablaufen.src/app/+login/login.component.ts126
@@ -1931,7 +1930,7 @@ Hilf mit PeerTube zu übersetzen!
src/app/+videos/+video-edit/shared/video-edit.component.html172
- Already uploaded ✔
+ Already uploaded ✔Bereits hochgeladen ✔src/app/+videos/+video-edit/shared/video-edit.component.html176
@@ -2065,12 +2064,12 @@ Hilf mit PeerTube zu übersetzen!
UpdateAktualisieren
-
-
-
-
-
- src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/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-add-components/video-go-live.component.html45
+ src/app/+videos/+video-edit/video-update.component.html3
+ src/app/+videos/+video-edit/video-update.component.html18
+ 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-add-components/video-go-live.component.html45
+
Select the file to uploadWähle die Datei zum Hochladen aus
@@ -2171,18 +2170,18 @@ Hilf mit PeerTube zu übersetzen!
Cannot create live because this instance have too many created livesKann kein Live-Übertragung erzeugen, da diese Instanz zu viele erzeugte Live-Übertragungen hat
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts91
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts91
+ Cannot create live because you created too many livesKann keine Live-Übertragung erzeugen, weil Sie zu viele Live-Übertragungen erzeugt haben
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts93
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts93
+
Live published.Live-Übertragung veröffentlicht.
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
+
Go LiveLive gehen
@@ -2665,7 +2664,7 @@ Hilf mit PeerTube zu übersetzen!
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).
+ Sie können mit einem Konto auf jeder ActivityPub-kompatiblen Instanz kommentieren (z. B. PeerTube/Mastodon/Pleroma-Konto).src/app/+videos/+video-watch/comment/video-comment-add.component.html60,61
@@ -3403,8 +3402,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/shared/shared-abuse-list/abuse-details.component.html7
-
-
+
+ src/app/shared/shared-abuse-list/abuse-details.component.html27
@@ -3490,8 +3489,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/shared/shared-abuse-list/abuse-details.component.html33
-
-
+
+ src/app/shared/shared-abuse-list/abuse-details.component.html52
@@ -3817,8 +3816,8 @@ Hilf mit PeerTube zu übersetzen!
- No jobs found.
- Keine Jobs gefunden.
+ No jobs found.
+ Keine Jobs gefunden.src/app/+admin/system/jobs/jobs.component.html95
@@ -3850,8 +3849,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/+admin/system/logs/logs.component.html38
- By ->
- Von ->
+ By ->
+ Von ->src/app/+admin/system/logs/logs.component.html46
@@ -4464,8 +4463,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html910
- Max simultaneous lives created on your instance (-1 for "unlimited")
- Maximal gleichzeitig erstellte Live-Übertragungen auf ihrer Instanz (-1 für "Unbegrenzt")
+ Max simultaneous lives created on your instance (-1 for "unlimited")
+ Maximal gleichzeitig erstellte Live-Übertragungen auf ihrer Instanz (-1 für "Unbegrenzt")src/app/+admin/config/edit-custom-config/edit-custom-config.component.html916
@@ -4474,8 +4473,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html919
- Max simultaneous lives created per user (-1 for "unlimited")
- Maximal gleichzeitig erstellte Live-Übertragungen pro Benutzer (-1 für "Unbegrenzt")
+ Max simultaneous lives created per user (-1 for "unlimited")
+ Maximal gleichzeitig erstellte Live-Übertragungen pro Benutzer (-1 für "Unbegrenzt")src/app/+admin/config/edit-custom-config/edit-custom-config.component.html924
@@ -4557,13 +4556,13 @@ Hilf mit PeerTube zu übersetzen!
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html742
- If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
- Wenn Sie auch die HLS-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziertWenn deaktiviert, bricht der Verbund mit PeerTube-Instanzen < 2. 1
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ Wenn Sie auch die HLS-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziertWenn deaktiviert, bricht der Verbund mit PeerTube-Instanzen < 2. 1src/app/+admin/config/edit-custom-config/edit-custom-config.component.html785
- 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
- Erfordert ffmpeg >= 4. 1Erzeugt HLS-Wiedergabelisten und fragmentierte MP4-Dateien, was zu einer besseren Wiedergabe als mit einfachem WebTorrent führt: Auflösungswechsel ist sanfterSchnellere Wiedergabe besonders bei langen VideosStabilere Wiedergabe (weniger Bugs/unendliches Laden)Wenn Sie auch die WebTorrent-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziert
+ 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
+ Erfordert ffmpeg >= 4. 1Erzeugt HLS-Wiedergabelisten und fragmentierte MP4-Dateien, was zu einer besseren Wiedergabe als mit einfachem WebTorrent führt: Auflösungswechsel ist sanfterSchnellere Wiedergabe besonders bei langen VideosStabilere Wiedergabe (weniger Bugs/unendliches Laden)Wenn Sie auch die WebTorrent-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziertsrc/app/+admin/config/edit-custom-config/edit-custom-config.component.html805
@@ -4583,7 +4582,7 @@ Hilf mit PeerTube zu übersetzen!
Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
- Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+ Ermöglicht das Hochladen von .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf oder .nut-Videos.src/app/+admin/config/edit-custom-config/edit-custom-config.component.html756
@@ -4688,18 +4687,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1077
- Write CSS code directly. Example: #custom-css
- color: red;
-
- Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email
- color: red;
-
-
- Schreiben Sie direkt CSS-Code. Beispiel: #custom-css color: Rot; Vorangestellt wird #custom-css um Stile außer Kraft zu setzen. Beispiel: #custom-css . eingeloggt-email color: red;
+ Write CSS code directly. Example: #custom-css color: red; Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email color: red;
+ Schreiben Sie direkt CSS-Code. Beispiel: #custom-css color: Rot; Vorangestellt wird #custom-css um Stile außer Kraft zu setzen. Beispiel: #custom-css . eingeloggt-email color: red; src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1096
@@ -4991,9 +4980,8 @@ Hilf mit PeerTube zu übersetzen!
src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26
- 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.
- Kurzer Text, der Nutzer über die Möglichkeiten, den Kanal zu unterstützen, informiert (Mitgliederplattform, etc.)<br /><br /> Beim Hochladen eines Videos wird das Unterstützerfeld automatisch hiermit gefüllt.
+ 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.
+ Kurzer Text, der Nutzer über die Möglichkeiten, den Kanal zu unterstützen, informiert (Mitgliederplattform, etc.)<br /><br /> Beim Hochladen eines Videos wird das Unterstützerfeld automatisch hiermit gefüllt.src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
@@ -5307,9 +5295,7 @@ Hilf mit PeerTube zu übersetzen!
src/app/+my-library/+my-video-channels/my-video-channels.component.html37
- Do you really want to delete ?
-It will delete videos uploaded in this channel, and you will not be able to create another
-channel with the same name ()!
+ Do you really want to delete ? It will delete videos uploaded in this channel, and you will not be able to create another channel with the same name ()!Wollen Sie wirklich löschen? Es löscht Videos, die in diesem Kanal hochgeladen wurden, und Sie können keinen weiteren Kanal mit demselben Namen () erstellen!src/app/+my-library/+my-video-channels/my-video-channels.component.ts63
@@ -5428,7 +5414,7 @@ channel with the same name ()!
Following instances ()
- Following instances ()
+ Folgende Instanzen ()src/app/+about/about-follows/about-follows.component.html16
@@ -5640,8 +5626,8 @@ channel with the same name ()!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 sind nicht öffentlich zugänglich: Da wir den Websocket-Transport verwenden, ist das Protokoll anders als bei klassischen BitTorrent-Trackern. Wenn Sie in einem Webbrowser sind, senden Sie ein Signal mit Ihrer IP-Adresse an den Tracker, der zufällig andere Peers auswählt, an die er die Informationen weiterleitet. Siehe dieses Dokument für weitere Informationen
+ 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 sind nicht öffentlich zugänglich: Da wir den Websocket-Transport verwenden, ist das Protokoll anders als bei klassischen BitTorrent-Trackern. Wenn Sie in einem Webbrowser sind, senden Sie ein Signal mit Ihrer IP-Adresse an den Tracker, der zufällig andere Peers auswählt, an die er die Informationen weiterleitet. Siehe dieses Dokument für weitere Informationen src/app/+about/about-peertube/about-peertube.component.html118,122
@@ -5887,9 +5873,11 @@ Erstelle mein Konto
Account videosVideos des Kontos
-
- src/app/+accounts/accounts-routing.module.ts48
- Search videos within accountSearch videos within account
+ src/app/+accounts/accounts-routing.module.ts48
+
+
+ Search videos within account
+ Videos im Konto suchensrc/app/+accounts/accounts-routing.module.ts61
@@ -5898,19 +5886,20 @@ Erstelle mein Konto
Account video channelsKanäle des Kontos
-
- src/app/+accounts/accounts-routing.module.ts30
+ src/app/+accounts/accounts-routing.module.ts30
+ About accountÜber das Konto
-
- src/app/+accounts/accounts-routing.module.ts39
+ src/app/+accounts/accounts-routing.module.ts39
+ Published videosVeröffentlichte Videos
-
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87src/app/+accounts/account-search/account-search.component.ts90src/app/+accounts/account-videos/account-videos.component.ts79
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87
+ src/app/+accounts/account-search/account-search.component.ts90
+ src/app/+accounts/account-videos/account-videos.component.ts79
+
Display all videos (private, unlisted or not yet published)Alle Videos anzeigen (privat, nicht aufgelistet oder noch nicht veröffentlicht)
@@ -5925,14 +5914,16 @@ Erstelle mein Konto
direct account followers direkte Kontofolgende
-
- src/app/+accounts/accounts.component.ts127
+ src/app/+accounts/accounts.component.ts127
+ Report this accountDieses Konto melden
-
- src/app/+accounts/accounts.component.ts133
- Search videosSearch videos
+ src/app/+accounts/accounts.component.ts133
+
+
+ Search videos
+ Videos suchensrc/app/+accounts/accounts.component.html48
@@ -5941,36 +5932,36 @@ Erstelle mein Konto
VIDEO CHANNELSVIDEOKANÄLE
-
- src/app/+accounts/accounts.component.ts65
+ src/app/+accounts/accounts.component.ts65
+ VIDEOSVIDEOS
-
-
- src/app/+video-channels/video-channels.component.ts69src/app/+accounts/accounts.component.ts66
+ src/app/+video-channels/video-channels.component.ts69
+ src/app/+accounts/accounts.component.ts66
+
ABOUTÜBER
-
-
- src/app/+video-channels/video-channels.component.ts71src/app/+accounts/accounts.component.ts67
+ src/app/+video-channels/video-channels.component.ts71
+ src/app/+accounts/accounts.component.ts67
+
Username copiedBenutzername kopiert
-
-
- src/app/+video-channels/video-channels.component.ts96src/app/+accounts/accounts.component.ts95
+ src/app/+video-channels/video-channels.component.ts96
+ src/app/+accounts/accounts.component.ts95
+
1 subscriber1 Abonnent
-
- src/app/+accounts/accounts.component.ts99
+ src/app/+accounts/accounts.component.ts99
+
subscribers Abonnenten
-
- src/app/+accounts/accounts.component.ts101
+ src/app/+accounts/accounts.component.ts101
+
Instances you followGefolgte Instanzen
@@ -5987,8 +5978,8 @@ Erstelle mein Konto
src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts61
- A <code>.mp4</code> that keeps the original audio track, with no video
- Ein <code>.mp4</code> das nur die originale Tonspur enthält, ohne Bild
+ A <code>.mp4</code> that keeps the original audio track, with no video
+ Ein <code>.mp4</code> das nur die originale Tonspur enthält, ohne Bildsrc/app/+admin/config/edit-custom-config/edit-custom-config.component.ts62
@@ -6905,9 +6896,8 @@ Erstelle mein Konto
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.
+ Ihre aktuelle E-Mail lautet . Sie wird nie öffentlich angezeigt. src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html5,7
@@ -7037,7 +7027,7 @@ Erstelle mein Konto
People can find you using @@
- People can find you using @@
+ Personen können Sie über @@ finden src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html11,13
@@ -7134,7 +7124,7 @@ Erstelle mein Konto
URL parameter is missing in URL parameters
- URL parameter is missing in URL parameters
+ URL-Parameter fehlt in URL-Parameternsrc/app/+remote-interaction/remote-interaction.component.ts25
@@ -7142,7 +7132,7 @@ Erstelle mein Konto
Cannot access to the remote resource
- Cannot access to the remote resource
+ Kein Zugriff auf die Remote-Ressource möglichsrc/app/+remote-interaction/remote-interaction.component.ts48
@@ -7150,7 +7140,7 @@ Erstelle mein Konto
Remote interaction
- Remote interaction
+ Remote Interaktionsrc/app/+remote-interaction/remote-interaction-routing.module.ts13
@@ -7438,8 +7428,7 @@ Erstelle mein Konto
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.Referenzen des OAuth-Clients können nicht abgerufen werden: . Stellen Sie sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell der Abschnitt "webserver".src/app/core/auth/auth.service.ts99
@@ -7572,8 +7561,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/+search/search-filters.component.ts69
- Long (> 10 min)
- Lang (> 10 min)
+ Long (> 10 min)
+ Lang (> 10 min)src/app/+search/search-filters.component.ts73
@@ -7604,9 +7593,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
SearchSuche
-
-
- src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/+search/search.component.ts230src/app/+search/search-routing.module.ts15
+ src/app/shared/shared-main/misc/simple-search-input.component.ts15
+ src/app/+search/search.component.ts230
+ src/app/+search/search-routing.module.ts15
+ years ago vor
@@ -7811,7 +7801,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Handle is required.
- Handle is required.
+ Handlung erforderlichsrc/app/shared/form-validators/user-validators.ts48
@@ -7819,7 +7809,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Handle must be valid (chocobozzz@example.com).
- Handle must be valid (chocobozzz@example.com).
+ Handlung muss gültig sein (chocobozzz@example.com).src/app/shared/form-validators/user-validators.ts49
@@ -8125,8 +8115,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/shared/form-validators/video-channel-validators.ts50
- See the documentation to learn how to use the PeerTube live streaming feature.
- Siehe die Dokumentation um zu erfahren, wie Sie die PeerTube-Live-Streaming-Funktion nutzen können.
+ See the documentation to learn how to use the PeerTube live streaming feature.
+ Siehe die Dokumentation um zu erfahren, wie Sie die PeerTube-Live-Streaming-Funktion nutzen können. src/app/shared/shared-video-live/live-documentation-link.component.html2,4
@@ -9190,8 +9180,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/+videos/+video-watch/video-watch.component.ts135
- You need to be <a href="/login">logged in</a> to rate this video.
- Sie müssen <a href="/login">eingeloggt</a> sein, um dieses Video zu bewerten.
+ You need to be <a href="/login">logged in</a> to rate this video.
+ Sie müssen <a href="/login">eingeloggt</a> sein, um dieses Video zu bewerten.src/app/+videos/+video-watch/video-watch.component.ts220
@@ -9325,23 +9315,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Only I can see this videoNur ich kann dieses Video sehen
-
- src/app/shared/shared-main/video/video.service.ts375
+ src/app/shared/shared-main/video/video.service.ts375
+ Only shareable via a private linkNur verteilbar mit einem privaten Link
-
- src/app/shared/shared-main/video/video.service.ts379
+ src/app/shared/shared-main/video/video.service.ts379
+
Anyone can see this videoJeder kann dieses Video sehen
-
- src/app/shared/shared-main/video/video.service.ts383
+ src/app/shared/shared-main/video/video.service.ts383
+
Only users of this instance can see this videoNur Nutzer dieser Instanz können dieses Video sehen
-
- src/app/shared/shared-main/video/video.service.ts387
+ src/app/shared/shared-main/video/video.service.ts387
+
viewers Betrachter
@@ -9530,9 +9520,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Video to import updated.Zu importierendes Video wurde aktualisiert.
-
-
- src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+ Your video was uploaded to your account and is private.Das Video wurde in dein Konto hochgeladen und ist privat.
@@ -9571,14 +9561,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/+videos/+video-edit/video-add-components/video-upload.component.ts267
- Your video quota is exceeded with this video (
-video size: , used: , quota: )
+ Your video quota is exceeded with this video ( video size: , used: , quota: )Ihr Videokontingent wurde mit diesem Video überschritten ( Videogröße: , verwendet: , Quote: )src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289
- 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: )Ihr tägliches Videokontingent wurde mit diesem Video überschritten ( Videogröße: , verwendet: , quota: )src/app/+videos/+video-edit/video-add-components/video-upload.component.ts309
@@ -9618,8 +9606,8 @@ video size: , used: src/app/+videos/+video-watch/video-watch-playlist.component.ts210
- This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>?
- Dieses Video ist auf dieser Instanz nicht verfügbar. Wollen Sie auf die Quellinstanz weitergeleitet werden: <a href=""></a>?
+ This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>?
+ Dieses Video ist auf dieser Instanz nicht verfügbar. Wollen Sie auf die Quellinstanz weitergeleitet werden: <a href=""></a>?src/app/+videos/+video-watch/video-watch.component.ts415
diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf
index 40a9a55f3..e6c56cb6e 100644
--- a/client/src/locale/angular.ru-RU.xlf
+++ b/client/src/locale/angular.ru-RU.xlf
@@ -224,14 +224,14 @@
Display nameОтображаемое имя
-
-
-
-
-
-
-
- src/app/+signup/+register/register-step-user.component.html8src/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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ src/app/+signup/+register/register-step-user.component.html8
+ 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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ CreateСоздать
@@ -377,8 +377,7 @@
src/app/shared/shared-video/video-views-counter.component.html3
-
+ src/app/shared/shared-video/video-views-counter.component.html
@@ -394,15 +393,16 @@
-
+ src/app/shared/shared-video/video-views-counter.component.html7,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 accountsrc/app/shared/shared-user-subscription/remote-subscribe.component.ts60
@@ -453,13 +453,13 @@
SaveСохранить
-
-
-
-
-
-
- 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 Удалить с
@@ -519,8 +519,8 @@
src/app/shared/shared-forms/markdown-textarea.component.html19
- <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
- <a href="https://ru.wikipedia.org/wiki/Markdown#Примеры_синтаксиса" target="_blank" rel="noopener noreferrer">Markdown</a> совместимый что поддерживает:
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
+ <a href="https://ru.wikipedia.org/wiki/Markdown#Примеры_синтаксиса" target="_blank" rel="noopener noreferrer">Markdown</a> совместимый что поддерживает:src/app/shared/shared-main/misc/help.component.ts75
@@ -532,8 +532,10 @@
Using an ActivityPub accountИспользуя аккаунт ActivityPubsrc/app/shared/shared-user-subscription/subscribe-button.component.html54
-
- Subscribe with a remote account:Subscribe with a remote account:
+
+
+ Subscribe with a remote account:
+ Subscribe with a remote account:src/app/shared/shared-user-subscription/subscribe-button.component.html62
@@ -548,8 +550,10 @@
Subscribe with your local accountПодписаться с вашего локального аккаунтаsrc/app/shared/shared-user-subscription/subscribe-button.component.html58
-
- Published videos matching ""Published videos matching ""
+
+
+ Published videos matching ""
+ Published videos matching ""src/app/+accounts/account-search/account-search.component.ts89
@@ -560,7 +564,6 @@
Прямая трансляция будет автоматически завершена.src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205
-
Using a syndication feedИспользуя канал распределения
@@ -580,21 +583,23 @@
Remote subscribeRemote interactУдалённая подпискаУдалённое взаимодействиеsrc/app/shared/shared-user-subscription/remote-subscribe.component.html11
-
- You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). 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). src/app/shared/shared-user-subscription/remote-subscribe.component.html18,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).
+ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). src/app/shared/shared-user-subscription/remote-subscribe.component.html26,27
-
-
PeerTube versionВерсия PeerTube
@@ -799,25 +804,25 @@
CancelОтменить
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- src/app/modal/confirm.component.html20src/app/+login/login.component.html117src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-video-miniature/video-download.component.html99src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/+about/about-instance/contact-admin-modal.component.html48src/app/shared/shared-moderation/report-modals/report.component.html54src/app/+videos/+video-watch/comment/video-comment-add.component.html67src/app/+videos/+video-edit/video-add-components/video-upload.component.html58src/app/+videos/+video-edit/video-add-components/video-upload.component.html58src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37
+ src/app/modal/confirm.component.html20
+ src/app/+login/login.component.html117
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html22
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25
+ src/app/shared/shared-moderation/report-modals/report.component.html54
+ src/app/shared/shared-moderation/video-block.component.html38
+ src/app/shared/shared-moderation/report-modals/video-report.component.html92
+ src/app/shared/shared-video-miniature/video-download.component.html99
+ src/app/shared/shared-moderation/user-ban-modal.component.html26
+ src/app/shared/shared-moderation/batch-domains-modal.component.html31
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26
+ src/app/+about/about-instance/contact-admin-modal.component.html48
+ src/app/shared/shared-moderation/report-modals/report.component.html54
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html67
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html58
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html58
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html69
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37
+ Ban this userЗаблокировать этого пользователя
@@ -879,16 +884,16 @@
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.
- Этот экземпляр разрешает регистрацию. Однако будьте осторожны, проверьте Условия пользованияTerms перед созданием учетной записи. Вы также можете найти другой экземпляр, который точно соответствует вашим потребностям, на: 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.
+ Этот экземпляр разрешает регистрацию. Однако будьте осторожны, проверьте Условия пользованияTerms перед созданием учетной записи. Вы также можете найти другой экземпляр, который точно соответствует вашим потребностям, на: https://joinpeertube.org/instances. src/app/+login/login.component.html60,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.
- В настоящее время этот экземпляр не позволяет регистрировать пользователей, проверьте Условия пользования для получения дополнительных сведений, или найдите экземпляр, который дает вам возможность зарегистрировать учетную запись и загружать туда свои видео. Найдите свой среди множества экземпляров на: https://joinpeertube.org/instances.
+ Currently this instance doesn't allow for user registration, you may check the Terms for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: https://joinpeertube.org/instances.
+ В настоящее время этот экземпляр не позволяет регистрировать пользователей, проверьте Условия пользования для получения дополнительных сведений, или найдите экземпляр, который дает вам возможность зарегистрировать учетную запись и загружать туда свои видео. Найдите свой среди множества экземпляров на: https://joinpeertube.org/instances. src/app/+login/login.component.html65,67
@@ -957,8 +962,7 @@
src/app/+login/login.component.html103
- An email with the reset password instructions will be sent to .
-The link will expire within 1 hour.
+ An email with the reset password instructions will be sent to . The link will expire within 1 hour.Письмо с инструкцией по сбросу пароля будет отправлено на . Ссылка будет рабочей в течении часа.src/app/+login/login.component.ts126
@@ -1813,15 +1817,15 @@ The link will expire within 1 hour.
DescriptionОписание
-
-
-
-
-
-
-
-
- src/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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64src/app/+about/about-instance/about-instance.component.html113src/app/+videos/+video-edit/shared/video-edit.component.html38src/app/+admin/config/edit-custom-config/edit-custom-config.component.html39
+ 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/+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.html64
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64
+ src/app/+about/about-instance/about-instance.component.html113
+ src/app/+videos/+video-edit/shared/video-edit.component.html38
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html39
+
Video descriptions are truncated by default and require manual action to expand them.Описания видео по умолчанию ограничены, поэтому необходимо вручную развернуть.
@@ -1919,7 +1923,7 @@ The link will expire within 1 hour.
src/app/+videos/+video-edit/shared/video-edit.component.html172
- Already uploaded ✔
+ Already uploaded ✔Уже загружено ✔src/app/+videos/+video-edit/shared/video-edit.component.html176
@@ -2051,12 +2055,12 @@ The link will expire within 1 hour.
UpdateИзменить
-
-
-
-
-
- src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/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-add-components/video-go-live.component.html45
+ src/app/+videos/+video-edit/video-update.component.html3
+ src/app/+videos/+video-edit/video-update.component.html18
+ 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-add-components/video-go-live.component.html45
+
Select the file to uploadВыбрать файл для загрузки
@@ -2159,18 +2163,18 @@ 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.ts91
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts91
+ Cannot create live because you created too many livesНевозможно создать трансляцию, вы уже создали слишком много трансляций
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts93
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts93
+
Live published.Прямой эфир опубликован.
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
+
Go LiveВ Эфир
@@ -2343,7 +2347,7 @@ The link will expire within 1 hour.
Public
- Опубликовать
+ Общедоступныйsrc/app/+videos/+video-watch/video-watch-playlist.component.html11
@@ -2646,25 +2650,25 @@ The link will expire within 1 hour.
You are one step away from commentingВы всего в одном шаге от комментариевsrc/app/+videos/+video-watch/comment/video-comment-add.component.html55
-
- 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).
+
+
+ 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/comment/video-comment-add.component.html60,61
-
-
Login to commentАвторизуйтесь, что бы добавить комментарий
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html72
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html72
+
Markdown Emoji ListMarkdown Emoji список
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html80
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html80
+
CommentКомментарий
@@ -2987,10 +2991,11 @@ The link will expire within 1 hour.
UsernameИмя пользователя
-
-
-
- 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_doee.g. jane_doe
@@ -3386,7 +3391,7 @@ The link will expire within 1 hour.
src/app/shared/shared-abuse-list/abuse-details.component.html7
-
+ src/app/shared/shared-abuse-list/abuse-details.component.html27
@@ -3473,7 +3478,7 @@ The link will expire within 1 hour.
src/app/shared/shared-abuse-list/abuse-details.component.html33
-
+ src/app/shared/shared-abuse-list/abuse-details.component.html52
@@ -3796,8 +3801,8 @@ The link will expire within 1 hour.
- No jobs found.
- No jobs found.
+ No jobs found.
+ No jobs found.src/app/+admin/system/jobs/jobs.component.html95
@@ -3829,8 +3834,8 @@ The link will expire within 1 hour.
src/app/+admin/system/logs/logs.component.html38
- By ->
- От ->
+ By ->
+ От ->src/app/+admin/system/logs/logs.component.html46
@@ -4443,8 +4448,8 @@ The link will expire within 1 hour.
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html910
- Max simultaneous lives created on your instance (-1 for "unlimited")
- Максимум одновременных трансляций, созданных на вашем экземпляре (-1 for "unlimited")
+ Max simultaneous lives created on your instance (-1 for "unlimited")
+ Максимум одновременных трансляций, созданных на вашем экземпляре (-1 for "unlimited")src/app/+admin/config/edit-custom-config/edit-custom-config.component.html916
@@ -4453,8 +4458,8 @@ The link will expire within 1 hour.
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html919
- Max simultaneous lives created per user (-1 for "unlimited")
- Максимальное количество трансляций на одного пользователя (-1 для "без ограничения")
+ Max simultaneous lives created per user (-1 for "unlimited")
+ Максимальное количество трансляций на одного пользователя (-1 для "без ограничения")src/app/+admin/config/edit-custom-config/edit-custom-config.component.html924
@@ -4536,13 +4541,13 @@ The link will expire within 1 hour.
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html742
- If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
- If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1src/app/+admin/config/edit-custom-config/edit-custom-config.component.html785
- Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2
- Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2
+ Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2
+ Requires ffmpeg >= 4.1Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:Resolution change is smootherFaster playback especially with long videosMore stable playback (less bugs/infinite loading)If you also enabled WebTorrent support, it will multiply videos storage by 2src/app/+admin/config/edit-custom-config/edit-custom-config.component.html805
@@ -4559,14 +4564,15 @@ The link will expire within 1 hour.
Allow additional extensionsРазрешить дополнительные расширенияsrc/app/+admin/config/edit-custom-config/edit-custom-config.component.html753
-
- Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+
+
+ Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+ Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.src/app/+admin/config/edit-custom-config/edit-custom-config.component.html756
-
Allow audio files uploadРазрешить загрузку аудиофайлов
@@ -4666,17 +4672,7 @@ The link will expire within 1 hour.
src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1077
- Write CSS code directly. Example: #custom-css
- color: red;
-
- Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email
- color: red;
-
-
+ Write CSS code directly. Example: #custom-css color: red; Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email color: red; Напишите код CSS напрямую. Пример: #custom-css color: red; Подготовить с #custom-css для переопределения стилей. Пример: #custom-css .logged-in-email color: red; src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1096
@@ -4786,9 +4782,9 @@ The link will expire within 1 hour.
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Новый пароль
@@ -4831,22 +4827,21 @@ The link will expire within 1 hour.
src/app/shared/shared-user-settings/user-video-settings.component.html36src/app/+admin/config/edit-custom-config/edit-custom-config.component.html69
-
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Новая электронная почта
-
- 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Изменить адрес электронной почты
-
- 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Тема
@@ -4970,9 +4965,8 @@ The link will expire within 1 hour.
src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26
- 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.
- Краткий текст, чтобы рассказать людям, как они могут поддержать ваш канал.<br /><br /> Когда вы загрузите видео на этот канал, поле поддержки видео будет автоматически заполнено этим текстом.
+ 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.
+ Краткий текст, чтобы рассказать людям, как они могут поддержать ваш канал.<br /><br /> Когда вы загрузите видео на этот канал, поле поддержки видео будет автоматически заполнено этим текстом.src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
@@ -5009,9 +5003,8 @@ The link will expire within 1 hour.
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Это видео было удалено
@@ -5285,9 +5278,7 @@ The link will expire within 1 hour.
src/app/+my-library/+my-video-channels/my-video-channels.component.html37
- Do you really want to delete ?
-It will delete videos uploaded in this channel, and you will not be able to create another
-channel with the same name ()!
+ Do you really want to delete ? It will delete videos uploaded in this channel, and you will not be able to create another channel with the same name ()!Вы действительно хотите удалить ? Будет удалено видео загруженное на этот канал, и вы не сможете создать другой канал с таким же именем ()!src/app/+my-library/+my-video-channels/my-video-channels.component.ts63
@@ -5403,14 +5394,15 @@ channel with the same name ()!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.html16
-
Contact administratorСвязаться с администратором
@@ -5617,8 +5609,8 @@ channel with the same name ()!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.html118,122
@@ -5864,9 +5856,11 @@ channel with the same name ()!
Account videosВидео аккаунта
-
- src/app/+accounts/accounts-routing.module.ts48
- Search videos within accountSearch videos within account
+ src/app/+accounts/accounts-routing.module.ts48
+
+
+ Search videos within account
+ Search videos within accountsrc/app/+accounts/accounts-routing.module.ts61
@@ -5875,19 +5869,20 @@ channel with the same name ()!
Account video channelsВидеоканалы аккаунта
-
- src/app/+accounts/accounts-routing.module.ts30
+ src/app/+accounts/accounts-routing.module.ts30
+
About accountОб аккаунте
-
- src/app/+accounts/accounts-routing.module.ts39
+ src/app/+accounts/accounts-routing.module.ts39
+
Published videosОпубликовано видео
-
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87src/app/+accounts/account-search/account-search.component.ts90src/app/+accounts/account-videos/account-videos.component.ts79
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87
+ src/app/+accounts/account-search/account-search.component.ts90
+ src/app/+accounts/account-videos/account-videos.component.ts79
+
Display all videos (private, unlisted or not yet published)Показать все видео (приватные, еще не опубликованные)
@@ -5902,14 +5897,16 @@ channel with the same name ()!
direct account followers прямые подписчики аккаунта
-
- src/app/+accounts/accounts.component.ts127
+ src/app/+accounts/accounts.component.ts127
+
Report this accountПожаловаться на этот аккаунт
-
- src/app/+accounts/accounts.component.ts133
- Search videosSearch videos
+ src/app/+accounts/accounts.component.ts133
+
+
+ Search videos
+ Search videossrc/app/+accounts/accounts.component.html48
@@ -5918,36 +5915,36 @@ channel with the same name ()!
VIDEO CHANNELSВИДЕОКАНАЛЫ
-
- src/app/+accounts/accounts.component.ts65
+ src/app/+accounts/accounts.component.ts65
+
VIDEOSВИДЕО
-
-
- src/app/+video-channels/video-channels.component.ts69src/app/+accounts/accounts.component.ts66
+ src/app/+video-channels/video-channels.component.ts69
+ src/app/+accounts/accounts.component.ts66
+
ABOUTО КАНАЛЕ
-
-
- src/app/+video-channels/video-channels.component.ts71src/app/+accounts/accounts.component.ts67
+ src/app/+video-channels/video-channels.component.ts71
+ src/app/+accounts/accounts.component.ts67
+
Username copiedИмя пользователя скопировано
-
-
- src/app/+video-channels/video-channels.component.ts96src/app/+accounts/accounts.component.ts95
+ src/app/+video-channels/video-channels.component.ts96
+ src/app/+accounts/accounts.component.ts95
+
1 subscriber1 подписчик
-
- src/app/+accounts/accounts.component.ts99
+ src/app/+accounts/accounts.component.ts99
+
subscribers подписчики
-
- src/app/+accounts/accounts.component.ts101
+ src/app/+accounts/accounts.component.ts101
+
Instances you followЭкземпляры, за которыми вы следите
@@ -5964,8 +5961,8 @@ channel with the same name ()!src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts61
- A <code>.mp4</code> that keeps the original audio track, with no video
- A <code>.mp4</code> сохраняет исходную звуковую дорожку без видео
+ A <code>.mp4</code> that keeps the original audio track, with no video
+ A <code>.mp4</code> сохраняет исходную звуковую дорожку без видеоsrc/app/+admin/config/edit-custom-config/edit-custom-config.component.ts62
@@ -6878,9 +6875,10 @@ channel with the same name ()!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
@@ -7007,9 +7005,11 @@ channel with the same name ()!
Profile updated.Профиль обновлён.
-
- 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.html11,13
@@ -7103,20 +7103,26 @@ channel with the same name ()!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 parameterssrc/app/+remote-interaction/remote-interaction.component.ts25
-
- Cannot access to the remote resourceCannot access to the remote resource
+
+
+ Cannot access to the remote resource
+ Cannot access to the remote resourcesrc/app/+remote-interaction/remote-interaction.component.ts48
-
- Remote interactionRemote interaction
+
+
+ Remote interaction
+ Remote interactionsrc/app/+remote-interaction/remote-interaction-routing.module.ts13
@@ -7404,8 +7410,7 @@ channel with the same name ()!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.Не удается получить учетные данные клиента OAuth: . Убедитесь, что вы правильно настроили PeerTube (config / directory), в частности раздел «веб-сервер».src/app/core/auth/auth.service.ts99
@@ -7538,8 +7543,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/+search/search-filters.component.ts69
- Long (> 10 min)
- Длинная (> 10 мин)
+ Long (> 10 min)
+ Длинная (> 10 мин)src/app/+search/search-filters.component.ts73
@@ -7570,9 +7575,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
SearchПоиск
-
-
- src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/+search/search.component.ts230src/app/+search/search-routing.module.ts15
+ src/app/shared/shared-main/misc/simple-search-input.component.ts15
+ src/app/+search/search.component.ts230
+ src/app/+search/search-routing.module.ts15
+ years ago
@@ -7774,14 +7780,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Электронная почта должна быть действительной.src/app/shared/form-validators/user-validators.ts38src/app/shared/form-validators/instance-validators.ts8
-
- Handle is required.Handle is required.
+
+
+ Handle is required.
+ Handle is required.src/app/shared/form-validators/user-validators.ts48
-
- Handle must be valid (chocobozzz@example.com).Handle must be valid (chocobozzz@example.com).
+
+
+ Handle must be valid (chocobozzz@example.com).
+ Handle must be valid (chocobozzz@example.com).src/app/shared/form-validators/user-validators.ts49
@@ -7841,10 +7851,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Password is required.Требуется пароль.
-
-
-
- src/app/shared/form-validators/user-validators.ts58src/app/shared/form-validators/user-validators.ts69src/app/shared/form-validators/login-validators.ts18
+ src/app/shared/form-validators/user-validators.ts58
+ src/app/shared/form-validators/user-validators.ts69
+ src/app/shared/form-validators/login-validators.ts18
+ Confirmation of the password is required.Требуется подтверждение пароля.
@@ -7888,94 +7898,94 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Password must be at least 6 characters long.Пароль должен содержать более 6 символов.
-
-
- src/app/shared/form-validators/user-validators.ts70src/app/shared/form-validators/user-validators.ts81
+ src/app/shared/form-validators/user-validators.ts70
+ src/app/shared/form-validators/user-validators.ts81
+ Password cannot be more than 255 characters long.Пароль не должен содержать более 255 символов.
-
-
- src/app/shared/form-validators/user-validators.ts71src/app/shared/form-validators/user-validators.ts82
+ src/app/shared/form-validators/user-validators.ts71
+ src/app/shared/form-validators/user-validators.ts82
+
The new password and the confirmed password do not correspond.Новый пароль и подтверждение пароля не совпадают.
-
- src/app/shared/form-validators/user-validators.ts89
+ src/app/shared/form-validators/user-validators.ts89
+
Video quota is required.Требуется квота видео.
-
- src/app/shared/form-validators/user-validators.ts96
+ src/app/shared/form-validators/user-validators.ts96
+
Quota must be greater than -1.Квота должна быть более -1.
-
- src/app/shared/form-validators/user-validators.ts97
+ src/app/shared/form-validators/user-validators.ts97
+
Daily upload limit is required.Требуется дневной лимит загрузок.
-
- src/app/shared/form-validators/user-validators.ts103
+ src/app/shared/form-validators/user-validators.ts103
+
Daily upload limit must be greater than -1.Дневной лимит загрузок должен быть более -1.
-
- src/app/shared/form-validators/user-validators.ts104
+ src/app/shared/form-validators/user-validators.ts104
+
User role is required.Требуется роль пользователя.
-
- src/app/shared/form-validators/user-validators.ts111
+ src/app/shared/form-validators/user-validators.ts111
+
Description must be at least 3 characters long.Описание должно содержать более 3 символов.
-
-
-
- src/app/shared/form-validators/user-validators.ts123src/app/shared/form-validators/video-channel-validators.ts38src/app/shared/form-validators/video-playlist-validators.ts33
+ src/app/shared/form-validators/user-validators.ts123
+ 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.Описание не должно содержать более 1000 символов.
-
-
-
- src/app/shared/form-validators/user-validators.ts124src/app/shared/form-validators/video-channel-validators.ts39src/app/shared/form-validators/video-playlist-validators.ts34
+ src/app/shared/form-validators/user-validators.ts124
+ 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.Вы должны согласиться с условиями экземпляра, чтобы зарегистрироваться на нем.
-
- src/app/shared/form-validators/user-validators.ts131
+ src/app/shared/form-validators/user-validators.ts131
+
Ban reason must be at least 3 characters long.Причина блокировки должна содержать более 3 символов.
-
- src/app/shared/form-validators/user-validators.ts141
+ src/app/shared/form-validators/user-validators.ts141
+
Ban reason cannot be more than 250 characters long.Причина блокировки не должна содержать более 250 символов.
-
- src/app/shared/form-validators/user-validators.ts142
+ src/app/shared/form-validators/user-validators.ts142
+
Display name is required.Требуется отображаемое имя.
-
-
-
- src/app/shared/form-validators/user-validators.ts153src/app/shared/form-validators/video-channel-validators.ts26src/app/shared/form-validators/video-playlist-validators.ts12
+ src/app/shared/form-validators/user-validators.ts153
+ 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.Отображаемое имя должно содержать более 1 символа.
-
-
-
- src/app/shared/form-validators/user-validators.ts154src/app/shared/form-validators/video-channel-validators.ts27src/app/shared/form-validators/video-playlist-validators.ts13
+ src/app/shared/form-validators/user-validators.ts154
+ 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.Отображаемое имя не должно содержать более 50 символов.
-
-
- src/app/shared/form-validators/user-validators.ts155src/app/shared/form-validators/video-channel-validators.ts28
+ src/app/shared/form-validators/user-validators.ts155
+ src/app/shared/form-validators/video-channel-validators.ts28
+
Report reason is required.Требуется причина жалобы.
@@ -8087,8 +8097,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
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
@@ -9143,8 +9153,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/+videos/+video-watch/video-watch.component.ts135
- You need to be <a href="/login">logged in</a> to rate this video.
- <a href="/login">Войдите</a> чтобы оценить это видео.
+ You need to be <a href="/login">logged in</a> to rate this video.
+ <a href="/login">Войдите</a> чтобы оценить это видео.src/app/+videos/+video-watch/video-watch.component.ts220
@@ -9278,23 +9288,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Only I can see this videoТолько я могу видеть это видео
-
- src/app/shared/shared-main/video/video.service.ts375
+ src/app/shared/shared-main/video/video.service.ts375
+ Only shareable via a private linkМожно поделиться только по частной ссылке
-
- src/app/shared/shared-main/video/video.service.ts379
+ src/app/shared/shared-main/video/video.service.ts379
+
Anyone can see this videoВсе могут видеть это видео
-
- src/app/shared/shared-main/video/video.service.ts383
+ src/app/shared/shared-main/video/video.service.ts383
+
Only users of this instance can see this videoЭто видео могут просматривать только пользователи этого экземпляра
-
- src/app/shared/shared-main/video/video.service.ts387
+ src/app/shared/shared-main/video/video.service.ts387
+
viewers зрителей
@@ -9483,9 +9493,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Video to import updated.Видео для импорта обновлено.
-
-
- src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+ Your video was uploaded to your account and is private.Ваше видео было загружено на ваш аккаунт и является приватным.
@@ -9522,14 +9532,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
src/app/+videos/+video-edit/video-add-components/video-upload.component.ts267
- 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.ts289
- 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.ts309
@@ -9569,8 +9577,8 @@ video size: , used: src/app/+videos/+video-watch/video-watch-playlist.component.ts210
- This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>?
- Это видео недоступно в этом экземпляре. Вы хотите, чтобы вас перенаправили на исходный экземпляр: <a href=""></a>?
+ This video is not available on this instance. Do you want to be redirected on the origin instance: <a href=""></a>?
+ Это видео недоступно в этом экземпляре. Вы хотите, чтобы вас перенаправили на исходный экземпляр: <a href=""></a>?src/app/+videos/+video-watch/video-watch.component.ts415
diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf
index e989e6b42..f7e01ce9e 100644
--- a/client/src/locale/angular.tr-TR.xlf
+++ b/client/src/locale/angular.tr-TR.xlf
@@ -4,252 +4,256 @@
- Close the left menuClose the left menu
+ Close the left menu
+ Sol menüyü kapatsrc/app/app.component.ts109
-
- Open the left menuOpen the left menu
+
+
+ Open the left menu
+ Sol menüyü açsrc/app/app.component.ts111
-
+
+ Channel avatarKanal simgesi
-
- src/app/shared/shared-main/account/video-avatar-channel.component.html4src/app/shared/shared-main/account/video-avatar-channel.component.html17
+ src/app/shared/shared-main/account/video-avatar-channel.component.html4
+ src/app/shared/shared-main/account/video-avatar-channel.component.html17
+ Account avatarHesap Resmi
-
- src/app/shared/shared-main/account/video-avatar-channel.component.html7src/app/shared/shared-main/account/video-avatar-channel.component.html13src/app/shared/shared-main/account/video-avatar-channel.component.html23
+ src/app/shared/shared-main/account/video-avatar-channel.component.html7
+ src/app/shared/shared-main/account/video-avatar-channel.component.html13
+ src/app/shared/shared-main/account/video-avatar-channel.component.html23
+
You don't have notifications.Bildiriminiz yok.
-
- src/app/shared/shared-main/users/user-notifications.component.html1
+ src/app/shared/shared-main/users/user-notifications.component.html1
+
published a new video:
- yeni bir video yayınladı:
-
- src/app/shared/shared-main/users/user-notifications.component.html15
+ yeni bir video yayınladı:
+ src/app/shared/shared-main/users/user-notifications.component.html15
+
The notification concerns a video now unavailableBir videonun kullanılamaz olduğu bildiriliyor
-
- src/app/shared/shared-main/users/user-notifications.component.html24
+ src/app/shared/shared-main/users/user-notifications.component.html24
+
Your video has been unblocked
- izletinizin engeli kaldırıldı
-
- src/app/shared/shared-main/users/user-notifications.component.html33
+ videonuzun engeli kaldırıldı .
+ src/app/shared/shared-main/users/user-notifications.component.html33
+
Your video has been blocked
- izletiniz engellendi
-
- src/app/shared/shared-main/users/user-notifications.component.html41
+ videonuz engellendi.
+ src/app/shared/shared-main/users/user-notifications.component.html41
+
A new video abuse has been created on video
- A new video abuse
- has been created on video
-
+ A new video abuse
+ has been created on video
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html49
+ src/app/shared/shared-main/users/user-notifications.component.html49
+
A new comment abuse has been created on video
- A new comment abuse
- has been created on video
-
+ A new comment abuse
+ has been created on video
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html53
+ src/app/shared/shared-main/users/user-notifications.component.html53
+
A new account abuse has been created on account
- A new account abuse
- has been created on account
-
+ A new account abuse
+ has been created on account
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html57
+ src/app/shared/shared-main/users/user-notifications.component.html57
+
A new abuse has been created
- A new abuse
- has been created
+ A new abuse
+ has been created
-
- src/app/shared/shared-main/users/user-notifications.component.html62
+ src/app/shared/shared-main/users/user-notifications.component.html62
+
Your abuse has been acceptedrejected
- Your abuse
+ Your abuse
- has been
+ has been
- accepted
-
- rejected
-
+ accepted
+
+ rejected
+
-
- src/app/shared/shared-main/users/user-notifications.component.html70
+ src/app/shared/shared-main/users/user-notifications.component.html70
+
Abuse has a new message
- Abuse
+ Abuse
- has a new message
+ has a new message
-
- src/app/shared/shared-main/users/user-notifications.component.html80
+ src/app/shared/shared-main/users/user-notifications.component.html80
+
The recently added video has been automatically blocked
The recently added video
-
+
- has been
- automatically blocked
-
+ has been
+ automatically blocked
+
-
- src/app/shared/shared-main/users/user-notifications.component.html88
+ src/app/shared/shared-main/users/user-notifications.component.html88
+
commented your video
-
+
- commented your video
-
+ commented your video
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html101
+ src/app/shared/shared-main/users/user-notifications.component.html101
+
The notification concerns a comment now unavailable
The notification concerns a comment now unavailable
-
- src/app/shared/shared-main/users/user-notifications.component.html109
+ src/app/shared/shared-main/users/user-notifications.component.html109
+
Your video has been published
-
- Your video
-
-
- has been published
-
-
-
- src/app/shared/shared-main/users/user-notifications.component.html118
+ videonuz yayınlandı
+ src/app/shared/shared-main/users/user-notifications.component.html118
+
Your video import succeeded
- Your video import
-
+ Your video import
+ succeeded
-
- src/app/shared/shared-main/users/user-notifications.component.html126
+ src/app/shared/shared-main/users/user-notifications.component.html126
+
Your video import failed
- Your video import
-
+ Your video import
+ failed
-
- src/app/shared/shared-main/users/user-notifications.component.html134
+ src/app/shared/shared-main/users/user-notifications.component.html134
+
User registered on your instance
User
-
+
- registered on your instance
+ registered on your instance
-
- src/app/shared/shared-main/users/user-notifications.component.html142
+ src/app/shared/shared-main/users/user-notifications.component.html142
+
is following your channel your account
-
+
- is following
+ is following
- your channel
+ your channel
-
- your account
-
+
+ your account
+
-
- src/app/shared/shared-main/users/user-notifications.component.html152
+ src/app/shared/shared-main/users/user-notifications.component.html152
+
mentioned you on video
-
+
- mentioned you on
- video
+ mentioned you on
+ video
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html165
+ src/app/shared/shared-main/users/user-notifications.component.html165
+
Your instance has a new follower () awaiting your approval
Your instance has
- a new follower
- (
+ a new follower
+ (
)
- awaiting your approval
-
+ awaiting your approval
+
-
- src/app/shared/shared-main/users/user-notifications.component.html173
+ src/app/shared/shared-main/users/user-notifications.component.html173
+
Your instance automatically followed
Your instance automatically followed
-
+
-
+
-
- src/app/shared/shared-main/users/user-notifications.component.html182
- The notification points to content now unavailable The notification points to content now unavailable
-
- src/app/shared/shared-main/users/user-notifications.component.html190
-
+ src/app/shared/shared-main/users/user-notifications.component.html182
+
+
+ The notification points to content now unavailable
+ The notification points to content now unavailable
+ src/app/shared/shared-main/users/user-notifications.component.html190
+ Change your avatarChange your avatar
-
- src/app/shared/shared-main/account/actor-avatar-info.component.html16
- Remove avatarRemove avatar
+ src/app/shared/shared-main/account/actor-avatar-info.component.html16
+
+
+ Remove avatar
+ Remove avatarsrc/app/shared/shared-main/account/actor-avatar-info.component.html41
@@ -260,9 +264,11 @@
-
- src/app/shared/shared-main/buttons/action-dropdown.component.html22
- My watch historyMy watch history
+ src/app/shared/shared-main/buttons/action-dropdown.component.html22
+
+
+ My watch history
+ İzleme geçmişimsrc/app/+my-library/my-history/my-history.component.ts49
@@ -271,202 +277,240 @@
Save toŞuraya kaydet
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.html4
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html4
+ OptionsSeçenekler
-
- src/app/+videos/+video-watch/comment/video-comment.component.html50
+ src/app/+videos/+video-watch/comment/video-comment.component.html50
+
Start atBaşlangıç konumu
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html57src/app/shared/shared-share-modal/video-share.component.html113src/app/shared/shared-video-playlist/video-add-to-playlist.component.html34src/app/shared/shared-moderation/report-modals/video-report.component.html47
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html57
+ src/app/shared/shared-share-modal/video-share.component.html113
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html34
+ src/app/shared/shared-moderation/report-modals/video-report.component.html47
+
Stop atBitiş konumu
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html71src/app/shared/shared-share-modal/video-share.component.html144src/app/shared/shared-video-playlist/video-add-to-playlist.component.html35src/app/shared/shared-moderation/report-modals/video-report.component.html62
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html71
+ src/app/shared/shared-share-modal/video-share.component.html144
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html35
+ src/app/shared/shared-moderation/report-modals/video-report.component.html62
+
Your report will be sent to moderators of and will be forwarded to the video origin () too.
Your report will be sent to moderators of
- and will be forwarded to the video origin (
+ and will be forwarded to the video origin (
) too
- .
+ .
-
- src/app/shared/shared-moderation/report-modals/video-report.component.html74
+ src/app/shared/shared-moderation/report-modals/video-report.component.html74
+
Please describe the issue...Please describe the issue...
-
- src/app/shared/shared-moderation/report-modals/report.component.html42src/app/shared/shared-moderation/report-modals/video-report.component.html80src/app/shared/shared-moderation/report-modals/report.component.html42
+ src/app/shared/shared-moderation/report-modals/report.component.html42
+ src/app/shared/shared-moderation/report-modals/video-report.component.html80
+ src/app/shared/shared-moderation/report-modals/report.component.html42
+
Search playlists
- Search playlists
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.html9
+ Oynatma listelerinde ara
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html9
+
Create a private playlist
- Create a private playlist
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.html66
+ Özel oynatma listesi oluştur
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html66
+
Display nameGörünen ad
-
- src/app/+signup/+register/register-step-user.component.html8src/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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ src/app/+signup/+register/register-step-user.component.html8
+ 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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html17
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.html71
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html53
+
CreateOluştur
-
- src/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.html81src/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/+admin/users/user-edit/user-edit.component.html8src/app/+admin/users/user-edit/user-edit.component.html8
+ 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
+ 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/+admin/users/user-edit/user-edit.component.html8
+ src/app/+admin/users/user-edit/user-edit.component.html8
+
videovideo
-
- src/app/shared/shared-video-miniature/video-download.component.html12
+ src/app/shared/shared-video-miniature/video-download.component.html12
+
subtitles
- subtitles
-
- src/app/shared/shared-video-miniature/video-download.component.html11
+ altyazılar
+ src/app/shared/shared-video-miniature/video-download.component.html11
+
Format
- Format
-
- src/app/shared/shared-video-miniature/video-download.component.html45
+ Biçim
+ src/app/shared/shared-video-miniature/video-download.component.html45
+
-
- src/app/shared/shared-video-miniature/video-download.component.html49src/app/shared/shared-video-miniature/video-download.component.html61src/app/shared/shared-video-miniature/video-download.component.html73
+ src/app/shared/shared-video-miniature/video-download.component.html49
+ src/app/shared/shared-video-miniature/video-download.component.html61
+ src/app/shared/shared-video-miniature/video-download.component.html73
+
Video streamVideo stream
-
- src/app/shared/shared-video-miniature/video-download.component.html57
+ src/app/shared/shared-video-miniature/video-download.component.html57
+
Audio streamAudio stream
-
- src/app/shared/shared-video-miniature/video-download.component.html69
+ src/app/shared/shared-video-miniature/video-download.component.html69
+
Direct downloadDoğrudan indir
-
- src/app/shared/shared-video-miniature/video-download.component.html87
+ src/app/shared/shared-video-miniature/video-download.component.html87
+
Torrent (.torrent file)
- Torrent (.torrent file)
-
- src/app/shared/shared-video-miniature/video-download.component.html92
+ Torrent (.torrent dosyası)
+ src/app/shared/shared-video-miniature/video-download.component.html92
+
videovideo
-
- src/app/shared/shared-video-miniature/video-download.component.ts48src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229
+ src/app/shared/shared-video-miniature/video-download.component.ts48
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts229
+
subtitles
- subtitles
-
- src/app/shared/shared-video-miniature/video-download.component.ts49
+ altyazılar
+ src/app/shared/shared-video-miniature/video-download.component.ts49
+
Cancel
- Cancel
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html45
+ Kapat
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html45
+
Downloadİndir
-
- src/app/shared/shared-video-miniature/video-download.component.html4src/app/shared/shared-video-miniature/video-download.component.html104
+ src/app/shared/shared-video-miniature/video-download.component.html4
+ src/app/shared/shared-video-miniature/video-download.component.html104
+
Reason...
- Reason...
-
- src/app/shared/shared-moderation/user-ban-modal.component.html12
+ Sebep...
+ src/app/shared/shared-moderation/user-ban-modal.component.html12
+
Cancel
- Cancel
-
- src/app/shared/shared-video-miniature/videos-selection.component.html19
+ Kapat
+ src/app/shared/shared-video-miniature/videos-selection.component.html19
+
Submit
- Submit
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.html27src/app/shared/shared-moderation/report-modals/report.component.html57src/app/shared/shared-moderation/video-block.component.html43src/app/shared/shared-moderation/report-modals/video-report.component.html95src/app/+about/about-instance/contact-admin-modal.component.html53src/app/shared/shared-moderation/report-modals/report.component.html57
+ Gönder
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html27
+ src/app/shared/shared-moderation/report-modals/report.component.html57
+ src/app/shared/shared-moderation/video-block.component.html43
+ src/app/shared/shared-moderation/report-modals/video-report.component.html95
+ src/app/+about/about-instance/contact-admin-modal.component.html53
+ src/app/shared/shared-moderation/report-modals/report.component.html57
+
Report video ""
- Report video "
- "
-
-
- src/app/shared/shared-moderation/report-modals/video-report.component.html3
+ "" videosunu şikayet et
+ src/app/shared/shared-moderation/report-modals/video-report.component.html3
+
What is the issue?What is the issue?
-
- src/app/shared/shared-moderation/report-modals/report.component.html13src/app/shared/shared-moderation/report-modals/video-report.component.html13src/app/shared/shared-moderation/report-modals/report.component.html13
+ src/app/shared/shared-moderation/report-modals/report.component.html13
+ src/app/shared/shared-moderation/report-modals/video-report.component.html13
+ src/app/shared/shared-moderation/report-modals/report.component.html13
+
This will ask remote instances to delete itThis will ask remote instances to delete it
-
- src/app/shared/shared-moderation/video-block.component.html27
- Blocking this live will automatically terminate the live stream. Blocking this live will automatically terminate the live stream.
-
- src/app/shared/shared-moderation/video-block.component.html33
+ src/app/shared/shared-moderation/video-block.component.html27
+
+
+ Blocking this live will automatically terminate the live stream.
+ Blocking this live will automatically terminate the live stream.
+ src/app/shared/shared-moderation/video-block.component.html33
+ Unfederate the videoUnfederate the video
-
- src/app/shared/shared-moderation/video-block.component.html24
+ src/app/shared/shared-moderation/video-block.component.html24
+
UnlistedListelenmemiş
-
- src/app/shared/shared-video-miniature/video-miniature.component.html6src/app/+videos/+video-watch/video-watch-playlist.component.html9
+ src/app/shared/shared-video-miniature/video-miniature.component.html6
+ src/app/+videos/+video-watch/video-watch-playlist.component.html9
+
PrivateÖzel
-
- src/app/shared/shared-video-miniature/video-miniature.component.html7src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html33src/app/+videos/+video-watch/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
+ src/app/+videos/+video-watch/video-watch-playlist.component.html10
+
{VAR_PLURAL, plural, =1 {1 view} other { views}}{VAR_PLURAL, plural, =1 {1 view} other {
views} }
-
- src/app/shared/shared-video/video-views-counter.component.html3
-
+ src/app/shared/shared-video/video-views-counter.component.html3
+
+
+
+ src/app/shared/shared-video/video-views-counter.component.html3,4
-
- {VAR_PLURAL, plural, =1 {1 viewer} other { viewers}}{VAR_PLURAL, plural, =1 {1 viewer} other { viewers}}
+
+
+ {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.html7
-
-
+
+
+
+ src/app/shared/shared-video/video-views-counter.component.html7,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 accountsrc/app/shared/shared-user-subscription/remote-subscribe.component.ts60
@@ -474,109 +518,140 @@
Blocked
- Blocked
-
- src/app/shared/shared-video-miniature/video-miniature.component.html52
+ Engelli
+ src/app/shared/shared-video-miniature/video-miniature.component.html52
+
Sensitive
- Sensitive
-
- src/app/shared/shared-video-miniature/video-miniature.component.html57
+ Hassas
+ src/app/shared/shared-video-miniature/video-miniature.component.html57
+
{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos}}{VAR_PLURAL, plural, =0 {Video yok} =1 {1 video} other {
video} }
-
- src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9
+ src/app/shared/shared-video-playlist/video-playlist-miniature.component.html9
+
-
- src/app/shared/shared-video-playlist/video-playlist-miniature.component.html22
+ src/app/shared/shared-video-playlist/video-playlist-miniature.component.html22
+
Updated güncellendi
-
- src/app/shared/shared-video-playlist/video-playlist-miniature.component.html29
+ src/app/shared/shared-video-playlist/video-playlist-miniature.component.html29
+
Unavailable
- Unavailable
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html32
+ Kullanılamıyor
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html32
+
Deleted
- Deleted
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34src/app/shared/shared-abuse-list/abuse-list-table.component.html116src/app/+videos/+video-watch/comment/video-comment.component.html57
+ Silinmiş
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html34
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html116
+ src/app/+videos/+video-watch/comment/video-comment.component.html57
+
Edit starts/stops atEdit starts/stops at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html50
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html50
+
SaveKaydet
-
- 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 Delete from
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html88
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html88
+
No results.
- No results.
-
- src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/videos-selection.component.html1src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/shared/shared-video-miniature/abstract-video-list.html47src/app/+videos/video-list/overview/video-overview.component.html4
+ Sonuç yok.
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/videos-selection.component.html1
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/shared/shared-video-miniature/abstract-video-list.html47
+ src/app/+videos/video-list/overview/video-overview.component.html4
+
DeleteSil
-
- src/app/+my-library/my-videos/my-videos.component.html43src/app/+videos/+video-edit/shared/video-edit.component.html178
+ src/app/+my-library/my-videos/my-videos.component.html43
+ src/app/+videos/+video-edit/shared/video-edit.component.html178
+
EditDüzenle
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html85src/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.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/+videos/+video-edit/video-add-components/video-upload.component.html38src/app/+videos/+video-edit/shared/video-edit.component.html270src/app/+admin/users/user-edit/user-edit.component.html11src/app/+admin/users/user-edit/user-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.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.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/+videos/+video-edit/video-add-components/video-upload.component.html38
+ src/app/+videos/+video-edit/shared/video-edit.component.html270
+ src/app/+admin/users/user-edit/user-edit.component.html11
+ src/app/+admin/users/user-edit/user-edit.component.html11
+
Truncated previewUcundan önizle
-
- src/app/shared/shared-forms/markdown-textarea.component.html11
- HideHide
-
- src/app/shared/shared-forms/input-toggle-hidden.component.ts38
- ShowShow
-
- src/app/shared/shared-forms/input-toggle-hidden.component.ts39
+ src/app/shared/shared-forms/markdown-textarea.component.html11
+
+
+ Hide
+ Gizle
+ src/app/shared/shared-forms/input-toggle-hidden.component.ts38
+
+
+ Show
+ Göster
+ src/app/shared/shared-forms/input-toggle-hidden.component.ts39
+ Complete previewTamamen önizle
-
- src/app/shared/shared-forms/markdown-textarea.component.html19
+ src/app/shared/shared-forms/markdown-textarea.component.html19
+
- <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
- <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
-
- src/app/shared/shared-main/misc/help.component.ts75
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
+ <a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:
+ src/app/shared/shared-main/misc/help.component.ts75
+
Recommended
- Recommended
-
- src/app/shared/shared-forms/peertube-checkbox.component.html33
+ Önerilen
+ src/app/shared/shared-forms/peertube-checkbox.component.html33
+
Using an ActivityPub account
- Using an ActivityPub account
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html54
- Subscribe with a remote account:Subscribe with a remote account:
+ ActivityPub hesabı kullanılıyor
+ 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.html62
@@ -585,217 +660,245 @@
Subscribe with an account on this instanceSubscribe with an account on this instance
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html57
+ src/app/shared/shared-user-subscription/subscribe-button.component.html57
+ Subscribe with your local accountSubscribe with your local account
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html58
- Published videos matching ""Published videos matching ""
+ src/app/shared/shared-user-subscription/subscribe-button.component.html58
+
+
+ Published videos matching ""
+ Published videos matching ""src/app/+accounts/account-search/account-search.component.ts89
-
- The live stream will be automatically terminated.The live stream will be automatically terminated.
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205
-
+
+
+ The live stream will be automatically terminated.
+ The live stream will be automatically terminated.
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts205
+ Using a syndication feedUsing a syndication feed
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html68
+ src/app/shared/shared-user-subscription/subscribe-button.component.html68
+
Subscribe via RSS
- Subscribe via RSS
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html69
+ RSS ile abone ol
+ src/app/shared/shared-user-subscription/subscribe-button.component.html69
+
PROFILE SETTINGS
- PROFILE SETTINGS
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html12
+ PROFİL AYARLARI
+ src/app/+my-account/my-account-settings/my-account-settings.component.html12
+
Remote subscribeRemote interact
-
- src/app/shared/shared-user-subscription/remote-subscribe.component.html11
- You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
+ src/app/shared/shared-user-subscription/remote-subscribe.component.html11
+
+
+ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
+ You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). src/app/shared/shared-user-subscription/remote-subscribe.component.html18,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).
+ You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). src/app/shared/shared-user-subscription/remote-subscribe.component.html26,27
-
-
PeerTube version
- PeerTube version
-
- src/app/shared/shared-instance/instance-features-table.component.html6
+ PeerTube sürümü
+ src/app/shared/shared-instance/instance-features-table.component.html6
+
Default NSFW/sensitive videos policycan be redefined by the users
-
- src/app/shared/shared-instance/instance-features-table.component.html13
+ src/app/shared/shared-instance/instance-features-table.component.html13
+
User registration allowed
- User registration allowed
-
- src/app/shared/shared-instance/instance-features-table.component.html21
+ Kullanıcı kaydına izin veriliyor
+ src/app/shared/shared-instance/instance-features-table.component.html21
+
Video uploadsVideo uploads
-
- src/app/shared/shared-instance/instance-features-table.component.html28src/app/shared/shared-instance/instance-features-table.component.html39
+ src/app/shared/shared-instance/instance-features-table.component.html28
+ src/app/shared/shared-instance/instance-features-table.component.html39
+
Transcoding in multiple resolutionsTranscoding in multiple resolutions
-
- src/app/shared/shared-instance/instance-features-table.component.html32
- Live streaming enabledLive streaming enabled
-
- src/app/shared/shared-instance/instance-features-table.component.html71
- Transcode live video in multiple resolutionsTranscode live video in multiple resolutions
-
- src/app/shared/shared-instance/instance-features-table.component.html78
- Max parallel livesMax parallel lives
-
- src/app/shared/shared-instance/instance-features-table.component.html85
- per user / per instance per user / per instance
-
- src/app/shared/shared-instance/instance-features-table.component.html86
+ src/app/shared/shared-instance/instance-features-table.component.html32
+
+
+ Live streaming enabled
+ Canlı yayın etkinleştirildi
+ src/app/shared/shared-instance/instance-features-table.component.html71
+
+
+ Transcode live video in multiple resolutions
+ Transcode live video in multiple resolutions
+ src/app/shared/shared-instance/instance-features-table.component.html78
+
+
+ Max parallel lives
+ Max parallel lives
+ src/app/shared/shared-instance/instance-features-table.component.html85
+
+
+ per user / per instance
+ per user / per instance
+ src/app/shared/shared-instance/instance-features-table.component.html86
+ Requires manual validation by moderatorsRequires manual validation by moderators
-
- src/app/shared/shared-instance/instance-features-table.component.html41
+ src/app/shared/shared-instance/instance-features-table.component.html41
+
Automatically publishedAutomatically published
-
- src/app/shared/shared-instance/instance-features-table.component.html42
+ src/app/shared/shared-instance/instance-features-table.component.html42
+
Video quota
- Video kotası
-
- 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
+ Video sınırı
+ 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)Unlimited
- (
+ (
per day)
-
+
-
- src/app/shared/shared-instance/instance-features-table.component.html61
+ src/app/shared/shared-instance/instance-features-table.component.html61
+
Import
- Import
-
- 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
+ İçe aktar
+ 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. You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
-
- src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html20
+
HTTP import (YouTube, Vimeo, direct URL...)
- HTTP import (YouTube, Vimeo, direct URL...)
-
- src/app/shared/shared-instance/instance-features-table.component.html96
+ HTTP ile içe aktar (YouTube, Vimeo, URL vb.)
+ src/app/shared/shared-instance/instance-features-table.component.html96
+
Torrent import
- Torrent import
-
- src/app/shared/shared-instance/instance-features-table.component.html103
+ Torrent ile içe aktar
+ src/app/shared/shared-instance/instance-features-table.component.html103
+
Player
- Player
-
- src/app/shared/shared-instance/instance-features-table.component.html111
+ Oynatıcı
+ src/app/shared/shared-instance/instance-features-table.component.html111
+
P2P enabled
- P2P enabled
-
- src/app/shared/shared-instance/instance-features-table.component.html115
+ P2P açıldı
+ src/app/shared/shared-instance/instance-features-table.component.html115
+
Loading instance statistics...Loading instance statistics...
-
- src/app/shared/shared-instance/instance-statistics.component.html1
+ src/app/shared/shared-instance/instance-statistics.component.html1
+
LocalLocal
-
- src/app/shared/shared-instance/instance-statistics.component.html4
+ src/app/shared/shared-instance/instance-statistics.component.html4
+
usersusers
-
- src/app/shared/shared-instance/instance-statistics.component.html11
+ src/app/shared/shared-instance/instance-statistics.component.html11
+
videosvideos
-
- src/app/shared/shared-instance/instance-statistics.component.html21src/app/shared/shared-instance/instance-statistics.component.html65
+ src/app/shared/shared-instance/instance-statistics.component.html21
+ src/app/shared/shared-instance/instance-statistics.component.html65
+
video viewsvideo views
-
- src/app/shared/shared-instance/instance-statistics.component.html31
+ src/app/shared/shared-instance/instance-statistics.component.html31
+
video commentsvideo comments
-
- src/app/shared/shared-instance/instance-statistics.component.html41src/app/shared/shared-instance/instance-statistics.component.html75
+ src/app/shared/shared-instance/instance-statistics.component.html41
+ src/app/shared/shared-instance/instance-statistics.component.html75
+
of hosted videoof hosted video
-
- src/app/shared/shared-instance/instance-statistics.component.html51
+ src/app/shared/shared-instance/instance-statistics.component.html51
+
FederationFederation
-
- src/app/shared/shared-instance/instance-statistics.component.html58
+ src/app/shared/shared-instance/instance-statistics.component.html58
+
followersfollowers
-
- src/app/shared/shared-instance/instance-statistics.component.html85
+ src/app/shared/shared-instance/instance-statistics.component.html85
+
followingfollowing
-
- src/app/shared/shared-instance/instance-statistics.component.html95
- The upload failedThe upload failed
+ src/app/shared/shared-instance/instance-statistics.component.html95
+
+
+ The upload failed
+ Yükleme başarısızsrc/app/helpers/utils.ts185
-
- The connection was interruptedThe connection was interrupted
+
+
+ The connection was interrupted
+ The connection was interruptedsrc/app/helpers/utils.ts189
-
- Your file couldn't be transferred before the set timeout (usually 10min)Your file couldn't be transferred before the set timeout (usually 10min)
+
+
+ Your file couldn't be transferred before the set timeout (usually 10min)
+ Your file couldn't be transferred before the set timeout (usually 10min)src/app/helpers/utils.ts192
-
- Your file was too large (max. size: )Your file was too large (max. size: )
+
+
+ Your file was too large (max. size: )
+ Your file was too large (max. size: )src/app/helpers/utils.ts196
@@ -803,91 +906,121 @@
User
- User
-
- src/app/core/users/user.service.ts392
+ Kullanıcı
+ src/app/core/users/user.service.ts392
+
BanBan
-
- src/app/shared/shared-moderation/user-ban-modal.component.html3
+ src/app/shared/shared-moderation/user-ban-modal.component.html3
+
A banned user will no longer be able to login.A banned user will no longer be able to login.
-
- src/app/shared/shared-moderation/user-ban-modal.component.html21
+ src/app/shared/shared-moderation/user-ban-modal.component.html21
+
CancelCancel
-
- src/app/modal/confirm.component.html20src/app/+login/login.component.html117src/app/+my-library/my-videos/modals/video-change-ownership.component.html22src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25src/app/shared/shared-moderation/report-modals/report.component.html54src/app/shared/shared-moderation/video-block.component.html38src/app/shared/shared-moderation/report-modals/video-report.component.html92src/app/shared/shared-video-miniature/video-download.component.html99src/app/shared/shared-moderation/user-ban-modal.component.html26src/app/shared/shared-moderation/batch-domains-modal.component.html31src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26src/app/+about/about-instance/contact-admin-modal.component.html48src/app/shared/shared-moderation/report-modals/report.component.html54src/app/+videos/+video-watch/comment/video-comment-add.component.html67src/app/+videos/+video-edit/video-add-components/video-upload.component.html58src/app/+videos/+video-edit/video-add-components/video-upload.component.html58src/app/+videos/+video-edit/video-add-components/video-upload.component.html69src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37
+ src/app/modal/confirm.component.html20
+ src/app/+login/login.component.html117
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html22
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html25
+ src/app/shared/shared-moderation/report-modals/report.component.html54
+ src/app/shared/shared-moderation/video-block.component.html38
+ src/app/shared/shared-moderation/report-modals/video-report.component.html92
+ src/app/shared/shared-video-miniature/video-download.component.html99
+ src/app/shared/shared-moderation/user-ban-modal.component.html26
+ src/app/shared/shared-moderation/batch-domains-modal.component.html31
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html26
+ src/app/+about/about-instance/contact-admin-modal.component.html48
+ src/app/shared/shared-moderation/report-modals/report.component.html54
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html67
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html58
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html58
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html69
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html37
+
Ban this user
- Ban this user
-
- src/app/shared/shared-moderation/user-ban-modal.component.html31
+ Bu kullanıcıyı yasakla
+ src/app/shared/shared-moderation/user-ban-modal.component.html31
+
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
+ src/app/shared/shared-moderation/video-block.component.html3
+
+
+ Block live ""
+ Block live ""
+ src/app/shared/shared-moderation/video-block.component.html4
+ Please describe the reason...Please describe the reason...
-
- src/app/shared/shared-moderation/video-block.component.html13
+ src/app/shared/shared-moderation/video-block.component.html13
+
-
- src/app/shared/shared-main/misc/top-menu-dropdown.component.html14src/app/shared/shared-main/misc/top-menu-dropdown.component.html24
- hh
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts14
- minmin
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts16src/app/shared/shared-main/angular/duration-formatter.pipe.ts23
- secsec
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts17
+ src/app/shared/shared-main/misc/top-menu-dropdown.component.html14
+ src/app/shared/shared-main/misc/top-menu-dropdown.component.html24
+
+
+ h
+ s
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts14
+
+
+ min
+ dk
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts16
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts23
+
+
+ sec
+ sn
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts17
+ Login
Oturum aç
-
- src/app/+login/login.component.html3
+ src/app/+login/login.component.html3
+
Sorry but there was an issue with the external login process. Please contact an administrator.
Sorry but there was an issue with the external login process. Please
- contact an administrator
- .
+ contact an administrator
+ .
-
- src/app/+login/login.component.html7
-
-
+ src/app/+login/login.component.html7
+
Request new verification email.
- Request new verification email.
-
- 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.
+ Yeni doğrulama e-postası iste.
+ src/app/+login/login.component.html12
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html16
+
+
+ This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances.
+ This instance allows registration. However, be careful to check the TermsTerms before creating an account. You may also search for another instance to match your exact needs at: https://joinpeertube.org/instances. src/app/+login/login.component.html60,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.html65,67
@@ -896,25 +1029,34 @@
UserKullanıcı
-
- 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 addressKullanıcı adı ya da e-posta adresi
-
- src/app/+login/login.component.html23
-
+ src/app/+login/login.component.html23
+
PasswordŞifre
-
- 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
- Click here to reset your password
-
- src/app/+login/login.component.html47
- Logging into an account lets you publish content Logging into an account lets you publish content
+ Şifrenizi sıfırlamak için buraya tıklayın
+ src/app/+login/login.component.html47
+
+
+ Logging into an account lets you publish content
+ Hesabınıza giriş yapmak içerik yayınlamanızı sağlarsrc/app/+login/login.component.html56,57
@@ -923,101 +1065,117 @@
LoginOturum aç
-
- src/app/menu/menu.component.html93src/app/+login/login.component.html44
+ src/app/menu/menu.component.html93
+ src/app/+login/login.component.html44
+ Or sign in with
- Or sign in with
-
- src/app/+login/login.component.html72
+ Ya da şununla oturum aç
+ src/app/+login/login.component.html72
+
Forgot your password
- Forgot your password
-
- src/app/+login/login.component.html91
+ Şifrenizi mi unuttunuz?
+ 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.We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.
-
- src/app/+login/login.component.html99
- Enter your email address and we will send you a link to reset your password. Enter your email address and we will send you a link to reset your password.
-
- src/app/+login/login.component.html103
+ src/app/+login/login.component.html99
+
+
+ Enter your email address and we will send you a link to reset your password.
+ E-posta adresinizi girin, şifrenizi sıfırlamak için bir bağlantı göndereceğiz.
+ src/app/+login/login.component.html103
+
- An email with the reset password instructions will be sent to .
-The link will expire within 1 hour.
+ An email with the reset password instructions will be sent to . The link will expire within 1 hour.An email with the reset password instructions will be sent to .
The link will expire within 1 hour.
-
- src/app/+login/login.component.ts126
+ src/app/+login/login.component.ts126
+
Email
- Email
-
- 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
+ E-posta
+ 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
- Email address
-
- src/app/+login/login.component.html109src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10
- ResetReset
-
+ E-posta adresi
+ src/app/+login/login.component.html109
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html10
+
+
+ Reset
+ SıfırlaPassword reset button
- src/app/+login/login.component.html122
-
+ src/app/+login/login.component.html122
+
-
- src/app/+search/search.component.html5
+ src/app/+search/search.component.html5
+
on this instanceon this instance
-
- src/app/+search/search.component.html7
+ src/app/+search/search.component.html7
+
on the vidiverseon the vidiverse
-
- src/app/+search/search.component.html8
+ src/app/+search/search.component.html8
+
Reset my password
- Reset my password
-
- src/app/+reset-password/reset-password.component.html3
+ Şifremi sıfırla
+ src/app/+reset-password/reset-password.component.html3
+
Confirm password
- Confirm password
-
- src/app/+reset-password/reset-password.component.html19
+ Şifreyi doğrula
+ src/app/+reset-password/reset-password.component.html19
+
Confirmed passwordConfirmed password
-
- src/app/+reset-password/reset-password.component.html21
+ src/app/+reset-password/reset-password.component.html21
+
Reset my passwordReset my password
-
- src/app/+reset-password/reset-password.component.html29
- BackBack
+ src/app/+reset-password/reset-password.component.html29
+
+
+ Back
+ Gerisrc/app/+signup/+register/register.component.ts41Button on the registration form to go to the previous step
-
- NextNext
+
+
+ Next
+ İlerisrc/app/+signup/+register/register.component.ts42Button on the registration form to go to the previous step
-
- SignupSignup
+
+
+ Signup
+ Kaydolsrc/app/+signup/+register/register.component.ts64
@@ -1027,157 +1185,158 @@ The link will expire within 1 hour.
for for
-
+
-
+
-
- src/app/+search/search.component.html11
+ src/app/+search/search.component.html11
+ Filters
-
- src/app/+search/search.component.html21
+ src/app/+search/search.component.html21
+
No results found
Sonuç bulunamadı
-
- src/app/+search/search.component.html33
+ src/app/+search/search.component.html33
+
subscribers
-
- subscribers
-
-
- src/app/+search/search.component.html60
+ abone
+ src/app/+search/search.component.html60
+
Welcome to PeerTube, dear administrator!
- Welcome to PeerTube, dear administrator!
-
- src/app/modal/welcome-modal.component.html3
+ PeerTube'a hoş geldin, sevgili yönetici!
+ src/app/modal/welcome-modal.component.html3
+
CLI documentation
-
- src/app/modal/welcome-modal.component.html12
+ src/app/modal/welcome-modal.component.html12
+
Upload or import videos, parse logs, prune storage directories, reset user password...Upload or import videos, parse logs, prune storage directories, reset user password...
-
- src/app/modal/welcome-modal.component.html15
+ src/app/modal/welcome-modal.component.html15
+
Administer documentation
-
- src/app/modal/welcome-modal.component.html19
+ src/app/modal/welcome-modal.component.html19
+
Managing users, following other instances, dealing with spammers...Managing users, following other instances, dealing with spammers...
-
- src/app/modal/welcome-modal.component.html22
+ src/app/modal/welcome-modal.component.html22
+
Use documentation
-
- src/app/modal/welcome-modal.component.html26
+ src/app/modal/welcome-modal.component.html26
+
Setup your account, managing video playlists, discover third-party applications...Setup your account, managing video playlists, discover third-party applications...
-
- src/app/modal/welcome-modal.component.html29
+ src/app/modal/welcome-modal.component.html29
+
Useful links
- Useful links
-
- src/app/modal/welcome-modal.component.html39
+ Yararlı bağlantılar
+ src/app/modal/welcome-modal.component.html39
+
Official PeerTube website (news, support, contribute...): https://joinpeertube.orgOfficial PeerTube website (news, support, contribute...):
- https://joinpeertube.org
-
+ https://joinpeertube.org
+
-
- src/app/modal/welcome-modal.component.html42
+ src/app/modal/welcome-modal.component.html42
+
Put your instance on the public PeerTube index: https://instances.joinpeertube.org/instancesPut your instance on the public PeerTube index:
- https://instances.joinpeertube.org/instances
-
+ https://instances.joinpeertube.org/instances
+
-
- src/app/modal/welcome-modal.component.html45
+ src/app/modal/welcome-modal.component.html45
+
It's time to configure your instance!It's time to configure your instance!
-
- src/app/modal/welcome-modal.component.html55
+ src/app/modal/welcome-modal.component.html55
+
Choosing your instance name, setting up a description, specifying who you are, why you created your instance and how long you plan to maintain your it is very important for visitors to understand on what type of instance they are.
-
- src/app/modal/welcome-modal.component.html58
- If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance. If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance.
-
- src/app/modal/welcome-modal.component.html64
-
+ src/app/modal/welcome-modal.component.html58
+
+
+ If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance.
+ If you want to open registrations, please decide what your moderation rules and instance terms of service are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on the appropriate PeerTube instance.
+ src/app/modal/welcome-modal.component.html64
+ Remind me laterRemind me later
-
- src/app/modal/welcome-modal.component.html74
+ src/app/modal/welcome-modal.component.html74
+
Configure my instanceConfigure my instance
-
- src/app/modal/welcome-modal.component.html81
+ src/app/modal/welcome-modal.component.html81
+
Configuration warning!Configuration warning!
-
- src/app/modal/instance-config-warning-modal.component.html3
+ src/app/modal/instance-config-warning-modal.component.html3
+
You enabled user registration on your instance but did not configure the following fields:You enabled user registration on your instance but did not configure the following fields:
-
- src/app/modal/instance-config-warning-modal.component.html10
+ src/app/modal/instance-config-warning-modal.component.html10
+
Instance nameInstance name
-
- src/app/modal/instance-config-warning-modal.component.html13
+ src/app/modal/instance-config-warning-modal.component.html13
+
Instance short descriptionInstance short description
-
- src/app/modal/instance-config-warning-modal.component.html14
+ src/app/modal/instance-config-warning-modal.component.html14
+
Who you areWho you are
-
- src/app/modal/instance-config-warning-modal.component.html16
+ src/app/modal/instance-config-warning-modal.component.html16
+
How long you plan to maintain your instanceHow long you plan to maintain your instance
-
- src/app/modal/instance-config-warning-modal.component.html17
+ src/app/modal/instance-config-warning-modal.component.html17
+
How you plan to pay your instanceHow you plan to pay your instance
-
- src/app/modal/instance-config-warning-modal.component.html18
+ src/app/modal/instance-config-warning-modal.component.html18
+
How you will moderate your instanceHow you will moderate your instance
-
- src/app/modal/instance-config-warning-modal.component.html20
+ src/app/modal/instance-config-warning-modal.component.html20
+
Instance termsInstance terms
-
- src/app/modal/instance-config-warning-modal.component.html21
- My settingsMy settings
+ src/app/modal/instance-config-warning-modal.component.html21
+
+
+ My settings
+ My settingssrc/app/modal/quick-settings-modal.component.html3
@@ -1186,8 +1345,10 @@ The link will expire within 1 hour.
src/app/menu/menu.component.html156
-
- These settings apply only to your session on this instance.These settings apply only to your session on this instance.
+
+
+ These settings apply only to your session on this instance.
+ These settings apply only to your session on this instance.src/app/modal/quick-settings-modal.component.html8
@@ -1197,80 +1358,82 @@ The link will expire within 1 hour.
Please consider configuring these fields to help people to choose the appropriate instance. Without them, your instance may not be referenced on the JoinPeerTube website.
Please consider configuring these fields to help people to choose
- the appropriate instance
- .
+ the appropriate instance
+ .
Without them, your instance may not be referenced on the
- JoinPeerTube website
- .
+ JoinPeerTube website
+ .
-
- src/app/modal/instance-config-warning-modal.component.html25
+ src/app/modal/instance-config-warning-modal.component.html25
+
Don't show me this warning anymoreDon't show me this warning anymore
-
- src/app/modal/instance-config-warning-modal.component.html33
+ src/app/modal/instance-config-warning-modal.component.html33
+
CloseClose
-
- src/app/modal/instance-config-warning-modal.component.html38src/app/shared/shared-video-live/live-stream-information.component.html34
- Update live settingsUpdate live settings
-
- src/app/shared/shared-video-live/live-stream-information.component.html39
+ src/app/modal/instance-config-warning-modal.component.html38
+ src/app/shared/shared-video-live/live-stream-information.component.html34
+
+
+ Update live settings
+ Update live settings
+ src/app/shared/shared-video-live/live-stream-information.component.html39
+ Configure
Configure
-
- src/app/modal/instance-config-warning-modal.component.html43
+ src/app/modal/instance-config-warning-modal.component.html43
+
Change the languageDili değiştir
-
- src/app/menu/language-chooser.component.html3
+ src/app/menu/language-chooser.component.html3
+
Help to translate PeerTube!
- Help to translate PeerTube!
-
- src/app/menu/language-chooser.component.html9
+ PeerTube'u çevirmeye yardım edin!
+ src/app/menu/language-chooser.component.html9
+
Public profile
- Public profile
-
- src/app/menu/menu.component.html23
-
-
+ Herkese açık profil
+ src/app/menu/menu.component.html23
+
Interface:
- Interface:
-
- src/app/menu/menu.component.html30
+ Arayüz:
+ src/app/menu/menu.component.html30
+
Videos:
- Videos:
-
- src/app/menu/menu.component.html37
+ Videolar:
+ src/app/menu/menu.component.html37
+
Sensitive:
- Sensitive:
-
- src/app/menu/menu.component.html46
-
+ Hassas:
+ src/app/menu/menu.component.html46
+
Help share videosHelp share videos
-
- src/app/menu/menu.component.html52
-
+ src/app/menu/menu.component.html52
+
Keyboard shortcutsKeyboard shortcuts
-
- src/app/menu/menu.component.html178src/app/menu/menu.component.html61
- powered by PeerTube - CopyLeft 2015-2021powered by PeerTube - CopyLeft 2015-2021
+ src/app/menu/menu.component.html178
+ src/app/menu/menu.component.html61
+
+
+ powered by PeerTube - CopyLeft 2015-2021
+ powered by PeerTube - CopyLeft 2015-2021src/app/menu/menu.component.html183
@@ -1278,94 +1441,104 @@ The link will expire within 1 hour.
Help
- Help
-
- src/app/menu/menu.component.html174
+ Yardım
+ src/app/menu/menu.component.html174
+
Get help using PeerTubeGet help using PeerTube
-
- src/app/menu/menu.component.html174
-
+ src/app/menu/menu.component.html174
+
powered by PeerTubepowered by PeerTube
-
- src/app/menu/menu.component.html184
-
+ src/app/menu/menu.component.html184
+
Log out
- Log out
-
- src/app/menu/menu.component.html66
- My accountMy account
-
- src/app/menu/menu.component.html77
- My libraryMy library
-
- src/app/menu/menu.component.html82
+ Çıkış yap
+ src/app/menu/menu.component.html66
+
+
+ My account
+ Hesabım
+ src/app/menu/menu.component.html77
+
+
+ My library
+ Kütüphanem
+ src/app/menu/menu.component.html82
+ Create an account
- Create an account
-
- src/app/menu/menu.component.html94src/app/+login/login.component.html50
- IN MY LIBRARYIN MY LIBRARY
-
- src/app/menu/menu.component.html98
-
-
-
+ Hesap oluştur
+ src/app/menu/menu.component.html94
+ src/app/+login/login.component.html50
+
+
+ IN MY LIBRARY
+ IN MY LIBRARY
+ src/app/menu/menu.component.html98
+ My videos
- My videos
-
- src/app/+my-library/my-library-routing.module.ts77src/app/+my-library/my-videos/my-videos.component.ts58
- My video importsMy video imports
-
- src/app/+my-library/my-library-routing.module.ts90
+ Videolarım
+ src/app/+my-library/my-library-routing.module.ts77
+ src/app/+my-library/my-videos/my-videos.component.ts58
+
+
+ My video imports
+ My video imports
+ src/app/+my-library/my-library-routing.module.ts90
+ My playlists
- My playlists
-
- src/app/+my-library/my-library-routing.module.ts40
- Create a new playlistCreate a new playlist
-
- src/app/+my-library/my-library-routing.module.ts49
+ Oynatma listelerim
+ src/app/+my-library/my-library-routing.module.ts40
+
+
+ Create a new playlist
+ Yeni bir oynatma listesi oluştur
+ src/app/+my-library/my-library-routing.module.ts49
+ My subscriptions
- My subscriptions
-
- src/app/+my-library/my-library-routing.module.ts99
-
+ Aboneliklerim
+ src/app/+my-library/my-library-routing.module.ts99
+
Videos
- Videos
-
- src/app/menu/menu.component.html102
- Interface: Interface:
-
- src/app/menu/menu.component.html169
+ Videolar
+ src/app/menu/menu.component.html102
+
+
+ Interface:
+ Arayüz:
+ src/app/menu/menu.component.html169
+ Playlists
- Playlists
-
- src/app/menu/menu.component.html107
+ Oynatma listeleri
+ src/app/menu/menu.component.html107
+
Subscriptions
- Subscriptions
-
- src/app/menu/menu.component.html112
+ Abonelikler
+ src/app/menu/menu.component.html112
+
History
- History
-
- src/app/menu/menu.component.html117
+ Geçmiş
+ src/app/menu/menu.component.html117
+
VIDEOS
- VIDEOS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html411
- Allow import with HTTP URL (e.g. YouTube)Allow import with HTTP URL (e.g. YouTube)
+ VİDEOLAR
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html411
+
+
+ Allow import with HTTP URL (e.g. YouTube)
+ Allow import with HTTP URL (e.g. YouTube)src/app/+admin/config/edit-custom-config/edit-custom-config.component.html422
@@ -1373,377 +1546,418 @@ The link will expire within 1 hour.
Discover
- Discover
-
- src/app/menu/menu.component.html127src/app/+videos/video-list/overview/video-overview.component.html1
+ Keşfet
+ src/app/menu/menu.component.html127
+ src/app/+videos/video-list/overview/video-overview.component.html1
+
TrendingÖne çıkanlar
-
- src/app/menu/menu.component.html132
+ src/app/menu/menu.component.html132
+
Most liked
- Most liked
-
- src/app/menu/menu.component.html137
+ En beğenilenler
+ src/app/menu/menu.component.html137
+
Recently addedSon eklenenler
-
- src/app/menu/menu.component.html142
+ src/app/menu/menu.component.html142
+
AdministrationAdministration
-
- src/app/menu/menu.component.html87
+ src/app/menu/menu.component.html87
+
AboutHakkında
-
- src/app/menu/menu.component.html161src/app/+accounts/account-about/account-about.component.html1
+ src/app/menu/menu.component.html161
+ src/app/+accounts/account-about/account-about.component.html1
+
Contact
- Contact
-
- src/app/menu/menu.component.html173
+ İletişim
+ src/app/menu/menu.component.html173
+
View your notifications
- View your notifications
-
- src/app/menu/notification.component.html3src/app/menu/notification.component.html11src/app/menu/notification.component.html11
+ Bildirimlerinize bakın
+ src/app/menu/notification.component.html3
+ src/app/menu/notification.component.html11
+ src/app/menu/notification.component.html11
+
Notifications
- Notifications
-
- src/app/menu/notification.component.html22src/app/+my-account/my-account-notifications/my-account-notifications.component.html1
+ Bildirimler
+ src/app/menu/notification.component.html22
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html1
+
Mark all as readMark 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
+ 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 preferencesUpdate your notification preferences
-
- src/app/menu/notification.component.html31
+ src/app/menu/notification.component.html31
+
See all your notificationsSee all your notifications
-
- src/app/menu/notification.component.html49
- I'm a teapotI'm a teapot
+ src/app/menu/notification.component.html49
+
+
+ I'm a teapot
+ I'm a teapotsrc/app/+page-not-found/page-not-found.component.ts20
-
- That's an error.That's an error.
+
+
+ That's an error.
+ That's an error.src/app/+page-not-found/page-not-found.component.html4
-
- We couldn't find any ressource tied to the URL you were looking for. We couldn't find any ressource tied to the URL you were looking for.
+
+
+ We couldn't find any ressource tied to the URL you were looking for.
+ We couldn't find any ressource tied to the URL you were looking for. src/app/+page-not-found/page-not-found.component.html6,8
-
- Possible reasons:Possible reasons:
+
+
+ Possible reasons:
+ Muhtemel sebepler:src/app/+page-not-found/page-not-found.component.html11Possible reasons preceding a list of reasons a `Not Found` error page may occur
-
- The page may have been moved or deletedThe page may have been moved or deleted
+
+
+ The page may have been moved or deleted
+ Sayfa taşınmış ya da silinmiş olabilirsrc/app/+page-not-found/page-not-found.component.html14
-
- You may have used an outdated or broken linkYou may have used an outdated or broken link
+
+
+ You may have used an outdated or broken link
+ Eskimiş ya da hatalı bir bağlantı kullanmış olabilirsinizsrc/app/+page-not-found/page-not-found.component.html15
-
- You may have typed the address or URL incorrectlyYou may have typed the address or URL incorrectly
+
+
+ You may have typed the address or URL incorrectly
+ Adresi ya da URL'yi yanlış yazmış olabilirsinizsrc/app/+page-not-found/page-not-found.component.html16
-
- The requested entity body blends sweet bits with a mellow earthiness. The requested entity body blends sweet bits with a mellow earthiness.
+
+
+ The requested entity body blends sweet bits with a mellow earthiness.
+ The requested entity body blends sweet bits with a mellow earthiness. src/app/+page-not-found/page-not-found.component.html26,27Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request
-
- Sepia seems to like it.Sepia seems to like it.
+
+
+ Sepia seems to like it.
+ Sepia seems to like it.src/app/+page-not-found/page-not-found.component.html28This is about Sepia's tea
-
- 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
+
+
+ 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
+ Search videos, channels…
- Search videos, channels…
-
- src/app/header/search-typeahead.component.html3
+ Videolarla kanalları arayın
+ src/app/header/search-typeahead.component.html3
+
GLOBAL SEARCHGLOBAL SEARCH
-
- src/app/header/search-typeahead.component.html26
+ src/app/header/search-typeahead.component.html26
+
using using
-
- src/app/header/search-typeahead.component.html28
+ 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
+ src/app/header/search-typeahead.component.html32
+
ADVANCED SEARCH
- ADVANCED SEARCH
-
- src/app/header/search-typeahead.component.html38
+ GELİŞMİŞ ARAMA
+ src/app/header/search-typeahead.component.html38
+
any instanceany instance
-
- src/app/header/search-typeahead.component.html41
+ src/app/header/search-typeahead.component.html41
+
only followed instancesonly followed instances
-
- src/app/header/search-typeahead.component.html42
+ src/app/header/search-typeahead.component.html42
+
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.html40
+ src/app/header/search-typeahead.component.html40
+
will list the matching channelwill list the matching channel
-
- src/app/header/search-typeahead.component.html49src/app/header/search-typeahead.component.html52
+ src/app/header/search-typeahead.component.html49
+ src/app/header/search-typeahead.component.html52
+
will list the matching videowill list the matching video
-
- src/app/header/search-typeahead.component.html55
+ src/app/header/search-typeahead.component.html55
+
Any other input will return matching video or channel names.Any other input will return matching video or channel names.
-
- src/app/header/search-typeahead.component.html58
+ src/app/header/search-typeahead.component.html58
+
Search...Ara...
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html6
-
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html6
+
In this instance's networkIn this instance's network
-
- src/app/header/suggestion.component.html14
+ src/app/header/suggestion.component.html14
+
In the vidiverseIn the vidiverse
-
- src/app/header/suggestion.component.html15
+ src/app/header/suggestion.component.html15
+
Sort
- Sort
-
- src/app/+search/search-filters.component.html7
+ Sırala
+ src/app/+search/search-filters.component.html7
+
Reset
-
- Reset
-
-
- src/app/+search/search-filters.component.html9src/app/+search/search-filters.component.html23src/app/+search/search-filters.component.html42src/app/+search/search-filters.component.html56src/app/+search/search-filters.component.html91
+ Sıfırla
+ 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.html56
+ src/app/+search/search-filters.component.html91
+
Published datePublished date
-
- src/app/+search/search-filters.component.html40
+ src/app/+search/search-filters.component.html40
+
Original publication yearOriginal publication year
-
- src/app/+search/search-filters.component.html54
+ src/app/+search/search-filters.component.html54
+
After...After...
-
- src/app/+search/search-filters.component.html66
+ src/app/+search/search-filters.component.html66
+
Before...Before...
-
- src/app/+search/search-filters.component.html76
+ src/app/+search/search-filters.component.html76
+
Duration
- Duration
-
- src/app/+search/search-filters.component.html89src/app/+videos/+video-watch/video-watch.component.html276
+ Süre
+ src/app/+search/search-filters.component.html89
+ src/app/+videos/+video-watch/video-watch.component.html276
+
Display sensitive content
- Display sensitive content
-
- src/app/+search/search-filters.component.html21
+ Hassas içeriği göster
+ src/app/+search/search-filters.component.html21
+
Yes
- Yes
-
- src/app/+search/search-filters.component.html29
+ Evet
+ src/app/+search/search-filters.component.html29
+
No
- No
-
- src/app/+search/search-filters.component.html34
+ Hayır
+ src/app/+search/search-filters.component.html34
+
CategoryKategori
-
- src/app/+search/search-filters.component.html102src/app/+videos/+video-watch/video-watch.component.html241src/app/+videos/+video-edit/shared/video-edit.component.html63
+ src/app/+search/search-filters.component.html102
+ src/app/+videos/+video-watch/video-watch.component.html241
+ src/app/+videos/+video-edit/shared/video-edit.component.html63
+
Reset
-
- Reset
-
-
- src/app/+search/search-filters.component.html104src/app/+search/search-filters.component.html117src/app/+search/search-filters.component.html130src/app/+search/search-filters.component.html145src/app/+search/search-filters.component.html153
+ Sıfırla
+ src/app/+search/search-filters.component.html104
+ src/app/+search/search-filters.component.html117
+ src/app/+search/search-filters.component.html130
+ src/app/+search/search-filters.component.html145
+ src/app/+search/search-filters.component.html153
+
Display all categories
- Display all categories
-
- src/app/+search/search-filters.component.html108
+ Bütün kategorileri göster
+ src/app/+search/search-filters.component.html108
+
Licence
- Licence
-
- src/app/+search/search-filters.component.html115src/app/+videos/+video-watch/video-watch.component.html250src/app/+videos/+video-edit/shared/video-edit.component.html74
+ Lisans
+ src/app/+search/search-filters.component.html115
+ src/app/+videos/+video-watch/video-watch.component.html250
+ src/app/+videos/+video-edit/shared/video-edit.component.html74
+
Display all licenses
- Display all licenses
-
- src/app/+search/search-filters.component.html121
+ Bütün lisansları göster
+ src/app/+search/search-filters.component.html121
+
Language
- Language
-
- src/app/+search/search-filters.component.html128src/app/+videos/+video-watch/video-watch.component.html259src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10src/app/+videos/+video-edit/shared/video-edit.component.html94
+ Dil
+ src/app/+search/search-filters.component.html128
+ src/app/+videos/+video-watch/video-watch.component.html259
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html10
+ src/app/+videos/+video-edit/shared/video-edit.component.html94
+
Display all languages
- Display all languages
-
- src/app/+search/search-filters.component.html134
+ Bütün dilleri göster
+ src/app/+search/search-filters.component.html134
+
All of these tagsAll of these tags
-
- src/app/+search/search-filters.component.html143
+ src/app/+search/search-filters.component.html143
+
One of these tagsOne of these tags
-
- src/app/+search/search-filters.component.html151
+ src/app/+search/search-filters.component.html151
+
Search targetSearch target
-
- src/app/+search/search-filters.component.html160
+ src/app/+search/search-filters.component.html160
+
VidiverseVidiverse
-
- src/app/+search/search-filters.component.html170
+ src/app/+search/search-filters.component.html170
+
Reset
-
- Reset
-
-
- src/app/+search/search-filters.component.html178
+ Sıfırla
+ src/app/+search/search-filters.component.html178
+
FilterFilter
-
- src/app/+search/search-filters.component.html181
-
+ src/app/+search/search-filters.component.html181
+
Video channelsVideo channels
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html1
+ src/app/+accounts/account-video-channels/account-video-channels.component.html1
+
Add captionAdd caption
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html5
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html5
+
Select the caption fileSelect the caption file
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html24
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html24
+
This will replace an existing caption!This will replace an existing caption!
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html31
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html31
+
Add this captionAdd this caption
-
- src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42
+ src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html42
+
Title
- Title
-
- src/app/+videos/+video-edit/shared/video-edit.component.html11
+ Başlık
+ src/app/+videos/+video-edit/shared/video-edit.component.html11
+
Tags
- Tags
-
- src/app/+videos/+video-watch/video-watch.component.html268src/app/+videos/+video-edit/shared/video-edit.component.html19
+ Etiketler
+ src/app/+videos/+video-watch/video-watch.component.html268
+ src/app/+videos/+video-edit/shared/video-edit.component.html19
+
Tags could be used to suggest relevant recommendations. There is a maximum of 5 tags. Press Enter to add a new tag.
Tags could be used to suggest relevant recommendations.
-
+
There is a maximum of 5 tags.
-
+
Press
- Enter
- to add a new tag.
+ Enter
+ to add a new tag.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html24
+ src/app/+videos/+video-edit/shared/video-edit.component.html24
+
Enter a new tagEnter a new tag
-
- src/app/shared/shared-forms/select/select-tags.component.html5
- extensionsextensions
-
- src/app/shared/shared-main/account/actor-avatar-info.component.ts41
- This image is too large.This image is too large.
+ src/app/shared/shared-forms/select/select-tags.component.html5
+
+
+ extensions
+ extensions
+ src/app/shared/shared-main/account/actor-avatar-info.component.ts41
+
+
+ This image is too large.
+ Bu resim çok büyük.src/app/shared/shared-main/account/actor-avatar-info.component.ts56
@@ -1752,689 +1966,768 @@ The link will expire within 1 hour.
No items foundNo items found
-
- src/app/shared/shared-forms/select/select-checkbox.component.html14
+ src/app/shared/shared-forms/select/select-checkbox.component.html14
+ Description
- Description
-
- src/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/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html28src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64src/app/+about/about-instance/about-instance.component.html113src/app/+videos/+video-edit/shared/video-edit.component.html38src/app/+admin/config/edit-custom-config/edit-custom-config.component.html39
+ Açıklama
+ 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/+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.html64
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html64
+ src/app/+about/about-instance/about-instance.component.html113
+ src/app/+videos/+video-edit/shared/video-edit.component.html38
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html39
+
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 license for your work. Choose the appropriate license for your work.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html79
+ src/app/+videos/+video-edit/shared/video-edit.component.html43
+
+
+ Choose the appropriate license for your work.
+ Choose the appropriate license for your work.
+ src/app/+videos/+video-edit/shared/video-edit.component.html79
+ Channel
- Channel
-
- Stepper label for the registration page asking information about the default channelsrc/app/+signup/+register/register.component.html33src/app/+signup/+register/register.component.html33src/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/+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-go-live.component.html6src/app/+videos/+video-edit/video-add-components/video-upload.component.html14src/app/+videos/+video-edit/shared/video-edit.component.html58
+ Kanal
+ Stepper label for the registration page asking information about the default channel
+ src/app/+signup/+register/register.component.html33
+ src/app/+signup/+register/register.component.html33
+ 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/+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-go-live.component.html6
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html14
+ src/app/+videos/+video-edit/shared/video-edit.component.html58
+
PrivacyGizlilik
-
- 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-watch/video-watch.component.html226src/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-go-live.component.html13src/app/+videos/+video-edit/video-add-components/video-upload.component.html21src/app/+videos/+video-edit/shared/video-edit.component.html106
+ 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-watch/video-watch.component.html226
+ 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-go-live.component.html13
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html21
+ src/app/+videos/+video-edit/shared/video-edit.component.html106
+
FAQ
- FAQ
-
- src/app/menu/menu.component.html175
+ SSS
+ src/app/menu/menu.component.html175
+
Frequently asked questions about PeerTube
- Frequently asked questions about PeerTube
-
- src/app/menu/menu.component.html175
+ PeerTube hakkında sık sorulan sorular
+ src/app/menu/menu.component.html175
+
API
- API
-
- src/app/menu/menu.component.html177
+ API
+ src/app/menu/menu.component.html177
+
API documentationAPI documentation
-
- src/app/menu/menu.component.html177
+ src/app/menu/menu.component.html177
+
Schedule publication ()Schedule publication (
)
-
- src/app/+videos/+video-edit/shared/video-edit.component.html117
+ src/app/+videos/+video-edit/shared/video-edit.component.html117
+
Contains sensitive contentContains sensitive content
-
- src/app/+videos/+video-edit/shared/video-edit.component.html131
+ src/app/+videos/+video-edit/shared/video-edit.component.html131
+
Some instances do not list videos containing mature or explicit content by default.Some instances do not list videos containing mature or explicit content by default.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html135
+ src/app/+videos/+video-edit/shared/video-edit.component.html135
+
Publish after transcodingPublish after transcoding
-
- src/app/+videos/+video-edit/shared/video-edit.component.html141
+ src/app/+videos/+video-edit/shared/video-edit.component.html141
+
If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html145
+ src/app/+videos/+video-edit/shared/video-edit.component.html145
+
Basic infoBasic info
-
- src/app/+videos/+video-edit/shared/video-edit.component.html5
+ src/app/+videos/+video-edit/shared/video-edit.component.html5
+
Add another captionAdd another caption
-
- src/app/+videos/+video-edit/shared/video-edit.component.html163
+ src/app/+videos/+video-edit/shared/video-edit.component.html163
+
See the subtitle file
- See the subtitle file
-
- src/app/+videos/+video-edit/shared/video-edit.component.html172
+ Altyazı dosyasına bakın
+ src/app/+videos/+video-edit/shared/video-edit.component.html172
+
- Already uploaded ✔
- Already uploaded ✔
-
- src/app/+videos/+video-edit/shared/video-edit.component.html176
+ Already uploaded ✔
+ Zaten yüklenmiş ✔
+ src/app/+videos/+video-edit/shared/video-edit.component.html176
+
Will be created on updateWill be created on update
-
- src/app/+videos/+video-edit/shared/video-edit.component.html184
+ src/app/+videos/+video-edit/shared/video-edit.component.html184
+
Cancel createCancel create
-
- src/app/+videos/+video-edit/shared/video-edit.component.html186
+ src/app/+videos/+video-edit/shared/video-edit.component.html186
+
Will be deleted on updateWill be deleted on update
-
- src/app/+videos/+video-edit/shared/video-edit.component.html192
+ src/app/+videos/+video-edit/shared/video-edit.component.html192
+
Cancel deletionCancel deletion
-
- src/app/+videos/+video-edit/shared/video-edit.component.html194
+ src/app/+videos/+video-edit/shared/video-edit.component.html194
+
No captions for now.No captions for now.
-
- src/app/+videos/+video-edit/shared/video-edit.component.html200
- Live settingsLive settings
-
- src/app/+videos/+video-edit/shared/video-edit.component.html208
- You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your livesYou 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
- This is a permanent liveThis is a permanent live
-
- 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
- Automatically publish a replay when your live endsAutomatically 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.html200
+
+
+ Live settings
+ Live settings
+ src/app/+videos/+video-edit/shared/video-edit.component.html208
+
+
+ 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
+
+
+ This is a permanent live
+ This is a permanent live
+ 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
+
+
+ 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
+ CaptionsCaptions
-
- src/app/+videos/+video-edit/shared/video-edit.component.html155
+ src/app/+videos/+video-edit/shared/video-edit.component.html155
+
Video previewVideo preview
-
- src/app/+videos/+video-edit/shared/video-edit.component.html267
+ src/app/+videos/+video-edit/shared/video-edit.component.html267
+
Support
- Support
-
- src/app/+videos/+video-edit/shared/video-edit.component.html276
+ Destek
+ src/app/+videos/+video-edit/shared/video-edit.component.html276
+
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 dateOriginal 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 settingsPlugin settings
-
- src/app/+videos/+video-edit/shared/video-edit.component.html330
+ src/app/+videos/+video-edit/shared/video-edit.component.html330
+
Enable video commentsVideo yorumlarını etkinleştir
-
- src/app/+videos/+video-edit/shared/video-edit.component.html317
+ src/app/+videos/+video-edit/shared/video-edit.component.html317
+
Enable downloadİndirmeyi etkinleştir
-
- src/app/+videos/+video-edit/shared/video-edit.component.html322
+ src/app/+videos/+video-edit/shared/video-edit.component.html322
+
Advanced settings
- Advanced settings
-
- src/app/+videos/+video-edit/shared/video-edit.component.html260
+ Gelişmiş ayarlar
+ src/app/+videos/+video-edit/shared/video-edit.component.html260
+
URL
- URL
-
- src/app/shared/shared-share-modal/video-share.component.html16src/app/shared/shared-share-modal/video-share.component.html71src/app/+videos/+video-edit/video-add-components/video-import-url.component.html6
+ URL
+ src/app/shared/shared-share-modal/video-share.component.html16
+ src/app/shared/shared-share-modal/video-share.component.html71
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.html6
+
You can import any URL supported by youtube-dl or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. You can import any URL supported by youtube-dl or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
-
- src/app/+videos/+video-edit/video-add-components/video-import-url.component.html11
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.html11
+
Sorry, but something went wrongSorry, but something went wrong
-
- src/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-go-live.component.html26src/app/+videos/+video-edit/video-add-components/video-upload.component.html74
+ 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-go-live.component.html26
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html74
+
Congratulations, the video behind will be imported! You can already add information about this video. Congratulations, the video behind
will be imported! You can already add information about this video.
-
- src/app/+videos/+video-edit/video-add-components/video-import-url.component.html48
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.html48
+
Update
- Update
-
- src/app/+videos/+video-edit/video-update.component.html3src/app/+videos/+video-edit/video-update.component.html18src/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-add-components/video-go-live.component.html45
+ Güncelle
+ src/app/+videos/+video-edit/video-update.component.html3
+ src/app/+videos/+video-edit/video-update.component.html18
+ 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-add-components/video-go-live.component.html45
+
Select the file to upload
- Select the file to upload
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html6src/app/+videos/+video-edit/video-add-components/video-upload.component.html8
+ Yüklenecek dosyayı seçin
+ 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
- Scheduled
-
- src/app/+videos/+video-edit/shared/video-edit.component.ts197
+ Sıraya alındı
+ src/app/+videos/+video-edit/shared/video-edit.component.ts197
+
Hide the video until a specific date
- Hide the video until a specific date
-
- src/app/+videos/+video-edit/shared/video-edit.component.ts198
+ Videoyu belirli bir tarihe dek gizle
+ src/app/+videos/+video-edit/shared/video-edit.component.ts198
+
Video background image
- Video background image
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html29
+ Videonun arkaplan resmi
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html29
+
Image that will be merged with your audio file. The chosen image will be definitive and cannot be modified.
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html32
- Total video uploadedTotal video uploaded
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html52
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html32
+
+
+ Total video uploaded
+ Total video uploaded
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html52
+ Processing…
- Processing…
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html54
- RetryRetry
-
+ İşleniyor…
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html54
+
+
+ Retry
+ Yeniden deneRetry failed upload of a video
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html68
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html68
+
Total video quota
- Total video quota
-
- src/app/shared/shared-main/users/user-quota.component.html3src/app/+admin/users/user-list/user-list.component.html141
+ Toplam video sınırı
+ src/app/shared/shared-main/users/user-quota.component.html3
+ src/app/+admin/users/user-list/user-list.component.html141
+
Congratulations! Your video is now available in your private library.
- Congratulations! Your video is now available in your private library.
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html79
+ Tebrikler! Artık videonuz özel kütüphanenizdedir.
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html79
+
Publish will be available when upload is finishedPublish will be available when upload is finished
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.html92
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html92
+
PublishPublish
-
- src/app/header/header.component.html5src/app/+videos/+video-edit/video-add-components/video-upload.component.html94
+ src/app/header/header.component.html5
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.html94
+
Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.
-
- src/app/+videos/+video-edit/video-add.component.html3
+ src/app/+videos/+video-edit/video-add.component.html3
+
Read instance rules for helpRead instance rules for help
-
- src/app/+videos/+video-edit/video-add.component.html4
+ src/app/+videos/+video-edit/video-add.component.html4
+
Select the torrent to importSelect the torrent to import
-
- 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
+
OROR
-
- 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 URIPaste 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
- Cannot create live because this instance have too many created livesCannot create live because this instance have too many created lives
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts91
- Cannot create live because you created too many livesCannot create live because you created too many lives
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts93
- Live published.Live published.
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
- Go LiveGo Live
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.html20
- Max live duration is . If your live reaches this limit, it will be automatically terminated.
- Max live duration is . If your live reaches this limit, it will be automatically terminated.
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html56
+
+
+ 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.ts91
+
+
+ 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.ts93
+
+
+ Live published.
+ Live published.
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts123
+
+
+ Go Live
+ Go Live
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.html20
+
+
+ Max live duration is . If your live reaches this limit, it will be automatically terminated.
+ Max live duration is . If your live reaches this limit, it will be automatically terminated.
-
- src/app/+videos/+video-edit/video-add-components/video-go-live.component.html30
+ src/app/+videos/+video-edit/video-add-components/video-go-live.component.html30
+
We recommend you to not use the root user to publish your videos, since it's the super-admin account of your instance. Instead, create a dedicated account to upload your videos.
We recommend you to not use the
- root
- user to publish your videos, since it's the super-admin account of your instance.
+ root
+ user to publish your videos, since it's the super-admin account of your instance.
-
+
Instead,
- create a dedicated account
- to upload your videos.
+ create a dedicated account
+ to upload your videos.
-
- src/app/+videos/+video-edit/video-add.component.html11
+ src/app/+videos/+video-edit/video-add.component.html11
+
Import Import
-
- src/app/+videos/+video-edit/video-add.component.html19
+ src/app/+videos/+video-edit/video-add.component.html19
+
Upload Upload
-
- src/app/+videos/+video-edit/video-add.component.html20
+ src/app/+videos/+video-edit/video-add.component.html20
+
Upload a file
- Upload a file
-
- src/app/+videos/+video-edit/video-add.component.html26
+ Dosya yükle
+ src/app/+videos/+video-edit/video-add.component.html26
+
Import with URL
- Import with URL
-
- src/app/+videos/+video-edit/video-add.component.html36
+ URL ile içe aktar
+ src/app/+videos/+video-edit/video-add.component.html36
+
Import with torrent
- Import with torrent
-
- src/app/+videos/+video-edit/video-add.component.html46
- Go liveGo live
-
- src/app/+videos/+video-edit/video-add.component.html56
+ Torrent ile içe aktar
+ src/app/+videos/+video-edit/video-add.component.html46
+
+
+ Go live
+ Go live
+ src/app/+videos/+video-edit/video-add.component.html56
+ Other videos
Other videos
-
- src/app/+videos/+video-watch/recommendations/recommended-videos.component.html5
+ src/app/+videos/+video-watch/recommendations/recommended-videos.component.html5
+
AUTOPLAYAUTOPLAY
-
- src/app/+videos/+video-watch/recommendations/recommended-videos.component.html10
+ src/app/+videos/+video-watch/recommendations/recommended-videos.component.html10
+
Report this commentReport this comment
-
- src/app/+videos/+video-watch/comment/video-comment.component.ts173
+ src/app/+videos/+video-watch/comment/video-comment.component.ts173
+
SharePaylaş
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html12src/app/shared/shared-share-modal/video-share.component.html3
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html12
+ src/app/shared/shared-share-modal/video-share.component.html3
+
Share the playlist
- Share the playlist
-
- src/app/shared/shared-share-modal/video-share.component.html11
+ Oynatma listesini paylaş
+ src/app/shared/shared-share-modal/video-share.component.html11
+
Share the playlist at this video positionShare the playlist at this video position
-
- src/app/shared/shared-share-modal/video-share.component.html58
+ src/app/shared/shared-share-modal/video-share.component.html58
+
Share the video
- Share the video
-
- src/app/shared/shared-share-modal/video-share.component.html66
+ Videoyu paylaş
+ src/app/shared/shared-share-modal/video-share.component.html66
+
QR-CodeQR-Code
-
- src/app/shared/shared-share-modal/video-share.component.html27src/app/shared/shared-share-modal/video-share.component.html81
+ src/app/shared/shared-share-modal/video-share.component.html27
+ src/app/shared/shared-share-modal/video-share.component.html81
+
The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
-
- src/app/shared/shared-share-modal/video-share.component.html44src/app/shared/shared-share-modal/video-share.component.html98
+ src/app/shared/shared-share-modal/video-share.component.html44
+ src/app/shared/shared-share-modal/video-share.component.html98
+
Embed
- Embed
-
- src/app/shared/shared-share-modal/video-share.component.html37src/app/shared/shared-share-modal/video-share.component.html91
+ Göm
+ src/app/shared/shared-share-modal/video-share.component.html37
+ src/app/shared/shared-share-modal/video-share.component.html91
+
Auto select subtitle
- Auto select subtitle
-
- src/app/shared/shared-share-modal/video-share.component.html128
+ Altyazıyı kendiliğinden seç
+ src/app/shared/shared-share-modal/video-share.component.html128
+
More customization
More customization
-
- src/app/shared/shared-share-modal/video-share.component.html223
+ src/app/shared/shared-share-modal/video-share.component.html223
+
Less customization
Less customization
-
- src/app/shared/shared-share-modal/video-share.component.html231
+ src/app/shared/shared-share-modal/video-share.component.html231
+
AutoplayAutoplay
-
- src/app/shared/shared-share-modal/video-share.component.html159
+ src/app/shared/shared-share-modal/video-share.component.html159
+
Support Support
-
- src/app/+videos/+video-watch/modal/video-support.component.html3
+ src/app/+videos/+video-watch/modal/video-support.component.html3
+
Maybe later
- Maybe later
-
- src/app/+videos/+video-watch/modal/video-support.component.html11
+ Belki daha sonra
+ src/app/+videos/+video-watch/modal/video-support.component.html11
+
MutedMuted
-
- src/app/+accounts/accounts.component.html19src/app/shared/shared-share-modal/video-share.component.html166
+ src/app/+accounts/accounts.component.html19
+ src/app/shared/shared-share-modal/video-share.component.html166
+
LoopLoop
-
- src/app/shared/shared-share-modal/video-share.component.html173
- Use origin instance URLUse origin instance URL
-
- src/app/shared/shared-share-modal/video-share.component.html180
+ src/app/shared/shared-share-modal/video-share.component.html173
+
+
+ Use origin instance URL
+ Use origin instance URL
+ src/app/shared/shared-share-modal/video-share.component.html180
+ Display video title
- Display video title
-
- src/app/shared/shared-share-modal/video-share.component.html189
+ Video başlığını göster
+ src/app/shared/shared-share-modal/video-share.component.html189
+
Display privacy warning
- Display privacy warning
-
- src/app/shared/shared-share-modal/video-share.component.html196
+ Gizlilik uyarısını göster
+ src/app/shared/shared-share-modal/video-share.component.html196
+
Display player controls
- Display player controls
-
- src/app/shared/shared-share-modal/video-share.component.html203
+ Oynatıcı kontrollerini göster
+ src/app/shared/shared-share-modal/video-share.component.html203
+
Display PeerTube button linkDisplay PeerTube button link
-
- src/app/shared/shared-share-modal/video-share.component.html210
+ src/app/shared/shared-share-modal/video-share.component.html210
+
PublicPublic
-
- src/app/+videos/+video-watch/video-watch-playlist.component.html11
+ src/app/+videos/+video-watch/video-watch-playlist.component.html11
+
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/video-watch.component.html21
+ src/app/+videos/+video-watch/video-watch.component.html21
+
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/video-watch.component.html25
+ src/app/+videos/+video-watch/video-watch.component.html25
+
This video will be published on . This video will be published on
.
-
- src/app/+videos/+video-watch/video-watch.component.html28
- This live has not started yet. This live has not started yet.
-
- src/app/+videos/+video-watch/video-watch.component.html33
- This live has ended. This live has ended.
-
- src/app/+videos/+video-watch/video-watch.component.html37
+ src/app/+videos/+video-watch/video-watch.component.html28
+
+
+ This live has not started yet.
+ Bu canlı yayın henüz başlamadı.
+ src/app/+videos/+video-watch/video-watch.component.html33
+
+
+ This live has ended.
+ Bu canlı yayın bitti.
+ src/app/+videos/+video-watch/video-watch.component.html37
+ This video is blocked.
- This video is blocked.
-
- src/app/+videos/+video-watch/video-watch.component.html41
- Published Published
-
- src/app/+videos/+video-watch/video-watch.component.html55src/app/+videos/+video-watch/video-watch.component.html68
-
-
+ Bu video engellendi.
+ src/app/+videos/+video-watch/video-watch.component.html41
+
+
+ Published
+ Published
+ src/app/+videos/+video-watch/video-watch.component.html55
+ src/app/+videos/+video-watch/video-watch.component.html68
+ SUPPORT
- SUPPORT
-
- src/app/+videos/+video-watch/video-watch.component.html104
+ DESTEKLE
+ src/app/+videos/+video-watch/video-watch.component.html104
+
SHARE
- SHARE
-
- src/app/+videos/+video-watch/video-watch.component.html109
+ PAYLAŞ
+ src/app/+videos/+video-watch/video-watch.component.html109
+
SAVE
- SAVE
-
- src/app/+videos/+video-watch/video-watch.component.html120
+ KAYDET
+ src/app/+videos/+video-watch/video-watch.component.html120
+
DOWNLOAD
- DOWNLOAD
-
- src/app/+videos/+video-watch/video-watch.component.html134
+ İNDİR
+ src/app/+videos/+video-watch/video-watch.component.html134
+
Like this video
- Like this video
-
- src/app/+videos/+video-watch/video-watch.component.ts132
+ Bu videoyu beğen
+ src/app/+videos/+video-watch/video-watch.component.ts132
+
Dislike this video
- Dislike this video
-
- src/app/+videos/+video-watch/video-watch.component.ts133
+ Bu videoyu beğenme
+ src/app/+videos/+video-watch/video-watch.component.ts133
+
Support options for this videoSupport options for this video
-
- src/app/+videos/+video-watch/video-watch.component.ts134
+ src/app/+videos/+video-watch/video-watch.component.ts134
+
By By
-
- src/app/+videos/+video-watch/video-watch.component.html186
+ src/app/+videos/+video-watch/video-watch.component.html186
+
Subscribe
- Subscribe
-
- src/app/shared/shared-user-subscription/subscribe-button.component.html9
+ Abone ol
+ 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
+ Bütün kanallara abone ol
+ src/app/shared/shared-user-subscription/subscribe-button.component.html11
+
channels subscribedchannels 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
- Daha fazlasını göster
-
- src/app/+videos/+video-watch/video-watch.component.html213
+ Daha fazla göster
+ src/app/+videos/+video-watch/video-watch.component.html213
+
Show less
- Daha azını göster
-
- src/app/+videos/+video-watch/video-watch.component.html219
+ Daha az göster
+ src/app/+videos/+video-watch/video-watch.component.html219
+
Origin instanceOrigin instance
-
- src/app/+videos/+video-watch/video-watch.component.html231
+ src/app/+videos/+video-watch/video-watch.component.html231
+
Originally publishedOriginally published
-
- src/app/+videos/+video-watch/video-watch.component.html236
+ src/app/+videos/+video-watch/video-watch.component.html236
+
Friendly Reminder:Friendly Reminder:
-
- src/app/+videos/+video-watch/video-watch.component.html299
+ src/app/+videos/+video-watch/video-watch.component.html299
+
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/video-watch.component.html301
+ src/app/+videos/+video-watch/video-watch.component.html301
+
More information
- More information
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html52src/app/+admin/system/jobs/jobs.component.html50src/app/+admin/moderation/video-comment-list/video-comment-list.component.html73src/app/+videos/+video-watch/video-watch.component.html304src/app/+admin/moderation/video-block-list/video-block-list.component.html53src/app/+admin/moderation/video-block-list/video-block-list.component.html53
+ Daha fazla bilgi
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html52
+ src/app/+admin/system/jobs/jobs.component.html50
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html73
+ src/app/+videos/+video-watch/video-watch.component.html304
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html53
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html53
+
The video was blocked due to automatic blocking of new videosThe video was blocked due to automatic blocking of new videos
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html74src/app/+admin/moderation/video-block-list/video-block-list.component.html74
- NSFWNSFW
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html84
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html74
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html74
+
+
+ NSFW
+ Müstehcen
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html84
+ Get more information
- Get more information
-
- src/app/+videos/+video-watch/video-watch.component.html304
+ Daha fazla bilgi edin
+ src/app/+videos/+video-watch/video-watch.component.html304
+
OK
-
- OK
-
-
- src/app/+videos/+video-watch/video-watch.component.html308
+ Tamam
+ src/app/+videos/+video-watch/video-watch.component.html308
+
1 Comment
- 1 Comment
-
- src/app/+videos/+video-watch/comment/video-comments.component.html6
+ 1 Yorum
+ src/app/+videos/+video-watch/comment/video-comments.component.html6
+
Comments
-
- Comments
-
-
- src/app/+videos/+video-watch/comment/video-comments.component.html7
+ Yorum
+ src/app/+videos/+video-watch/comment/video-comments.component.html7
+
CommentsComments
-
- src/app/+videos/+video-watch/comment/video-comments.component.html9
+ src/app/+videos/+video-watch/comment/video-comments.component.html9
+
SORT BY
SORT BY
-
- src/app/+videos/+video-watch/comment/video-comments.component.html16
+ src/app/+videos/+video-watch/comment/video-comments.component.html16
+
Most recent first (default)
- Most recent first (default)
-
- src/app/+videos/+video-watch/comment/video-comments.component.html19
+ Önce en yeniler (varsayılan)
+ src/app/+videos/+video-watch/comment/video-comments.component.html19
+
Most replies first
- Most replies first
-
- src/app/+videos/+video-watch/comment/video-comments.component.html20
+ Önce en çok yanıtlananlar
+ src/app/+videos/+video-watch/comment/video-comments.component.html20
+
No comments.Yorum yok.
-
- src/app/+videos/+video-watch/comment/video-comments.component.html33
+ src/app/+videos/+video-watch/comment/video-comments.component.html33
+
View replies from and others
@@ -2443,8 +2736,8 @@ The link will expire within 1 hour. and others
-
- src/app/+videos/+video-watch/comment/video-comments.component.html83
+ src/app/+videos/+video-watch/comment/video-comments.component.html83
+
View replies from
@@ -2452,288 +2745,336 @@ The link will expire within 1 hour. replies from
-
- src/app/+videos/+video-watch/comment/video-comments.component.html86
+ src/app/+videos/+video-watch/comment/video-comments.component.html86
+
View repliesView
replies
-
- src/app/+videos/+video-watch/comment/video-comments.component.html90
+ src/app/+videos/+video-watch/comment/video-comments.component.html90
+
Comments are disabled.
Yorumlar kapalı.
-
- src/app/+videos/+video-watch/comment/video-comments.component.html101
+ src/app/+videos/+video-watch/comment/video-comments.component.html101
+
Add comment...
- Add comment...
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html6
+ Yorum yaz...
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html6
+
Markdown compatibleMarkdown compatible
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html13
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html13
+
Markdown compatible that supports:Markdown compatible that supports:
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html15
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html15
+
Auto generated linksAuto generated links
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html18
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html18
+
Break linesBreak lines
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html19
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html19
+
ListsLists
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html20
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html20
+
EmphasisEmphasis
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html22
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html22
+
bold
- bold
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html23
+ kalın
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html23
+
italic
- italic
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html23
+ eğik
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html23
+
Emoji shortcuts
- Emoji shortcuts
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html26
+ Emoji kısayolları
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html26
+
Emoji markupEmoji markup
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html30
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html30
+
See complete listSee complete list
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html32
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html32
+
You are one step away from commentingYou are one step away from commenting
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html55
- 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/comment/video-comment-add.component.html55
+
+
+ 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/comment/video-comment-add.component.html60,61
-
-
Login to commentLogin to comment
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html72
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html72
+
Markdown Emoji ListMarkdown Emoji List
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.html80
+ src/app/+videos/+video-watch/comment/video-comment-add.component.html80
+
CommentComment
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.ts67
+ src/app/+videos/+video-watch/comment/video-comment-add.component.ts67
+
ReplyReply
-
- src/app/+videos/+video-watch/comment/video-comment-add.component.ts69
+ src/app/+videos/+video-watch/comment/video-comment-add.component.ts69
+
Highlighted commentHighlighted comment
-
- src/app/+videos/+video-watch/comment/video-comment.component.html20
+ src/app/+videos/+video-watch/comment/video-comment.component.html20
+
ReplyReply
-
- src/app/+videos/+video-watch/comment/video-comment.component.html46
+ src/app/+videos/+video-watch/comment/video-comment.component.html46
+
This comment has been deletedThis comment has been deleted
-
- src/app/+videos/+video-watch/comment/video-comment.component.html63
+ src/app/+videos/+video-watch/comment/video-comment.component.html63
+
Video redundanciesVideo redundancies
-
- src/app/+admin/admin.component.ts39
+ src/app/+admin/admin.component.ts39
+
1 host (without "http://") per line1 host (without "http://") per line
-
- src/app/shared/shared-moderation/batch-domains-modal.component.html11
+ src/app/shared/shared-moderation/batch-domains-modal.component.html11
+
Your report will be sent to moderators of and will be forwarded to the comment origin () too.
Your report will be sent to moderators of
- and will be forwarded to the comment origin (
+ and will be forwarded to the comment origin (
) too
- .
+ .
-
- src/app/shared/shared-moderation/report-modals/report.component.html36src/app/shared/shared-moderation/report-modals/report.component.html36
- Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?
+ src/app/shared/shared-moderation/report-modals/report.component.html36
+ src/app/shared/shared-moderation/report-modals/report.component.html36
+
+
+ Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?
+ Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?src/app/+my-account/my-account-applications/my-account-applications.component.ts41
-
- Renew tokenRenew token
+
+
+ Renew token
+ Renew tokensrc/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.
+
+
+ Token renewed. Update your client configuration accordingly.
+ Token renewed. Update your client configuration accordingly.src/app/+my-account/my-account-applications/my-account-applications.component.ts49
-
- ApplicationsApplications
+
+
+ Applications
+ Uygulamalarsrc/app/+my-account/my-account-applications/my-account-applications.component.html3
-
- SUBSCRIPTION FEEDSUBSCRIPTION FEED
+
+
+ SUBSCRIPTION FEED
+ SUBSCRIPTION FEEDsrc/app/+my-account/my-account-applications/my-account-applications.component.html8
-
- Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.
+
+
+ Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.
+ Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. src/app/+my-account/my-account-applications/my-account-applications.component.html10,12
-
- Feed URLFeed URL
+
+
+ Feed URL
+ Feed URLsrc/app/+my-account/my-account-applications/my-account-applications.component.html18
-
- Feed TokenFeed Token
+
+
+ Feed Token
+ Feed Tokensrc/app/+my-account/my-account-applications/my-account-applications.component.html23
-
- ⚠️ Never share your feed token with anyone.⚠️ Never share your feed token with anyone.
+
+
+ ⚠️ Never share your feed token with anyone.
+ ⚠️ Never share your feed token with anyone.src/app/+my-account/my-account-applications/my-account-applications.component.html26
-
- Renew tokenRenew token
-
- src/app/+my-account/my-account-applications/my-account-applications.component.html35
-
+
+
+ Renew token
+ Renew token
+ src/app/+my-account/my-account-applications/my-account-applications.component.html35
+ Filter...Filter...
-
- src/app/shared/shared-moderation/server-blocklist.component.html23src/app/shared/shared-moderation/account-blocklist.component.html16src/app/shared/shared-abuse-list/abuse-list-table.component.html27src/app/+admin/follows/following-list/following-list.component.html23src/app/shared/shared-moderation/account-blocklist.component.html16src/app/shared/shared-moderation/server-blocklist.component.html23src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42src/app/+admin/moderation/video-block-list/video-block-list.component.html29src/app/+admin/users/user-list/user-list.component.html37src/app/+admin/follows/followers-list/followers-list.component.html16
+ src/app/shared/shared-moderation/server-blocklist.component.html23
+ src/app/shared/shared-moderation/account-blocklist.component.html16
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html27
+ src/app/+admin/follows/following-list/following-list.component.html23
+ src/app/shared/shared-moderation/account-blocklist.component.html16
+ src/app/shared/shared-moderation/server-blocklist.component.html23
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html42
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html29
+ src/app/+admin/users/user-list/user-list.component.html37
+ src/app/+admin/follows/followers-list/followers-list.component.html16
+
Clear filtersClear filters
-
- src/app/+my-library/my-videos/my-videos.component.html26src/app/+my-library/my-video-playlists/my-video-playlists.component.html13src/app/+my-library/my-subscriptions/my-subscriptions.component.html14src/app/+my-library/my-history/my-history.component.html14src/app/shared/shared-moderation/server-blocklist.component.html27src/app/shared/shared-moderation/account-blocklist.component.html20src/app/shared/shared-abuse-list/abuse-list-table.component.html31src/app/+my-library/+my-video-channels/my-video-channels.component.html14src/app/+admin/follows/following-list/following-list.component.html27src/app/shared/shared-moderation/account-blocklist.component.html20src/app/shared/shared-moderation/server-blocklist.component.html27src/app/+admin/moderation/video-comment-list/video-comment-list.component.html46src/app/+admin/moderation/video-block-list/video-block-list.component.html33src/app/+admin/users/user-list/user-list.component.html41src/app/+admin/follows/followers-list/followers-list.component.html20
+ src/app/+my-library/my-videos/my-videos.component.html26
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html13
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html14
+ src/app/+my-library/my-history/my-history.component.html14
+ src/app/shared/shared-moderation/server-blocklist.component.html27
+ src/app/shared/shared-moderation/account-blocklist.component.html20
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html31
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html14
+ src/app/+admin/follows/following-list/following-list.component.html27
+ src/app/shared/shared-moderation/account-blocklist.component.html20
+ src/app/shared/shared-moderation/server-blocklist.component.html27
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html46
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html33
+ src/app/+admin/users/user-list/user-list.component.html41
+ src/app/+admin/follows/followers-list/followers-list.component.html20
+
Video/Comment/AccountVideo/Comment/Account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html42
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html42
+
IDID
-
- src/app/+admin/system/jobs/jobs.component.html41
+ src/app/+admin/system/jobs/jobs.component.html41
+
Follower handleFollower handle
-
- src/app/+admin/follows/followers-list/followers-list.component.html28
+ src/app/+admin/follows/followers-list/followers-list.component.html28
+
StateState
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html19src/app/+admin/system/jobs/jobs.component.html43
-
-
-
-
-
+ src/app/+my-library/my-video-imports/my-video-imports.component.html19
+ src/app/+admin/system/jobs/jobs.component.html43
+
Created Created
-
-
+
+
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html20src/app/shared/shared-abuse-list/abuse-list-table.component.html43src/app/+admin/system/jobs/jobs.component.html44src/app/+admin/follows/following-list/following-list.component.html37src/app/+admin/follows/followers-list/followers-list.component.html31
+ src/app/+my-library/my-video-imports/my-video-imports.component.html20
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html43
+ src/app/+admin/system/jobs/jobs.component.html44
+ src/app/+admin/follows/following-list/following-list.component.html37
+ src/app/+admin/follows/followers-list/followers-list.component.html31
+
Open actor page in a new tabOpen actor page in a new tab
-
- src/app/+admin/follows/followers-list/followers-list.component.html46
+ src/app/+admin/follows/followers-list/followers-list.component.html46
+
AcceptedAccepted
-
- src/app/+admin/follows/following-list/following-list.component.html55src/app/+admin/follows/followers-list/followers-list.component.html53
+ src/app/+admin/follows/following-list/following-list.component.html55
+ src/app/+admin/follows/followers-list/followers-list.component.html53
+
PendingPending
-
- src/app/+admin/follows/following-list/following-list.component.html58src/app/+admin/follows/followers-list/followers-list.component.html56
+ src/app/+admin/follows/following-list/following-list.component.html58
+ src/app/+admin/follows/followers-list/followers-list.component.html56
+
AcceptAccept
-
- src/app/+my-library/my-ownership/my-ownership.component.html33src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html30src/app/+admin/follows/followers-list/followers-list.component.html39
+ src/app/+my-library/my-ownership/my-ownership.component.html33
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html30
+ src/app/+admin/follows/followers-list/followers-list.component.html39
+
RefuseRefuse
-
- src/app/+my-library/my-ownership/my-ownership.component.html34src/app/+admin/follows/followers-list/followers-list.component.html40
+ src/app/+my-library/my-ownership/my-ownership.component.html34
+ src/app/+admin/follows/followers-list/followers-list.component.html40
+
No follower found matching current filters.No follower found matching current filters.
-
- src/app/+admin/follows/followers-list/followers-list.component.html68
+ src/app/+admin/follows/followers-list/followers-list.component.html68
+
Your instance doesn't have any follower.Your instance doesn't have any follower.
-
- src/app/+admin/follows/followers-list/followers-list.component.html69
+ src/app/+admin/follows/followers-list/followers-list.component.html69
+
Showing to of followersShowing
@@ -2741,29 +3082,31 @@ The link will expire within 1 hour. of
followers
-
- src/app/+admin/follows/followers-list/followers-list.component.html10
+ src/app/+admin/follows/followers-list/followers-list.component.html10
+
-
- src/app/shared/shared-moderation/batch-domains-modal.component.html3
+ src/app/shared/shared-moderation/batch-domains-modal.component.html3
+
HostHost
-
- src/app/+admin/follows/following-list/following-list.component.html35
+ src/app/+admin/follows/following-list/following-list.component.html35
+
Redundancy allowed Redundancy allowed
-
-
+
+
-
- src/app/+admin/follows/following-list/following-list.component.html38
- UnfollowUnfollow
+ src/app/+admin/follows/following-list/following-list.component.html38
+
+
+ Unfollow
+ Unfollowsrc/app/+admin/follows/following-list/following-list.component.html45
@@ -2772,18 +3115,20 @@ The link will expire within 1 hour.
Open instance in a new tabOpen instance in a new tab
-
- src/app/shared/shared-moderation/server-blocklist.component.html46src/app/+admin/follows/following-list/following-list.component.html48src/app/shared/shared-moderation/server-blocklist.component.html46
+ src/app/shared/shared-moderation/server-blocklist.component.html46
+ src/app/+admin/follows/following-list/following-list.component.html48
+ src/app/shared/shared-moderation/server-blocklist.component.html46
+ No host found matching current filters.No host found matching current filters.
-
- src/app/+admin/follows/following-list/following-list.component.html74
+ src/app/+admin/follows/following-list/following-list.component.html74
+
Your instance is not following anyone.Your instance is not following anyone.
-
- src/app/+admin/follows/following-list/following-list.component.html75
+ src/app/+admin/follows/following-list/following-list.component.html75
+
Showing to of hostsShowing
@@ -2791,14 +3136,16 @@ The link will expire within 1 hour. of
hosts
-
- src/app/+admin/follows/following-list/following-list.component.html10
+ src/app/+admin/follows/following-list/following-list.component.html10
+
Follow domainsFollow domains
-
- src/app/+admin/follows/following-list/following-list.component.html82
- Follow instancesFollow instances
+ src/app/+admin/follows/following-list/following-list.component.html82
+
+
+ Follow instances
+ Follow instancessrc/app/+admin/follows/following-list/following-list.component.html17
@@ -2807,169 +3154,196 @@ The link will expire within 1 hour.
Videos redundanciesVideos redundancies
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html3
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html3
+ My videos duplicated by remote instancesMy videos duplicated by remote instances
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html12
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html12
+
Remote videos duplicated by my instanceRemote videos duplicated by my instance
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html13
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html13
+
Create userCreate user
-
- src/app/+admin/users/user-list/user-list.component.html20
+ src/app/+admin/users/user-list/user-list.component.html20
+
Table parametersTable parameters
-
- src/app/+admin/users/user-list/user-list.component.html59
+ src/app/+admin/users/user-list/user-list.component.html59
+
Select columnsSelect columns
-
- src/app/+admin/users/user-list/user-list.component.html65
+ src/app/+admin/users/user-list/user-list.component.html65
+
Highlight banned usersHighlight banned users
-
- src/app/+admin/users/user-list/user-list.component.html71
+ src/app/+admin/users/user-list/user-list.component.html71
+
UsernameKullanıcı adı
-
- 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
- e.g. jane_doee.g. jane_doe
-
+ 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_doeUsername choice placeholder in the registration form
- src/app/+signup/+register/register-step-user.component.html27
+ src/app/+signup/+register/register-step-user.component.html27
+
johnjohn
-
- src/app/+admin/users/user-edit/user-edit.component.html85src/app/+admin/users/user-edit/user-edit.component.html85
+ src/app/+admin/users/user-edit/user-edit.component.html85
+ src/app/+admin/users/user-edit/user-edit.component.html85
+
mail@example.commail@example.com
-
- src/app/+admin/users/user-edit/user-edit.component.html107src/app/+admin/users/user-edit/user-edit.component.html107
+ src/app/+admin/users/user-edit/user-edit.component.html107
+ src/app/+admin/users/user-edit/user-edit.component.html107
+
If you leave the password empty, an email will be sent to the user.
If you leave the password empty, an email will be sent to the user.
-
- src/app/+admin/users/user-edit/user-edit.component.html121src/app/+admin/users/user-edit/user-edit.component.html121
+ src/app/+admin/users/user-edit/user-edit.component.html121
+ src/app/+admin/users/user-edit/user-edit.component.html121
+
RoleRole
-
- 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 ~ .
Transcoding is enabled. The video quota only takes into account
- original
- video size.
-
+ original
+ video size.
+
At most, this user could upload ~
.
-
- src/app/+admin/users/user-edit/user-edit.component.html161src/app/+admin/users/user-edit/user-edit.component.html161
+ src/app/+admin/users/user-edit/user-edit.component.html161
+ src/app/+admin/users/user-edit/user-edit.component.html161
+
Daily video quotaGünlük video kotası
-
- src/app/shared/shared-main/users/user-quota.component.html13src/app/+admin/users/user-edit/user-edit.component.html167src/app/+admin/users/user-edit/user-edit.component.html167
+ src/app/shared/shared-main/users/user-quota.component.html13
+ src/app/+admin/users/user-edit/user-edit.component.html167
+ src/app/+admin/users/user-edit/user-edit.component.html167
+
Doesn't need review before a video goes publicDoesn't need review before a video goes public
-
- src/app/+admin/users/user-edit/user-edit.component.html180src/app/+admin/users/user-edit/user-edit.component.html180
+ src/app/+admin/users/user-edit/user-edit.component.html180
+ src/app/+admin/users/user-edit/user-edit.component.html180
+
Send a link to reset the password by email to the userSend a link to reset the password by email to the user
-
- src/app/+admin/users/user-edit/user-edit.component.html205src/app/+admin/users/user-edit/user-edit.component.html205
+ src/app/+admin/users/user-edit/user-edit.component.html205
+ src/app/+admin/users/user-edit/user-edit.component.html205
+
Ask for new passwordAsk for new password
-
- src/app/+admin/users/user-edit/user-edit.component.html206src/app/+admin/users/user-edit/user-edit.component.html206
+ src/app/+admin/users/user-edit/user-edit.component.html206
+ src/app/+admin/users/user-edit/user-edit.component.html206
+
Manually set the user passwordManually set the user password
-
- src/app/+admin/users/user-edit/user-edit.component.html210src/app/+admin/users/user-edit/user-edit.component.html210
+ src/app/+admin/users/user-edit/user-edit.component.html210
+ src/app/+admin/users/user-edit/user-edit.component.html210
+
ShowGöster
-
- src/app/+admin/users/user-edit/user-password.component.html10
+ src/app/+admin/users/user-edit/user-password.component.html10
+
HideHide
-
- src/app/+admin/users/user-edit/user-password.component.html11
+ src/app/+admin/users/user-edit/user-password.component.html11
+
Batch actionsBatch actions
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22src/app/+admin/users/user-list/user-list.component.html13src/app/+admin/users/user-list/user-list.component.html13
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html22
+ src/app/+admin/users/user-list/user-list.component.html13
+ src/app/+admin/users/user-list/user-list.component.html13
+
Advanced user filtersAdvanced user filters
-
- src/app/+admin/users/user-list/user-list.component.html32
+ src/app/+admin/users/user-list/user-list.component.html32
+
Banned users
- Banned users
-
- src/app/+admin/users/user-list/user-list.component.html33
+ Yasaklı kullanıcılar
+ src/app/+admin/users/user-list/user-list.component.html33
+
The user was banned
- The user was banned
-
- src/app/+admin/users/user-list/user-list.component.html161src/app/+admin/users/user-list/user-list.component.html161
+ Kullanıcı yasaklandı
+ src/app/+admin/users/user-list/user-list.component.html161
+ src/app/+admin/users/user-list/user-list.component.html161
+
Open account in a new tabOpen account in a new tab
-
- src/app/+my-library/my-ownership/my-ownership.component.html38src/app/shared/shared-moderation/account-blocklist.component.html39src/app/shared/shared-abuse-list/abuse-list-table.component.html66src/app/shared/shared-abuse-list/abuse-list-table.component.html66src/app/shared/shared-moderation/account-blocklist.component.html39src/app/+admin/moderation/video-comment-list/video-comment-list.component.html87src/app/+admin/users/user-list/user-list.component.html107
+ src/app/+my-library/my-ownership/my-ownership.component.html38
+ src/app/shared/shared-moderation/account-blocklist.component.html39
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html66
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html66
+ src/app/shared/shared-moderation/account-blocklist.component.html39
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html87
+ src/app/+admin/users/user-list/user-list.component.html107
+
Deleted account
Deleted account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html82
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html82
+
User's email must be verified to loginUser's email must be verified to login
-
- src/app/+admin/users/user-list/user-list.component.html130src/app/+admin/users/user-list/user-list.component.html130
+ src/app/+admin/users/user-list/user-list.component.html130
+ src/app/+admin/users/user-list/user-list.component.html130
+
User's email is verified / User can login without email verificationUser's email is verified / User can login without email verification
-
- src/app/+admin/users/user-list/user-list.component.html134
+ src/app/+admin/users/user-list/user-list.component.html134
+
Total daily video quotaTotal daily video quota
-
- src/app/+admin/users/user-list/user-list.component.html151
+ src/app/+admin/users/user-list/user-list.component.html151
+
Ban reason:
- Ban reason:
-
- src/app/+admin/users/user-list/user-list.component.html178
+ Yasak sebebi
+ src/app/+admin/users/user-list/user-list.component.html178
+
Showing to of usersShowing
@@ -2977,177 +3351,203 @@ The link will expire within 1 hour. of
users
-
- src/app/+admin/users/user-list/user-list.component.html6
+ src/app/+admin/users/user-list/user-list.component.html6
+
ModerationModeration
-
- src/app/+my-account/my-account.component.ts28src/app/+admin/admin.component.ts47
+ src/app/+my-account/my-account.component.ts28
+ src/app/+admin/admin.component.ts47
+
ReportsReports
-
- src/app/+admin/admin.component.ts53src/app/+admin/moderation/moderation.routes.ts37
+ src/app/+admin/admin.component.ts53
+ src/app/+admin/moderation/moderation.routes.ts37
+
Video blocksVideo blocks
-
- src/app/+admin/admin.component.ts60
- Video commentsVideo comments
-
- src/app/+admin/admin.component.ts67src/app/+admin/moderation/moderation.routes.ts86
+ src/app/+admin/admin.component.ts60
+
+
+ Video comments
+ Video comments
+ src/app/+admin/admin.component.ts67
+ src/app/+admin/moderation/moderation.routes.ts86
+ Muted accountsMuted accounts
-
- src/app/+my-account/my-account.component.ts31src/app/+my-account/my-account-routing.module.ts86src/app/+admin/admin.component.ts74src/app/+admin/moderation/moderation.routes.ts98
+ src/app/+my-account/my-account.component.ts31
+ src/app/+my-account/my-account-routing.module.ts86
+ src/app/+admin/admin.component.ts74
+ src/app/+admin/moderation/moderation.routes.ts98
+
Muted serversMuted servers
-
- src/app/+my-account/my-account.component.ts36src/app/+my-account/my-account-routing.module.ts95src/app/+admin/admin.component.ts81
+ src/app/+my-account/my-account.component.ts36
+ src/app/+my-account/my-account-routing.module.ts95
+ src/app/+admin/admin.component.ts81
+
Users
- Users
-
- src/app/+admin/admin.component.ts88
+ Kullanıcılar
+ src/app/+admin/admin.component.ts88
+
ConfigurationConfiguration
-
- src/app/+admin/admin.component.ts95
+ src/app/+admin/admin.component.ts95
+
Video blocksVideo blocks
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html3
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html3
+
Muted accountsMuted accounts
-
- src/app/shared/shared-moderation/account-blocklist.component.html3src/app/shared/shared-moderation/account-blocklist.component.html3
+ src/app/shared/shared-moderation/account-blocklist.component.html3
+ src/app/shared/shared-moderation/account-blocklist.component.html3
+
Muted serversMuted servers
-
- src/app/shared/shared-moderation/server-blocklist.component.html3src/app/shared/shared-moderation/server-blocklist.component.html3
+ src/app/shared/shared-moderation/server-blocklist.component.html3
+ src/app/shared/shared-moderation/server-blocklist.component.html3
+
Advanced block filtersAdvanced block filters
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html23
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html23
+
Automatic blocksAutomatic blocks
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html24
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html24
+
Manual blocksManual blocks
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html25
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html25
+
Video Video
-
-
+
+
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html43src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html43
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html29
+
Total size
- Total size
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html30
+ Toplam boyut
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html30
+
List redundanciesList redundancies
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html37
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html37
+
Your instance doesn't mirror any video.Your instance doesn't mirror any video.
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html81
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html81
+
Your instance has no mirrored videos.Your instance has no mirrored videos.
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html82
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html82
+
Enabled strategies statsEnabled strategies stats
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html91
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html91
+
No redundancy strategy is enabled on your instance.
No redundancy strategy is enabled on your instance.
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html96
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html96
+
SensitiveSensitive
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html44
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html44
+
UnfederatedUnfederated
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html45src/app/+admin/moderation/video-block-list/video-block-list.component.html88
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html45
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html88
+
Date Date
-
-
+
+
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html62src/app/+admin/moderation/video-block-list/video-block-list.component.html46
- Select this rowSelect this row
-
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70src/app/+admin/users/user-list/user-list.component.html91
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html62
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html46
+
+
+ Select this row
+ Select this row
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html70
+ src/app/+admin/users/user-list/user-list.component.html91
+ ActionsActions
-
- src/app/+my-library/my-ownership/my-ownership.component.html18src/app/shared/shared-abuse-list/abuse-list-table.component.html61src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82src/app/+admin/moderation/video-block-list/video-block-list.component.html62
- Commented videoCommented video
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html103
- No comments found matching current filters.No comments found matching current filters.
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html128
- No comments found.No comments found.
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html129
+ src/app/+my-library/my-ownership/my-ownership.component.html18
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html61
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html82
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html62
+
+
+ Commented video
+ Commented video
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html103
+
+
+ No comments found matching current filters.
+ No comments found matching current filters.
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html128
+
+
+ No comments found.
+ No comments found.
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html129
+ No abuses found matching current filters.No abuses found matching current filters.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html188
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html188
+
No abuses found.No abuses found.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html189
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html189
+
Block reason:
- Block reason:
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html104
+ Engel sebebi:
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html104
+
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.html124
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html124
+
No blocked video found.No blocked video found.
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html125
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html125
+
Showing to of blocked videosShowing
@@ -3155,148 +3555,159 @@ The link will expire within 1 hour. of
blocked videos
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.html10
+ src/app/+admin/moderation/video-block-list/video-block-list.component.html10
+
ReportsReports
-
- src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3src/app/+admin/moderation/abuse-list/abuse-list.component.html3
+ src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html3
+ src/app/+admin/moderation/abuse-list/abuse-list.component.html3
+
Moderation commentModeration comment
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.html3
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html3
+
This comment can only be seen by you or the other moderators.This comment can only be seen by you or the other moderators.
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.html21
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html21
+
Update this commentUpdate this comment
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.html31
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.html31
+
Advanced report filtersAdvanced report filters
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html18
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html18
+
Unsolved reportsUnsolved reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html19
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html19
+
Accepted reportsAccepted reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html20
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html20
+
Refused reportsRefused reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html21
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html21
+
Reports with blocked videosReports with blocked videos
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html22
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html22
+
Reports with deleted videosReports with deleted videos
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html23
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html23
+
ReporterReporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html41src/app/shared/shared-abuse-list/abuse-details.component.html7
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html41
+ src/app/shared/shared-abuse-list/abuse-details.component.html7
+
-
+
-
-
+
+
-
- src/app/shared/shared-abuse-list/abuse-details.component.html27
+ src/app/shared/shared-abuse-list/abuse-details.component.html27
+
{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.html27
+ src/app/shared/shared-abuse-list/abuse-details.component.html27
+
Video
- Video
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html18src/app/+my-library/my-ownership/my-ownership.component.html20src/app/+admin/moderation/video-comment-list/video-comment-list.component.html60
- CommentComment
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html61
+ Video
+ src/app/+my-library/my-video-imports/my-video-imports.component.html18
+ src/app/+my-library/my-ownership/my-ownership.component.html20
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html60
+
+
+ Comment
+ Yorum
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html61
+ This video has been reported multiple times.This video has been reported multiple times.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html95src/app/shared/shared-abuse-list/abuse-list-table.component.html95
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html95
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html95
+
The video was blockedThe video was blocked
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html104src/app/shared/shared-abuse-list/abuse-list-table.component.html104
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html104
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html104
+
by on by
on
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html107src/app/shared/shared-abuse-list/abuse-list-table.component.html124
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html107
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html124
+
Video was deletedVideo was deleted
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html114
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html114
+
Account deleted
Account deleted
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html150
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html150
+
Open video in a new tab
- Open video in a new tab
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html49
+ Videoyu yeni sekmede aç
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html49
+
State State
-
-
+
+
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html44src/app/+admin/follows/following-list/following-list.component.html36src/app/+admin/follows/followers-list/followers-list.component.html29
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html44
+ src/app/+admin/follows/following-list/following-list.component.html36
+ src/app/+admin/follows/followers-list/followers-list.component.html29
+
Messages
- Messages
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html45
+ Mesajlar
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html45
+
Internal noteInternal note
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html46
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html46
+
Score Score
-
-
+
+
-
- src/app/+admin/follows/followers-list/followers-list.component.html30
+ src/app/+admin/follows/followers-list/followers-list.component.html30
+
Showing to of reportsShowing
@@ -3304,67 +3715,79 @@ The link will expire within 1 hour. of
reports
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.html5
+ src/app/shared/shared-abuse-list/abuse-list-table.component.html5
+
ReporteeReportee
-
- src/app/shared/shared-abuse-list/abuse-details.component.html33
+ src/app/shared/shared-abuse-list/abuse-details.component.html33
+
-
+
-
-
+
+
-
- src/app/shared/shared-abuse-list/abuse-details.component.html52
+ src/app/shared/shared-abuse-list/abuse-details.component.html52
+
{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.html52
+ src/app/shared/shared-abuse-list/abuse-details.component.html52
+
UpdatedUpdated
-
- src/app/shared/shared-abuse-list/abuse-details.component.html58
+ src/app/shared/shared-abuse-list/abuse-details.component.html58
+
Mute domainMute domain
-
- src/app/shared/shared-moderation/server-blocklist.component.html17src/app/shared/shared-moderation/server-blocklist.component.html17
+ src/app/shared/shared-moderation/server-blocklist.component.html17
+ src/app/shared/shared-moderation/server-blocklist.component.html17
+
InstanceInstance
-
- src/app/+search/search-filters.component.html165src/app/shared/shared-moderation/server-blocklist.component.html35src/app/+about/about.component.html5src/app/shared/shared-moderation/server-blocklist.component.html35
+ src/app/+search/search-filters.component.html165
+ src/app/shared/shared-moderation/server-blocklist.component.html35
+ src/app/+about/about.component.html5
+ src/app/shared/shared-moderation/server-blocklist.component.html35
+
Muted at Muted at
-
-
+
+
-
- src/app/shared/shared-moderation/server-blocklist.component.html36src/app/shared/shared-moderation/account-blocklist.component.html29src/app/shared/shared-moderation/account-blocklist.component.html29src/app/shared/shared-moderation/server-blocklist.component.html36
+ src/app/shared/shared-moderation/server-blocklist.component.html36
+ src/app/shared/shared-moderation/account-blocklist.component.html29
+ src/app/shared/shared-moderation/account-blocklist.component.html29
+ src/app/shared/shared-moderation/server-blocklist.component.html36
+
UnmuteUnmute
-
- src/app/shared/shared-moderation/server-blocklist.component.html43src/app/shared/shared-moderation/account-blocklist.component.html36src/app/shared/shared-moderation/account-blocklist.component.html36src/app/shared/shared-moderation/server-blocklist.component.html43
+ src/app/shared/shared-moderation/server-blocklist.component.html43
+ src/app/shared/shared-moderation/account-blocklist.component.html36
+ src/app/shared/shared-moderation/account-blocklist.component.html36
+ src/app/shared/shared-moderation/server-blocklist.component.html43
+
No server found matching current filters.No server found matching current filters.
-
- src/app/shared/shared-moderation/server-blocklist.component.html59src/app/shared/shared-moderation/server-blocklist.component.html59
+ src/app/shared/shared-moderation/server-blocklist.component.html59
+ src/app/shared/shared-moderation/server-blocklist.component.html59
+
No server found.No server found.
-
- src/app/shared/shared-moderation/server-blocklist.component.html60src/app/shared/shared-moderation/server-blocklist.component.html60
+ src/app/shared/shared-moderation/server-blocklist.component.html60
+ src/app/shared/shared-moderation/server-blocklist.component.html60
+
Showing to of muted instancesShowing
@@ -3372,50 +3795,56 @@ The link will expire within 1 hour. of
muted instances
-
- src/app/shared/shared-moderation/server-blocklist.component.html10src/app/shared/shared-moderation/server-blocklist.component.html10
+ src/app/shared/shared-moderation/server-blocklist.component.html10
+ src/app/shared/shared-moderation/server-blocklist.component.html10
+
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.html85
+ src/app/+admin/follows/following-list/following-list.component.html85
+
Mute domainsMute domains
-
- src/app/shared/shared-moderation/server-blocklist.component.html67src/app/shared/shared-moderation/server-blocklist.component.html67
+ src/app/shared/shared-moderation/server-blocklist.component.html67
+ src/app/shared/shared-moderation/server-blocklist.component.html67
+
Account
- Account
-
- src/app/shared/shared-moderation/account-blocklist.component.html28src/app/shared/shared-moderation/account-blocklist.component.html28src/app/+admin/moderation/video-comment-list/video-comment-list.component.html59
+ Hesap
+ src/app/shared/shared-moderation/account-blocklist.component.html28
+ src/app/shared/shared-moderation/account-blocklist.component.html28
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html59
+
No account found matching current filters.No account found matching current filters.
-
- src/app/shared/shared-moderation/account-blocklist.component.html63src/app/shared/shared-moderation/account-blocklist.component.html63
+ src/app/shared/shared-moderation/account-blocklist.component.html63
+ src/app/shared/shared-moderation/account-blocklist.component.html63
+
No account found.No account found.
-
- src/app/shared/shared-moderation/account-blocklist.component.html64src/app/shared/shared-moderation/account-blocklist.component.html64
+ src/app/shared/shared-moderation/account-blocklist.component.html64
+ src/app/shared/shared-moderation/account-blocklist.component.html64
+
List installed pluginsList installed plugins
-
- src/app/+admin/plugins/plugins.routes.ts28
+ src/app/+admin/plugins/plugins.routes.ts28
+
Search pluginsSearch plugins
-
- src/app/+admin/plugins/plugins.routes.ts37
+ src/app/+admin/plugins/plugins.routes.ts37
+
Show pluginShow plugin
-
- src/app/+admin/plugins/plugins.routes.ts46
+ src/app/+admin/plugins/plugins.routes.ts46
+
Showing to of muted accountsShowing
@@ -3423,543 +3852,609 @@ The link will expire within 1 hour. of
muted accounts
-
- src/app/shared/shared-moderation/account-blocklist.component.html10src/app/shared/shared-moderation/account-blocklist.component.html10
+ src/app/shared/shared-moderation/account-blocklist.component.html10
+ src/app/shared/shared-moderation/account-blocklist.component.html10
+
Plugins/ThemesPlugins/Themes
-
- src/app/+admin/admin.component.ts99
+ src/app/+admin/admin.component.ts99
+
InstalledInstalled
-
- src/app/+admin/plugins/plugins.component.html3
+ src/app/+admin/plugins/plugins.component.html3
+
Plugin homepage (new window)Plugin homepage (new window)
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html40src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html17src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html21
+ 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
+
SearchAra
-
- src/app/header/search-typeahead.component.html8src/app/shared/shared-instance/instance-features-table.component.html122src/app/+admin/plugins/plugins.component.html5
+ src/app/header/search-typeahead.component.html8
+ src/app/shared/shared-instance/instance-features-table.component.html122
+ src/app/+admin/plugins/plugins.component.html5
+
Users can resolve distant contentUsers can resolve distant content
-
- src/app/shared/shared-instance/instance-features-table.component.html126
+ src/app/shared/shared-instance/instance-features-table.component.html126
+
Close this messageClose this message
-
- src/app/app.component.html34src/app/app.component.html34
+ src/app/app.component.html34
+ src/app/app.component.html34
+
Settings
- Settings
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html1src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26
+ Ayarlar
+ src/app/+my-account/my-account-settings/my-account-settings.component.html1
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html26
+
Display settingsDisplay settings
-
- src/app/modal/quick-settings-modal.component.html10
+ src/app/modal/quick-settings-modal.component.html10
+
UninstallUninstall
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html32
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html32
+
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
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html10
+
Popular
- Popular
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html16
+ Popüler
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html16
+
- for ""
+ for "" for "
"
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html22
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html22
+
{VAR_PLURAL, plural, =1 {result} other {results} }{VAR_PLURAL, plural, =1 {result} other {results} }
-
- src/app/+search/search.component.html5src/app/+admin/plugins/plugin-search/plugin-search.component.html23
+ src/app/+search/search.component.html5
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html23
+
No results.No results.
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html29
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html29
+
Plugin npm package (new window)Plugin npm package (new window)
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.html44
+ src/app/+admin/plugins/plugin-search/plugin-search.component.html44
+
This does not have settings. This
does not have settings.
-
- src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html16
+ src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html16
+
SystemSystem
-
- src/app/+admin/admin.component.ts103
+ src/app/+admin/admin.component.ts103
+
JobsJobs
-
- src/app/+admin/system/system.component.html3
+ src/app/+admin/system/system.component.html3
+
LogsLogs
-
- src/app/+admin/system/system.component.html5
+ src/app/+admin/system/system.component.html5
+
DebugDebug
-
- src/app/+admin/system/system.component.html7
- Delete this commentDelete this comment
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts65
- Delete all comments of this accountDelete all comments of this account
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts71
- Comments are deleted after a few minutesComments are deleted after a few minutes
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts72
- comments deleted. comments deleted.
+ src/app/+admin/system/system.component.html7
+
+
+ Delete this comment
+ Delete this comment
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts65
+
+
+ Delete all comments of this account
+ Delete all comments of this account
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts71
+
+
+ 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.ts72
+
+
+ comments deleted.
+ comments deleted.src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts137
-
- 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.ts157
- Comments of will be deleted in a few minutesComments of will be deleted in a few minutes
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts169
- Video commentsVideo comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3
- Showing to of commentsShowing to of comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html14
- Advanced comments filtersAdvanced comments filters
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html36
- Local commentsLocal comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html37
- Remote commentsRemote comments
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38
- Select all rowsSelect all rows
-
-
- src/app/+admin/moderation/video-comment-list/video-comment-list.component.html55src/app/+admin/users/user-list/user-list.component.html51
+
+
+ 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.ts157
+
+
+ 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.ts169
+
+
+ Video comments
+ Video comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html3
+
+
+ Showing to of comments
+ Showing to of comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html14
+
+
+ Advanced comments filters
+ Advanced comments filters
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html36
+
+
+ Local comments
+ Local comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html37
+
+
+ Remote comments
+ Remote comments
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html38
+
+
+ Select all rows
+ Select all rows
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.html55
+ src/app/+admin/users/user-list/user-list.component.html51
+ Job typeJob type
-
- src/app/+admin/system/jobs/jobs.component.html3
+ src/app/+admin/system/jobs/jobs.component.html3
+
Job stateJob state
-
- src/app/+admin/system/jobs/jobs.component.html12
- anyany
+ src/app/+admin/system/jobs/jobs.component.html12
+
+
+ any
+ anysrc/app/+admin/system/jobs/jobs.component.html21Selector for the list displaying jobs, filtering by their state
-
- Showing to of jobsShowing to of jobs
-
- src/app/+admin/system/jobs/jobs.component.html35
+
+
+ Showing to of jobs
+ Showing to of jobs
+ src/app/+admin/system/jobs/jobs.component.html35
+ TypeType
-
- src/app/+admin/system/jobs/jobs.component.html42
- No jobs found.No jobs found.
+ src/app/+admin/system/jobs/jobs.component.html42
+
+
+ No jobs found.
+ No jobs found.src/app/+admin/system/jobs/jobs.component.html94
-
- No jobs found.No jobs found.
+
+
+ No jobs found.
+ No jobs found.src/app/+admin/system/jobs/jobs.component.html95
-
- No jobs found.No jobs found.
-
- src/app/+admin/system/jobs/jobs.component.html98
- No jobs found that are .No jobs found that are .
-
- src/app/+admin/system/jobs/jobs.component.html99
+
+
+ No jobs found.
+ No jobs found.
+ src/app/+admin/system/jobs/jobs.component.html98
+
+
+ No jobs found that are .
+ No jobs found that are .
+ src/app/+admin/system/jobs/jobs.component.html99
+ RefreshRefresh
-
- src/app/+admin/system/logs/logs.component.html34
- nownow
-
- src/app/+admin/system/logs/logs.component.html15
+ src/app/+admin/system/logs/logs.component.html34
+
+
+ now
+ now
+ src/app/+admin/system/logs/logs.component.html15
+ Loading...Loading...
-
- src/app/+admin/system/logs/logs.component.html38
+ src/app/+admin/system/logs/logs.component.html38
+
- By ->
+ By ->By
- ->
+ ->
-
- src/app/+admin/system/logs/logs.component.html46
+ src/app/+admin/system/logs/logs.component.html46
+
INSTANCEINSTANCE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html15
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html15
+
Name
- Name
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32src/app/+admin/config/edit-custom-config/edit-custom-config.component.html21
+ Ad
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html32
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html21
+
Short description
- Short description
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html30
+ Kısa açıklama
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html30
+
Main instance categoriesMain instance categories
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html48
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html48
+
Add a new category
- Add a new category
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html55
+ Yeni bir kategori ekle
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html55
+
The sharing system implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.The
- sharing system
- implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.
+ sharing system
+ implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.
-
- src/app/shared/shared-user-settings/user-video-settings.component.html50
+ src/app/shared/shared-user-settings/user-video-settings.component.html50
+
Help share videos being playedHelp share videos being played
-
- src/app/shared/shared-user-settings/user-video-settings.component.html47
+ src/app/shared/shared-user-settings/user-video-settings.component.html47
+
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
+ src/app/shared/shared-user-settings/user-video-settings.component.html61
+
Automatically play videosAutomatically play videos
-
- src/app/shared/shared-user-settings/user-video-settings.component.html58
+ src/app/shared/shared-user-settings/user-video-settings.component.html58
+
When a video ends, follow up with the next suggested video.When a video ends, follow up with the next suggested video.
-
- src/app/shared/shared-user-settings/user-video-settings.component.html72
+ src/app/shared/shared-user-settings/user-video-settings.component.html72
+
Automatically start playing the next videoAutomatically start playing the next video
-
- src/app/shared/shared-user-settings/user-video-settings.component.html69
+ src/app/shared/shared-user-settings/user-video-settings.component.html69
+
Main languages you/your moderators speakMain languages you/your moderators speak
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html62
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html62
+
MODERATION & NSFWMODERATION & NSFW
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html80
+
Manage users to build a moderation team.
Manage
- users
- to build a moderation team.
+ users
+ to build a moderation team.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html82
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html82
+
This instance is dedicated to sensitive or NSFW contentThis instance is dedicated to sensitive or NSFW content
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html91
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html91
+
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-custom-config.component.html96
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html96
+
Policy on videos containing sensitive contentPolicy on videos containing sensitive content
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html104
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html104
+
With Do not list or Blur thumbnails, a confirmation will be requested to watch the video.
With
- Do not list
- or
- Blur thumbnails
- , a confirmation will be requested to watch the video.
+ Do not list
+ or
+ Blur thumbnails
+ , a confirmation will be requested to watch the video.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html109
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html109
+
Do not listDo not list
-
- src/app/shared/shared-user-settings/user-video-settings.component.html16src/app/+admin/config/edit-custom-config/edit-custom-config.component.html117
+ src/app/shared/shared-user-settings/user-video-settings.component.html16
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html117
+
Blur thumbnailsBlur thumbnails
-
- src/app/shared/shared-user-settings/user-video-settings.component.html17src/app/+admin/config/edit-custom-config/edit-custom-config.component.html118
+ src/app/shared/shared-user-settings/user-video-settings.component.html17
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html118
+
Display
- Display
-
- src/app/shared/shared-user-settings/user-video-settings.component.html18src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8src/app/+admin/config/edit-custom-config/edit-custom-config.component.html119
+ Göster
+ src/app/shared/shared-user-settings/user-video-settings.component.html18
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html8
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html119
+
StrategyStrategy
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html28
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html28
+
TermsTerms
-
- src/app/shared/shared-instance/instance-about-accordion.component.html35src/app/shared/shared-instance/instance-about-accordion.component.html35src/app/+signup/+register/register.component.html13src/app/+about/about-instance/about-instance.component.html168src/app/+admin/config/edit-custom-config/edit-custom-config.component.html126
+ src/app/shared/shared-instance/instance-about-accordion.component.html35
+ src/app/shared/shared-instance/instance-about-accordion.component.html35
+ src/app/+signup/+register/register.component.html13
+ src/app/+about/about-instance/about-instance.component.html168
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html126
+
Code of conductCode of conduct
-
- src/app/shared/shared-instance/instance-about-accordion.component.html47src/app/shared/shared-instance/instance-about-accordion.component.html47src/app/+about/about-instance/about-instance.component.html154src/app/+admin/config/edit-custom-config/edit-custom-config.component.html135
+ src/app/shared/shared-instance/instance-about-accordion.component.html47
+ src/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-custom-config.component.html135
+
Moderation informationModeration information
-
- src/app/shared/shared-instance/instance-about-accordion.component.html41src/app/shared/shared-instance/instance-about-accordion.component.html41src/app/+about/about-instance/about-instance.component.html140src/app/+admin/config/edit-custom-config/edit-custom-config.component.html144
+ src/app/shared/shared-instance/instance-about-accordion.component.html41
+ src/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-custom-config.component.html144
+
Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etcWho moderates the instance? What is the policy regarding NSFW videos? Political videos? etc
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html145
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html145
+
YOU AND YOUR INSTANCEYOU AND YOUR INSTANCE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html159
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html159
+
Who is behind the instance?Who is behind the instance?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html165
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html165
+
A single person? A non-profit? A company?A single person? A non-profit? A company?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html166
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html166
+
Why did you create this instance?Why did you create this instance?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html177
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html177
+
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-custom-config.component.html178
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html178
+
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-custom-config.component.html188
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html188
+
It's important to know for users who want to register on your instanceIt's important to know for users who want to register on your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html189
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html189
+
How will you finance the PeerTube server?How will you finance the PeerTube server?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html199
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html199
+
With your own funds? With user donations? Advertising?With your own funds? With user donations? Advertising?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html200
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html200
+
OTHER INFORMATIONOTHER INFORMATION
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html214
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html214
+
What server/hardware does the instance run on?What server/hardware does the instance run on?
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html220
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html220
+
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-custom-config.component.html221
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html221
+
Instance informationInstance information
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html7
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html7
+
APPEARANCEAPPEARANCE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html245
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html245
+
Use plugins & themes for more involved changes, or add slight customizations.
Use
- plugins & themes
- for more involved changes, or
- add slight customizations
- .
+ plugins & themes
+ for more involved changes, or
+ add slight customizations
+ .
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html247
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html247
+
defaultdefault
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html259
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html259
+
Landing pageLanding page
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html268
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html268
+
Discover videos
- Discover videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html271
+ Videoları keşfet
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html271
+
Trending videosTrending videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html272
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html272
+
Most liked videos
- Most liked videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html273
+ En beğenilen videolar
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html273
+
Recently added videos
- Recently added videos
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html274
+ En son eklenen videolar
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html274
+
Local videosYerel videolar
-
- src/app/menu/menu.component.html147src/app/+admin/config/edit-custom-config/edit-custom-config.component.html275
+ src/app/menu/menu.component.html147
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html275
+
BROADCAST MESSAGEBROADCAST MESSAGE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html286
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html286
+
Display a message on your instance
Display a message on your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html288
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html288
+
Enable broadcast messageEnable broadcast message
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html299
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html299
+
Allow users to dismiss the broadcast messageAllow users to dismiss the broadcast message
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html306
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html306
+
Broadcast message levelBroadcast message level
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html311
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html311
+
MessageMessage
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html323
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html323
+
NEW USERSNEW USERS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html338
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html338
+
Manage users to set their quota individually.
Manage
- users
- to set their quota individually.
+ users
+ to set their quota individually.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html340
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html340
+
Signup requires email verificationSignup requires email verification
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html360
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html360
+
Signup limitSignup limit
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html364
- {VAR_PLURAL, plural, =1 {user} other {users}}{VAR_PLURAL, plural, =1 {user} other {users}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html364
+
+
+ {VAR_PLURAL, plural, =1 {user} other {users}}
+ {VAR_PLURAL, plural, =1 {user} other {users}}src/app/+admin/config/edit-custom-config/edit-custom-config.component.html370
@@ -3968,404 +4463,479 @@ The link will expire within 1 hour.
Enable SignupEnable Signup
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html350
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html350
+ UsersUsers
-
- src/app/+admin/users/user-edit/user-edit.component.html4src/app/+admin/users/user-edit/user-edit.component.html4
+ src/app/+admin/users/user-edit/user-edit.component.html4
+ src/app/+admin/users/user-edit/user-edit.component.html4
+
{VAR_PLURAL, plural, =1 {Video} other {Videos} }{VAR_PLURAL, plural, =1 {Video} other {Videos} }
-
- src/app/+admin/users/user-edit/user-edit.component.html24src/app/+admin/users/user-edit/user-edit.component.html24
+ src/app/+admin/users/user-edit/user-edit.component.html24
+ src/app/+admin/users/user-edit/user-edit.component.html24
+
{VAR_PLURAL, plural, =1 {Channel} other {Channels} }{VAR_PLURAL, plural, =1 {Channel} other {Channels} }
-
- src/app/+admin/users/user-edit/user-edit.component.html30src/app/+admin/users/user-edit/user-edit.component.html30
+ src/app/+admin/users/user-edit/user-edit.component.html30
+ src/app/+admin/users/user-edit/user-edit.component.html30
+
{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }
-
- src/app/+admin/users/user-edit/user-edit.component.html36src/app/+admin/users/user-edit/user-edit.component.html36
+ src/app/+admin/users/user-edit/user-edit.component.html36
+ src/app/+admin/users/user-edit/user-edit.component.html36
+
Incriminated in reportsIncriminated in reports
-
- src/app/+admin/users/user-edit/user-edit.component.html42src/app/+admin/users/user-edit/user-edit.component.html42
+ src/app/+admin/users/user-edit/user-edit.component.html42
+ src/app/+admin/users/user-edit/user-edit.component.html42
+
Authored reports acceptedAuthored reports accepted
-
- src/app/+admin/users/user-edit/user-edit.component.html48src/app/+admin/users/user-edit/user-edit.component.html48
+ src/app/+admin/users/user-edit/user-edit.component.html48
+ src/app/+admin/users/user-edit/user-edit.component.html48
+
{VAR_PLURAL, plural, =1 {Comment} other {Comments} }{VAR_PLURAL, plural, =1 {Comment} other {Comments} }
-
- src/app/+admin/users/user-edit/user-edit.component.html54src/app/+admin/users/user-edit/user-edit.component.html54
+ src/app/+admin/users/user-edit/user-edit.component.html54
+ src/app/+admin/users/user-edit/user-edit.component.html54
+
NEW USERNEW USER
-
- src/app/+admin/users/user-edit/user-edit.component.html73src/app/+admin/users/user-edit/user-edit.component.html73
+ src/app/+admin/users/user-edit/user-edit.component.html73
+ src/app/+admin/users/user-edit/user-edit.component.html73
+
ConfigurationConfiguration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1
+
Default video quota per userDefault video quota per user
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html382
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html382
+
Default daily upload limit per userDefault daily upload limit per user
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html394
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html394
+
Allow import with a torrent file or a magnet URIAllow import with a torrent file or a magnet URI
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html429
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html429
+
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-custom-config.component.html446
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html446
+
Block new videos automaticallyBlock new videos automatically
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html443
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html443
+
SEARCHSEARCH
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html460
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html460
+
Allow users to do remote URI/handle searchAllow users to do remote URI/handle search
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html471
- Allow your users to look up remote videos/actors that may not be federated with your instanceAllow your users to look up remote videos/actors that may not be federated with your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html474
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html471
+
+
+ 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-custom-config.component.html474
+ Allow anonymous to do remote URI/handle searchAllow anonymous to do remote URI/handle search
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html482
- Allow anonymous users to look up remote videos/actors that may not be federated with your instanceAllow anonymous users to look up remote videos/actors that may not be federated with your instance
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html485
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html482
+
+
+ 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-custom-config.component.html485
+ ⚠️ 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-custom-config.component.html499
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html499
+
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
- .
+ host your own
+ .
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html502
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html502
+
Search index URLSearch index URL
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html508
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html508
+
Disable local search in search barDisable local search in search bar
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html519
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html519
+
Otherwise the local search stays used by defaultOtherwise the local search stays used by default
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html529
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html529
+
Search bar uses the global search index by defaultSearch bar uses the global search index by default
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html526
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html526
+
Enable global searchEnable global search
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html496
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html496
+
FEDERATIONFEDERATION
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html547
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html547
+
Manage relations with other instances.
Manage
- relations
- with other instances.
+ relations
+ with other instances.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html549
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html549
+
Other instances can follow yoursOther instances can follow yours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html561
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html561
+
Manually approve new instance followersManually approve new instance followers
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html568
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html568
+
Automatically follow back instancesAutomatically follow back instances
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html581
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html581
+
You should only follow moderated indexes in production, or host your own.
You should only follow moderated indexes in production, or
- host your own
- .
+ host your own
+ .
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html600
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html600
+
⚠️ 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-custom-config.component.html353src/app/+admin/config/edit-custom-config/edit-custom-config.component.html584src/app/+admin/config/edit-custom-config/edit-custom-config.component.html597
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html353
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html584
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html597
+
Index URLIndex URL
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html606
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html606
+
Automatically follow instances of a public indexAutomatically follow instances of a public index
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html594
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html594
+
ADMINISTRATORS
- ADMINISTRATORS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html626
+ YÖNETİCİLER
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html626
+
Administrator
- Administrator
-
- src/app/core/users/user.service.ts393
+ Yönetici
+ src/app/core/users/user.service.ts393
+
Admin email
- Admin email
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html632
+ Yönetici e-postası
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html632
+
Enable contact formEnable contact form
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html643
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html643
+
Basic configurationBasic configuration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html239
- VOD TranscodingVOD Transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html701
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html239
+
+
+ VOD Transcoding
+ VOD Transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html701
+ TWITTERTWITTER
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html652
- 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-custom-config.component.html652
+
+
+ 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-custom-config.component.html654,656
-
Your Twitter usernameYour Twitter username
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html665
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html665
+
Instance allowed by TwitterInstance allowed by Twitter
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html677
- If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed. If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html682
- 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-custom-config.component.html711
- 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-custom-config.component.html714
- Read guidelinesRead guidelines
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html718
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html677
+
+
+ If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed.
+ If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share. If the instance is not, we use an image link card that will redirect to your PeerTube instance. Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on https://cards-dev.twitter.com/validator to see if you instance is allowed.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html682
+
+
+ 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-custom-config.component.html711
+
+
+ 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-custom-config.component.html714
+
+
+ Read guidelines
+ Read guidelines
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html718
+
- LIVELIVE
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.html31src/app/+admin/config/edit-custom-config/edit-custom-config.component.html881
- Enable users of your instance to stream live. Enable users of your instance to stream live.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html883
- ⚠️ 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-custom-config.component.html898
- 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-custom-config.component.html899
- Allow your users to automatically publish a replay of their liveAllow your users to automatically publish a replay of their live
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html907
- 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-custom-config.component.html910
- 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-custom-config.component.html916
- {VAR_PLURAL, plural, =1 {live} other {lives}}{VAR_PLURAL, plural, =1 {live} other {lives}}
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html919
- 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-custom-config.component.html924
- {VAR_PLURAL, plural, =1 {live} other {lives}}{VAR_PLURAL, plural, =1 {live} other {lives}}
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html927
- Max live durationMax live duration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html932
- 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-custom-config.component.html951
- Live transcoding threadsLive transcoding threads
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html990
- Live resolutions to generateLive resolutions to generate
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html971
- Allow live streamingAllow live streaming
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html894
- Transcoding enabled for live streamsTranscoding enabled for live streams
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html965
- will claim at most with VOD transcodingwill claim at most with VOD transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html992
- will claim at least with VOD transcodingwill claim at least with VOD transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html993
- {VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}
-
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html859src/app/+admin/config/edit-custom-config/edit-custom-config.component.html999
+ LIVE
+ LIVE
+ src/app/shared/shared-thumbnail/video-thumbnail.component.html31
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html881
+
+
+ Enable users of your instance to stream live.
+ Enable users of your instance to stream live.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html883
+
+
+ ⚠️ 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-custom-config.component.html898
+
+
+ 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-custom-config.component.html899
+
+
+ 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-custom-config.component.html907
+
+
+ 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-custom-config.component.html910
+
+
+ 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-custom-config.component.html916
+
+
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html919
+
+
+ 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-custom-config.component.html924
+
+
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ {VAR_PLURAL, plural, =1 {live} other {lives}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html927
+
+
+ Max live duration
+ Max live duration
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html932
+
+
+ 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-custom-config.component.html951
+
+
+ Live transcoding threads
+ Live transcoding threads
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html990
+
+
+ Live resolutions to generate
+ Live resolutions to generate
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html971
+
+
+ Allow live streaming
+ Allow live streaming
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html894
+
+
+ Transcoding enabled for live streams
+ Transcoding enabled for live streams
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html965
+
+
+ will claim at most with VOD transcoding
+ will claim at most with VOD transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html992
+
+
+ will claim at least with VOD transcoding
+ will claim at least with VOD transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html993
+
+
+ {VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}
+ {VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html859
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html999
+
- Live streamingLive streaming
-
- src/app/shared/shared-instance/instance-features-table.component.html67src/app/+admin/config/edit-custom-config/edit-custom-config.component.html875
+ Live streaming
+ Live streaming
+ src/app/shared/shared-instance/instance-features-table.component.html67
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html875
+
TRANSCODINGTRANSCODING
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html728src/app/+admin/config/edit-custom-config/edit-custom-config.component.html949
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html728
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html949
+
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-custom-config.component.html730
- Input formatsInput formats
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html748
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html730
+
+
+ Input formats
+ Input formats
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html748
+ Transcoding enabledTranscoding enabled
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html742
- If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html785
- 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-custom-config.component.html805
- will claim at most with live transcodingwill claim at most with live transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html852
- will claim at least with live transcodingwill claim at least with live transcoding
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html853
-
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html742
+
+
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ If you also enabled HLS support, it will multiply videos storage by 2If disabled, breaks federation with PeerTube instances < 2.1
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html785
+
+
+ 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-custom-config.component.html805
+
+
+ will claim at most with live transcoding
+ will claim at most with live transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html852
+
+
+ will claim at least with live transcoding
+ will claim at least with live transcoding
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html853
+ Allow additional extensionsAllow additional extensions
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html753
- Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html753
+
+
+ Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.
+ Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.src/app/+admin/config/edit-custom-config/edit-custom-config.component.html756
-
Allow audio files uploadAllow audio files upload
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html764
- 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-custom-config.component.html767
- 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-custom-config.component.html768
- Output formatsOutput formats
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html775
- WebTorrent enabledWebTorrent enabled
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html781
-
-
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html764
+
+
+ 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-custom-config.component.html767
+
+
+ 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-custom-config.component.html768
+
+
+ Output formats
+ Output formats
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html775
+
+
+ WebTorrent enabled
+ WebTorrent enabled
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html781
+ HLS with P2P support enabledHLS with P2P support enabled
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html800
- Resolutions to generate per enabled formatResolutions to generate per enabled format
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html822
- 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-custom-config.component.html800
+
+
+ Resolutions to generate per enabled format
+ Resolutions to generate per enabled format
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html822
+
+
+ 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-custom-config.component.html838,839
@@ -4374,407 +4944,415 @@ The link will expire within 1 hour.
Transcoding threadsTranscoding threads
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html850
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html850
+ CACHECACHE
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1022
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1022
+
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-custom-config.component.html1024
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1024
+
Number of previews to keep in cacheNumber of previews to keep in cache
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1032
- {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-custom-config.component.html1038
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1032
+
+
+ {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-custom-config.component.html1038
+ Number of video captions to keep in cacheNumber of video captions to keep in cache
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1044
- {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-custom-config.component.html1050
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1044
+
+
+ {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-custom-config.component.html1050
+ CUSTOMIZATIONSCUSTOMIZATIONS
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1062
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1062
+
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-custom-config.component.html1064
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1064
+
JavaScriptJavaScript
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1073
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1073
+
Write JavaScript code directly.Example: console.log('my instance is amazing');
Write JavaScript code directly.
- Example:
- console.log('my instance is amazing');
-
+ Example:
+ console.log('my instance is amazing');
+
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1077
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1077
+
- Write CSS code directly. Example: #custom-css
- color: red;
-
- Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email
- color: red;
-
-
+ Write CSS code directly. Example: #custom-css color: red; Prepend with #custom-css to override styles. Example: #custom-css .logged-in-email color: red;
Write CSS code directly. Example:
-
-
- #custom-css
+
+
+ #custom-css
color: red;
-
+
Prepend with
- #custom-css
- to override styles. Example:
-
-
- #custom-css .logged-in-email
+ #custom-css
+ to override styles. Example:
+
+
+ #custom-css .logged-in-email
color: red;
-
+
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1096
- It seems like the configuration is invalid. Please search for potential errors in the different tabs. It seems like the configuration is invalid. Please search for potential errors in the different tabs.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1134
- 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.html1138
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1096
+
+
+ It seems like the configuration is invalid. Please search for potential errors in the different tabs.
+ It seems like the configuration is invalid. Please search for potential errors in the different tabs.
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1134
+
+
+ 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.html1138
+ Advanced configurationAdvanced configuration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1016
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1016
+
Update configurationUpdate configuration
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1141
-
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html1141
+
VIDEO SETTINGS
- VIDEO SETTINGS
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html26
+ VİDEO AYARLARI
+ src/app/+my-account/my-account-settings/my-account-settings.component.html26
+
NOTIFICATIONS
- NOTIFICATIONS
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html37
+ BİLDİRİMLER
+ src/app/+my-account/my-account-settings/my-account-settings.component.html37
+
INTERFACE
- INTERFACE
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html47
+ ARAYÜZ
+ src/app/+my-account/my-account-settings/my-account-settings.component.html47
+
PASSWORD
- PASSWORD
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html57
+ ŞİFRE
+ src/app/+my-account/my-account-settings/my-account-settings.component.html57
+
EMAIL
- EMAIL
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html67
+ E-POSTA
+ src/app/+my-account/my-account-settings/my-account-settings.component.html67
+
DANGER ZONEDANGER ZONE
-
- src/app/+my-account/my-account-settings/my-account-settings.component.html77src/app/+admin/users/user-edit/user-edit.component.html198src/app/+admin/users/user-edit/user-edit.component.html198
+ src/app/+my-account/my-account-settings/my-account-settings.component.html77
+ src/app/+admin/users/user-edit/user-edit.component.html198
+ src/app/+admin/users/user-edit/user-edit.component.html198
+
ProfileProfile
-
- src/app/shared/shared-video-miniature/video-download.component.ts170
+ src/app/shared/shared-video-miniature/video-download.component.ts170
+
Resolution
- Resolution
-
- src/app/shared/shared-video-miniature/video-download.component.ts179
+ Çözünürlük
+ src/app/shared/shared-video-miniature/video-download.component.ts179
+
Aspect ratioAspect ratio
-
- src/app/shared/shared-video-miniature/video-download.component.ts180
+ src/app/shared/shared-video-miniature/video-download.component.ts180
+
Average frame rateAverage frame rate
-
- src/app/shared/shared-video-miniature/video-download.component.ts181
+ src/app/shared/shared-video-miniature/video-download.component.ts181
+
Pixel formatPixel format
-
- src/app/shared/shared-video-miniature/video-download.component.ts182
+ src/app/shared/shared-video-miniature/video-download.component.ts182
+
Sample rateSample rate
-
- src/app/shared/shared-video-miniature/video-download.component.ts186
+ src/app/shared/shared-video-miniature/video-download.component.ts186
+
Channel LayoutChannel Layout
-
- src/app/shared/shared-video-miniature/video-download.component.ts187
+ src/app/shared/shared-video-miniature/video-download.component.ts187
+
Video settings
- Video settings
-
- src/app/modal/quick-settings-modal.component.html18
+ Video ayarları
+ src/app/modal/quick-settings-modal.component.html18
+
Interface settings
- Interface settings
-
- src/app/modal/quick-settings-modal.component.html22
+ Arayüz ayarları
+ src/app/modal/quick-settings-modal.component.html22
+
Change password
- Change password
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html5src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html33
+ Şifreyi değiştir
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html5
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html33
+
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
+ Şimdiki şifre
+ 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
- New password
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html17
+ Yeni şifre
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html17
+
Confirm new password
- Confirm new password
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html26
+ Yeni şifreyi doğrula
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html26
+
Default policy on videos containing sensitive contentDefault policy on videos containing sensitive content
-
- src/app/shared/shared-user-settings/user-video-settings.component.html4
+ src/app/shared/shared-user-settings/user-video-settings.component.html4
+
With Do not list or Blur thumbnails, a confirmation will be requested to watch the video. With
- Do not list
- or
- Blur thumbnails
- , a confirmation will be requested to watch the video.
+ Do not list
+ or
+ Blur thumbnails
+ , a confirmation will be requested to watch the video.
-
- src/app/shared/shared-user-settings/user-video-settings.component.html8
+ src/app/shared/shared-user-settings/user-video-settings.component.html8
+
Policy for sensitive videosPolicy for sensitive videos
-
- src/app/shared/shared-user-settings/user-video-settings.component.html15src/app/+admin/config/edit-custom-config/edit-custom-config.component.html116
+ src/app/shared/shared-user-settings/user-video-settings.component.html15
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html116
+
Only display videos in the following languages/subtitlesOnly display videos in the following languages/subtitles
-
- src/app/shared/shared-user-settings/user-video-settings.component.html25
+ src/app/shared/shared-user-settings/user-video-settings.component.html25
+
In Recently added, Trending, Local, Most liked and Search pagesIn Recently added, Trending, Local, Most liked and Search pages
-
- src/app/shared/shared-user-settings/user-video-settings.component.html28
+ src/app/shared/shared-user-settings/user-video-settings.component.html28
+
Add a new language
- Add a new language
-
- src/app/shared/shared-user-settings/user-video-settings.component.html36src/app/+admin/config/edit-custom-config/edit-custom-config.component.html69
-
+ Yeni bir dil ekle
+ src/app/shared/shared-user-settings/user-video-settings.component.html36
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html69
+
is awaiting email verification
-
+
- is awaiting email verification
+ is awaiting email verification
-
- src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html10
+ 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
-
-
-
+ Yeni e-posta
+ 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
+ E-postayı değiştir
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html36
+
Theme
- Theme
-
- src/app/shared/shared-user-settings/user-interface-settings.component.html4src/app/+admin/config/edit-custom-config/edit-custom-config.component.html255
+ Tema
+ src/app/shared/shared-user-settings/user-interface-settings.component.html4
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.html255
+
instance defaultinstance default
-
- src/app/shared/shared-user-settings/user-interface-settings.component.html8
+ src/app/shared/shared-user-settings/user-interface-settings.component.html8
+
peertube defaultpeertube default
-
- src/app/shared/shared-user-settings/user-interface-settings.component.html9
+ src/app/shared/shared-user-settings/user-interface-settings.component.html9
+
Change ownershipChange ownership
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.html3
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html3
+
Select the next ownerSelect the next owner
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.html10
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.html10
+
Search your videosSearch your videos
-
- src/app/+my-library/my-videos/my-videos.component.html23
+ src/app/+my-library/my-videos/my-videos.component.html23
+
Accept ownershipAccept ownership
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html3
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html3
+
Select a channel to receive the videoSelect a channel to receive the video
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html10
+
Channel that will receive the videoChannel that will receive the video
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html13
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html13
+
My ownership changesMy ownership changes
-
- src/app/+my-library/my-ownership/my-ownership.component.html3
+ src/app/+my-library/my-ownership/my-ownership.component.html3
+
InitiatorInitiator
-
- src/app/+my-library/my-ownership/my-ownership.component.html19
+ src/app/+my-library/my-ownership/my-ownership.component.html19
+
Created
-
- src/app/+my-library/my-ownership/my-ownership.component.html22
+ src/app/+my-library/my-ownership/my-ownership.component.html22
+
StatusStatus
-
- src/app/+my-library/my-ownership/my-ownership.component.html25
+ src/app/+my-library/my-ownership/my-ownership.component.html25
+
Account pageAccount page
-
- src/app/+videos/+video-watch/video-watch.component.html185src/app/+videos/+video-watch/video-watch.component.html191
+ src/app/+videos/+video-watch/video-watch.component.html185
+ src/app/+videos/+video-watch/video-watch.component.html191
+
-
- src/app/+videos/+video-watch/video-watch.component.html192
+ src/app/+videos/+video-watch/video-watch.component.html192
+
No ownership change request found.No ownership change request found.
-
- src/app/+my-library/my-ownership/my-ownership.component.html83
+ src/app/+my-library/my-ownership/my-ownership.component.html83
+
Account settings
- Account settings
-
- src/app/+my-account/my-account-routing.module.ts29
-
-
+ Hesap ayarları
+ src/app/+my-account/my-account-routing.module.ts29
+
Playlist elementsPlaylist elements
-
- src/app/+my-library/my-library-routing.module.ts58
+ src/app/+my-library/my-library-routing.module.ts58
+
My importsMy imports
-
- src/app/+my-library/my-videos/my-videos.component.html11src/app/+my-library/my-video-imports/my-video-imports.component.html3
+ src/app/+my-library/my-videos/my-videos.component.html11
+ src/app/+my-library/my-video-imports/my-video-imports.component.html3
+
Create video channelCreate video channel
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.html19
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html19
+
subscribers subscribers
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html32
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html32
+
Example: my_channelExample: my_channel
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html35
+
CHANNELCHANNEL
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26src/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
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html26
+
- 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.
- Short text to tell people how they can support your channel (membership platform...).<br /><br />
+ 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.
+ 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.html77src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html77
+
Overwrite support field of all videos of this channelOverwrite support field of all videos of this channel
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html92
+
subscribers subscribers
-
- src/app/shared/shared-main/account/actor-avatar-info.component.html28
- Upload a new avatarUpload a new avatar
+ src/app/shared/shared-main/account/actor-avatar-info.component.html28
+
+
+ Upload a new avatar
+ Upload a new avatarsrc/app/shared/shared-main/account/actor-avatar-info.component.html10
@@ -4787,18 +5365,18 @@ The link will expire within 1 hour.
TargetTarget
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html17
+ src/app/+my-library/my-video-imports/my-video-imports.component.html17
+ See the errorSee 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 deletedThis video was deleted
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html49
+ src/app/+my-library/my-video-imports/my-video-imports.component.html49
+
Showing to of importsShowing
@@ -4806,55 +5384,58 @@ The link will expire within 1 hour. of
imports
-
- src/app/+my-library/my-video-imports/my-video-imports.component.html10
+ src/app/+my-library/my-video-imports/my-video-imports.component.html10
+
Once you delete your account, there is no going back. You will be asked to confirm this action.Once you delete your account, there is no going back. You will be asked to confirm this action.
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html2
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html2
+
Delete your account
- Delete your account
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4
-
+ Hesabınızı silin
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html4
+
Channel pageChannel page
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html27src/app/+my-library/+my-video-channels/my-video-channels.component.html30src/app/+videos/+video-watch/video-watch.component.html182
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html27
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html30
+ src/app/+videos/+video-watch/video-watch.component.html182
+
Created by Created by
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html35
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html35
+
Owner account pageOwner account page
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html34
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html34
+
Go the owner account pageGo the owner account page
-
- src/app/+video-channels/video-channels.component.html30
-
+ src/app/+video-channels/video-channels.component.html30
+
Delete history
-
- src/app/+my-library/my-history/my-history.component.html24
- 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.html24
+
+
+ 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.html30
- Open syndication dropdownOpen syndication dropdown
+ Open syndication dropdown
+ Open syndication dropdownsrc/app/shared/shared-main/feeds/feed.component.html3
@@ -4867,299 +5448,318 @@ The link will expire within 1 hour.
Notification preferences
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html4
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html4
+ Newest firstNewest first
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html11
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html11
+
Unread firstUnread first
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html12
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html12
+
All readAll read
-
- src/app/+my-account/my-account-notifications/my-account-notifications.component.html26
+ src/app/+my-account/my-account-notifications/my-account-notifications.component.html26
+
ActivitiesActivities
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html2
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html2
+
WebWeb
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html3
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html3
+
My Playlists
- My Playlists
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4
+ Oynatma Listelerim
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html4
+
NEW PLAYLIST
- NEW PLAYLIST
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25
+ YENİ OYNATMA LİSTESİ
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html25
+
PLAYLIST
- PLAYLIST
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26
+ OYNATMA LİSTESİ
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html26
+
Create playlist
- Create playlist
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.html18
- My video channelsMy video channels
-
- src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts13
- Create a new video channelCreate a new video channel
-
- src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts22
+ Oynatma listesi oluştur
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html18
+
+
+ My video channels
+ My video channels
+ src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts13
+
+
+ Create a new video channel
+ Create a new video channel
+ src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts22
+ Playlist } deleted.Playlist } deleted.
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.ts60
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.ts60
+
Playlist thumbnailPlaylist thumbnail
-
- src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html82src/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
+ src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html82
+
Search your playlistsSearch your playlists
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.html10
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html10
+
No videos in this playlist.No videos in this playlist.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html25
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html25
+
Browse videos on PeerTube to add them in your playlist.
Browse videos on PeerTube to add them in your playlist.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html28
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html28
+
See the documentation for more information.
See the
- documentation
- for more information.
+ documentation
+ for more information.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html32
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html32
+
Welcome to PeerTube!
- Welcome to PeerTube!
-
- src/app/+signup/shared/signup-success.component.html8
+ PeerTube'a Hoş Geldiniz!
+ src/app/+signup/shared/signup-success.component.html8
+
If you need help to use PeerTube, you can have a look at the documentation. If you need help to use PeerTube, you can have a look at the
- documentation
- .
+ documentation
+ .
-
- src/app/+signup/shared/signup-success.component.html14
+ src/app/+signup/shared/signup-success.component.html14
+
LoginLogin
-
- src/app/+login/login-routing.module.ts14
+ src/app/+login/login-routing.module.ts14
+
Verify account email confirmationVerify account email confirmation
-
- src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html3
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html3
+
Email updated.Email updated.
-
- src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html10
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html10
+
An error occurred.An error occurred.
-
- src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html14
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html14
+
Video channel videosVideo channel videos
-
- src/app/+video-channels/video-channels-routing.module.ts25
+ src/app/+video-channels/video-channels-routing.module.ts25
+
Video channel playlistsVideo channel playlists
-
- src/app/+video-channels/video-channels-routing.module.ts38
+ src/app/+video-channels/video-channels-routing.module.ts38
+
About video channelAbout video channel
-
- src/app/+video-channels/video-channels-routing.module.ts47
+ src/app/+video-channels/video-channels-routing.module.ts47
+
Request email for account verificationRequest email for account verification
-
- src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html3
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html3
+
Send verification email
- Send verification email
-
- src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html17
+ Doğrulama e-postası gönder
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html17
+
This instance does not require email verification.This instance does not require email verification.
-
- src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html20
- Verify account via emailVerify account via email
-
- src/app/+signup/+verify-account/verify-account-routing.module.ts17
- Ask to send an email to verify you accountAsk to send an email to verify you account
-
- src/app/+signup/+verify-account/verify-account-routing.module.ts26
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html20
+
+
+ Verify account via email
+ Verify account via email
+ src/app/+signup/+verify-account/verify-account-routing.module.ts17
+
+
+ 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.ts26
+ BannedBanned
-
- src/app/+accounts/accounts.component.html18
+ src/app/+accounts/accounts.component.html18
+
Instance mutedInstance muted
-
- src/app/+accounts/accounts.component.html20
+ src/app/+accounts/accounts.component.html20
+
Muted by your instanceMuted by your instance
-
- src/app/+accounts/accounts.component.html21
+ src/app/+accounts/accounts.component.html21
+
Instance muted by your instanceInstance muted by your instance
-
- src/app/+accounts/accounts.component.html22
+ src/app/+accounts/accounts.component.html22
+
Manage accountManage account
-
- src/app/+accounts/accounts.component.html36
+ src/app/+accounts/accounts.component.html36
+
This account does not have channels.This account does not have channels.
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html4
+ src/app/+accounts/account-video-channels/account-video-channels.component.html4
+
{VAR_PLURAL, plural, =1 {1 subscriber} other { subscribers}}{VAR_PLURAL, plural, =1 {1 subscriber} other {
subscribers} }
-
- src/app/+video-channels/video-channels.component.html28src/app/+accounts/account-video-channels/account-video-channels.component.html13src/app/+my-library/+my-video-channels/my-video-channels.component.html35
+ src/app/+video-channels/video-channels.component.html28
+ src/app/+accounts/account-video-channels/account-video-channels.component.html13
+ src/app/+my-library/+my-video-channels/my-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.html37
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html37
+
- Do you really want to delete ?
-It will delete videos uploaded in this channel, and you will not be able to create another
-channel with the same name ()!
+ Do you really want to delete ? It will delete videos uploaded in this channel, and you will not be able to create another channel with the same name ()!Do you really want to delete ?
It will delete videos uploaded in this channel, and you will not be able to create another
channel with the same name ()!
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts63
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts63
+
My ChannelsMy Channels
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html4
+
NEW CHANNEL
- NEW CHANNEL
-
- src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25
+ YENİ KANAL
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25
+ src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html25
+
See this video channelSee this video channel
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html9
+ src/app/+accounts/account-video-channels/account-video-channels.component.html9
+
This channel doesn't have any videos.This channel doesn't have any videos.
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html20
+ src/app/+accounts/account-video-channels/account-video-channels.component.html20
+
SHOW THIS CHANNEL
SHOW THIS CHANNEL
-
- src/app/+accounts/account-video-channels/account-video-channels.component.html29
+ src/app/+accounts/account-video-channels/account-video-channels.component.html29
+
DESCRIPTION
- DESCRIPTION
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html5src/app/+accounts/account-about/account-about.component.html5
+ AÇIKLAMA
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html5
+ src/app/+accounts/account-about/account-about.component.html5
+
STATSSTATS
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html17src/app/+accounts/account-about/account-about.component.html10
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html17
+ src/app/+accounts/account-about/account-about.component.html10
+
StatsStats
-
- src/app/menu/menu.component.html176
+ src/app/menu/menu.component.html176
+
Joined Joined
-
- src/app/+accounts/account-about/account-about.component.html12
+ src/app/+accounts/account-about/account-about.component.html12
+
Manage channel
Manage channel
-
- src/app/+video-channels/video-channels.component.html22
+ src/app/+video-channels/video-channels.component.html22
+
Created byCreated by
-
- src/app/+video-channels/video-channels.component.html31
+ src/app/+video-channels/video-channels.component.html31
+
SUPPORT THIS CHANNELSUPPORT THIS CHANNEL
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html10
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html10
+
Most liked videos
- Most liked videos
-
- src/app/+videos/videos-routing.module.ts46src/app/+videos/video-list/video-most-liked.component.ts41
- Videos that have the most likes.Videos that have the most likes.
-
- src/app/+videos/video-list/video-most-liked.component.ts42
+ En beğenilen videolar
+ src/app/+videos/videos-routing.module.ts46
+ src/app/+videos/video-list/video-most-liked.component.ts41
+
+
+ Videos that have the most likes.
+ Videos that have the most likes.
+ src/app/+videos/video-list/video-most-liked.component.ts42
+ Created Created
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.html18
+ src/app/+video-channels/video-channel-about/video-channel-about.component.html18
+
Created playlists
@@ -5167,33 +5767,39 @@ channel with the same name ()! playlists
-
- src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2
+ src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html2
+
This channel does not have playlists.This channel does not have playlists.
-
- src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html6
+ src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html6
+
PeerTube
- PeerTube
-
- src/app/+about/about.component.html7
- NetworkNetwork
-
- src/app/+about/about.component.html9
+ PeerTube
+ src/app/+about/about.component.html7
+
+
+ Network
+ Network
+ src/app/+about/about.component.html9
+ FollowsFollows
-
- src/app/+about/about-follows/about-follows.component.html2
- Followers instances ()Followers instances ()
+ src/app/+about/about-follows/about-follows.component.html2
+
+
+ Followers instances ()
+ Followers instances ()src/app/+about/about-follows/about-follows.component.html4
-
- Following instances ()Following instances ()
+
+
+ Following instances ()
+ Following instances ()src/app/+about/about-follows/about-follows.component.html16
@@ -5204,185 +5810,186 @@ channel with the same name ()!
Contact
administrator
-
- src/app/+about/about-instance/contact-admin-modal.component.html3
+ src/app/+about/about-instance/contact-admin-modal.component.html3
+
Your name
- Your name
-
- src/app/+about/about-instance/contact-admin-modal.component.html11
+ Adınız
+ src/app/+about/about-instance/contact-admin-modal.component.html11
+
Your email
- Your email
-
- src/app/+about/about-instance/contact-admin-modal.component.html20
+ E-postanız
+ src/app/+about/about-instance/contact-admin-modal.component.html20
+
Subject
- Subject
-
- src/app/+about/about-instance/contact-admin-modal.component.html29
+ Konu
+ src/app/+about/about-instance/contact-admin-modal.component.html29
+
Your messageYour message
-
- src/app/+about/about-instance/contact-admin-modal.component.html38
+ src/app/+about/about-instance/contact-admin-modal.component.html38
+
About About
-
- src/app/+about/about-instance/about-instance.component.html5
+ src/app/+about/about-instance/about-instance.component.html5
+
Contact administratorContact administrator
-
- src/app/+about/about-instance/about-instance.component.html7
+ src/app/+about/about-instance/about-instance.component.html7
+
This instance is dedicated to sensitive/NSFW content.This instance is dedicated to sensitive/NSFW content.
-
- src/app/+about/about-instance/about-instance.component.html19
+ src/app/+about/about-instance/about-instance.component.html19
+
ADMINISTRATORS & SUSTAINABILITY
ADMINISTRATORS & SUSTAINABILITY
-
- src/app/+about/about-instance/about-instance.component.html32
+ src/app/+about/about-instance/about-instance.component.html32
+
Who we are
- Who we are
-
- src/app/+about/about-instance/about-instance.component.html44
+ Biz kimiz
+ src/app/+about/about-instance/about-instance.component.html44
+
Why we created this instanceWhy we created this instance
-
- src/app/+about/about-instance/about-instance.component.html58
+ src/app/+about/about-instance/about-instance.component.html58
+
How long we plan to maintain this instanceHow long we plan to maintain this instance
-
- src/app/+about/about-instance/about-instance.component.html72
+ src/app/+about/about-instance/about-instance.component.html72
+
How we will pay for this instanceHow we will pay for this instance
-
- src/app/+about/about-instance/about-instance.component.html86
+ src/app/+about/about-instance/about-instance.component.html86
+
INFORMATION
INFORMATION
-
- src/app/+about/about-instance/about-instance.component.html101
+ src/app/+about/about-instance/about-instance.component.html101
+
MODERATION
MODERATION
-
- src/app/+about/about-instance/about-instance.component.html128
+ src/app/+about/about-instance/about-instance.component.html128
+
OTHER INFORMATION
OTHER INFORMATION
-
- src/app/+about/about-instance/about-instance.component.html183
+ src/app/+about/about-instance/about-instance.component.html183
+
Hardware informationHardware information
-
- src/app/+about/about-instance/about-instance.component.html195
+ src/app/+about/about-instance/about-instance.component.html195
+
FEATURESFEATURES
-
- src/app/+about/about-instance/about-instance.component.html203
+ src/app/+about/about-instance/about-instance.component.html203
+
Features found on this instanceBu örnekte bulunan özellikler
-
- 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
+
STATISTICSSTATISTICS
-
- src/app/+about/about-instance/about-instance.component.html215
+ src/app/+about/about-instance/about-instance.component.html215
+
What is PeerTube?
-
- What is PeerTube?
-
-
- src/app/+about/about-peertube/about-peertube.component.html3
+ PeerTube nedir?
+ src/app/+about/about-peertube/about-peertube.component.html3
+
PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.
PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.
-
- src/app/+about/about-peertube/about-peertube.component.html10
- It is free and open-source software, under AGPLv3 licence. It is free and open-source software, under AGPLv3 licence.
-
- src/app/+about/about-peertube/about-peertube.component.html14
-
+ 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.
+ src/app/+about/about-peertube/about-peertube.component.html14
+ For more information, please visit joinpeertube.org.
For more information, please visit
- joinpeertube.org
- .
+ joinpeertube.org
+ .
-
- src/app/+about/about-peertube/about-peertube.component.html19
+ src/app/+about/about-peertube/about-peertube.component.html19
+
Use PeerTube documentationUse PeerTube
documentation
-
- src/app/+about/about-peertube/about-peertube.component.html28
+ src/app/+about/about-peertube/about-peertube.component.html28
+
Discover how to setup your account, what is a channel, how to create a playlist and more!
Discover how to setup your account, what is a channel, how to create a playlist and more!
-
- src/app/+about/about-peertube/about-peertube.component.html33
+ src/app/+about/about-peertube/about-peertube.component.html33
+
PeerTube ApplicationsPeerTube
Applications
-
- src/app/+about/about-peertube/about-peertube.component.html41
+ src/app/+about/about-peertube/about-peertube.component.html41
+
Discover unofficial Android applications or browser addons!
Discover unofficial Android applications or browser addons!
-
- src/app/+about/about-peertube/about-peertube.component.html46
+ src/app/+about/about-peertube/about-peertube.component.html46
+
Contribute on PeerTubeContribute on
PeerTube
-
- src/app/+about/about-peertube/about-peertube.component.html54
+ src/app/+about/about-peertube/about-peertube.component.html54
+
Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!
Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!
-
- src/app/+about/about-peertube/about-peertube.component.html59
+ src/app/+about/about-peertube/about-peertube.component.html59
+
P2P & PrivacyP2P & Privacy
-
- src/app/+about/about-peertube/about-peertube.component.html71
+ src/app/+about/about-peertube/about-peertube.component.html71
+
PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.
@@ -5390,9 +5997,11 @@ channel with the same name ()!
but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What
follows applies only if you want to keep using the P2P mode of PeerTube.
-
- src/app/+about/about-peertube/about-peertube.component.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.
+ 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. src/app/+about/about-peertube/about-peertube.component.html81,83
@@ -5401,24 +6010,24 @@ channel with the same name ()!
What are the consequences?What are the consequences?
-
- src/app/+about/about-peertube/about-peertube.component.html85
+ src/app/+about/about-peertube/about-peertube.component.html85
+ In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:
In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video.
In practice, this is much more difficult because:
-
- src/app/+about/about-peertube/about-peertube.component.html88
+ src/app/+about/about-peertube/about-peertube.component.html88
+
An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)
An HTTP request has to be sent on each tracker for each video to spy.
If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)
-
- src/app/+about/about-peertube/about-peertube.component.html94
+ src/app/+about/about-peertube/about-peertube.component.html94
+
For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm
@@ -5426,50 +6035,51 @@ channel with the same name ()!
For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50
requests sent to know every peer in the swarm
-
- src/app/+about/about-peertube/about-peertube.component.html99
+ src/app/+about/about-peertube/about-peertube.component.html99
+
Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour
Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour
-
- src/app/+about/about-peertube/about-peertube.component.html105
+ src/app/+about/about-peertube/about-peertube.component.html105
+
If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video
If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the
video
-
- src/app/+about/about-peertube/about-peertube.component.html109
+ src/app/+about/about-peertube/about-peertube.component.html109
+
The IP address is a vague information: usually, it regularly changes and can represent many persons or entities
The IP address is a vague information: usually, it regularly changes and can represent many persons or entities
-
- src/app/+about/about-peertube/about-peertube.component.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
+ 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 src/app/+about/about-peertube/about-peertube.component.html118,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).
@@ -5477,13 +6087,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?What can I do to limit the exposure of my IP address?
-
- 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.
@@ -5492,52 +6102,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?What will be done to mitigate this problem?
-
- 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 trackerWe 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 trackerWe 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 interfaceAllow 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
+ src/app/+about/about-follows/about-follows.component.html6
+
+
+ Show full list
+ Show full listsrc/app/+about/about-follows/about-follows.component.html12
@@ -5546,138 +6156,146 @@ channel with the same name ()!
src/app/+about/about-follows/about-follows.component.html24
-
- This instance is not following any other.This instance is not following any other.
-
- src/app/+about/about-follows/about-follows.component.html18
-
-
+
+
+ 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 instanceAbout this instance
-
- src/app/+about/about-routing.module.ts26
+ src/app/+about/about-routing.module.ts26
+
About PeerTube
- About PeerTube
-
- src/app/+about/about-routing.module.ts38
- About this instance's networkAbout this instance's network
-
- src/app/+about/about-routing.module.ts47
- Link copiedLink copied
-
- src/app/+about/about-instance/about-instance.component.ts91
-
+ PeerTube hakkında
+ src/app/+about/about-routing.module.ts38
+
+
+ About this instance's network
+ About this instance's network
+ src/app/+about/about-routing.module.ts47
+
+
+ Link copied
+ Bağlantı kopyalandı
+ src/app/+about/about-instance/about-instance.component.ts91
+ Developed with ❤ by FramasoftDeveloped with ❤ by
- Framasoft
-
+ Framasoft
+
-
- src/app/+about/about-peertube/about-peertube-contributors.component.html3
+ src/app/+about/about-peertube/about-peertube-contributors.component.html3
+
Create an accountCreate an account
-
- src/app/+signup/+register/register.component.html4
-
+ src/app/+signup/+register/register.component.html4
+
Get helpGet help
-
- src/app/shared/shared-main/misc/help.component.ts16
+ src/app/shared/shared-main/misc/help.component.ts16
+
Create my accountCreate my account
-
- src/app/+signup/+register/register.component.html38
+ src/app/+signup/+register/register.component.html38
+
PeerTube is creating your account...PeerTube is creating your account...
-
- src/app/+signup/+register/register.component.html46
+ src/app/+signup/+register/register.component.html46
+
DoneDone
-
- src/app/+signup/+register/register.component.html42
+ src/app/+signup/+register/register.component.html42
+
Who are we?
- Who are we?
-
- src/app/shared/shared-instance/instance-about-accordion.component.html19
+ Biz kimiz?
+ src/app/shared/shared-instance/instance-about-accordion.component.html19
+
How long do we plan to maintain this instance?How long do we plan to maintain this instance?
-
- src/app/shared/shared-instance/instance-about-accordion.component.html24
+ src/app/shared/shared-instance/instance-about-accordion.component.html24
+
How will we finance this instance?How will we finance this instance?
-
- src/app/shared/shared-instance/instance-about-accordion.component.html29
+ src/app/shared/shared-instance/instance-about-accordion.component.html29
+
Administrators & SustainabilityAdministrators & 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
+
StepStep
-
- src/app/+signup/+register/custom-stepper.component.html9
+ src/app/+signup/+register/custom-stepper.component.html9
+
A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology.
-
- src/app/+signup/+register/register-step-channel.component.html5
+ src/app/+signup/+register/register-step-channel.component.html5
+
Other users can decide to subscribe any channel they want, to be notified when you publish a new video.Other users can decide to subscribe any channel they want, to be notified when you publish a new video.
-
- src/app/+signup/+register/register-step-channel.component.html10
+ src/app/+signup/+register/register-step-channel.component.html10
+
Channel display nameChannel display name
-
- src/app/+signup/+register/register-step-channel.component.html15
+ src/app/+signup/+register/register-step-channel.component.html15
+
Channel nameChannel name
-
- src/app/+signup/+register/register-step-channel.component.html30src/app/+admin/users/user-edit/user-edit.component.html94src/app/+admin/users/user-edit/user-edit.component.html94
+ src/app/+signup/+register/register-step-channel.component.html30
+ src/app/+admin/users/user-edit/user-edit.component.html94
+ src/app/+admin/users/user-edit/user-edit.component.html94
+
john_channeljohn_channel
-
- src/app/+admin/users/user-edit/user-edit.component.html96src/app/+admin/users/user-edit/user-edit.component.html96
+ src/app/+admin/users/user-edit/user-edit.component.html96
+ src/app/+admin/users/user-edit/user-edit.component.html96
+
Example: my_super_channelExample: my_super_channel
-
- src/app/+signup/+register/register-step-channel.component.html34
+ src/app/+signup/+register/register-step-channel.component.html34
+
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.
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. 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
-
-
+ 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.
+ 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
+ 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.
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.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.html4,5
@@ -5686,35 +6304,37 @@ channel with the same name ()!
I am at least 16 years old and agree to the Terms and to the Code of Conduct of this instance
-
- src/app/+signup/+register/register-step-terms.component.html6
+ src/app/+signup/+register/register-step-terms.component.html6
+ RegisterRegister
-
- src/app/+signup/+register/register-routing.module.ts14
-
+ src/app/+signup/+register/register-routing.module.ts14
+
Your message has been sent.Your message has been sent.
-
- src/app/+about/about-instance/contact-admin-modal.component.ts77
+ src/app/+about/about-instance/contact-admin-modal.component.ts77
+
You already sent this form recentlyYou already sent this form recently
-
- src/app/+about/about-instance/contact-admin-modal.component.ts83
+ src/app/+about/about-instance/contact-admin-modal.component.ts83
+
No descriptionNo description
-
- src/app/+video-channels/video-channel-about/video-channel-about.component.ts41src/app/+accounts/account-about/account-about.component.ts38
+ src/app/+video-channels/video-channel-about/video-channel-about.component.ts41
+ src/app/+accounts/account-about/account-about.component.ts38
+
Account videosAccount videos
-
- src/app/+accounts/accounts-routing.module.ts48
- Search videos within accountSearch videos within account
+ src/app/+accounts/accounts-routing.module.ts48
+
+
+ Search videos within account
+ Search videos within accountsrc/app/+accounts/accounts-routing.module.ts61
@@ -5723,36 +6343,48 @@ channel with the same name ()!
Account video channelsAccount video channels
-
- src/app/+accounts/accounts-routing.module.ts30
+ src/app/+accounts/accounts-routing.module.ts30
+ About accountAbout account
-
- src/app/+accounts/accounts-routing.module.ts39
+ src/app/+accounts/accounts-routing.module.ts39
+
Published videosPublished
videos
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87src/app/+accounts/account-search/account-search.component.ts90src/app/+accounts/account-videos/account-videos.component.ts79
- 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.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts87
+ src/app/+accounts/account-search/account-search.component.ts90
+ src/app/+accounts/account-videos/account-videos.component.ts79
+
+
+ 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.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ src/app/shared/shared-video-miniature/abstract-video-list.html39
+ direct account followers direct account followers
-
- src/app/+accounts/accounts.component.ts127
+ src/app/+accounts/accounts.component.ts127
+
Report this accountReport this account
-
- src/app/+accounts/accounts.component.ts133
- Search videosSearch videos
+ src/app/+accounts/accounts.component.ts133
+
+
+ Search videos
+ Search videossrc/app/+accounts/accounts.component.html48
@@ -5761,79 +6393,84 @@ channel with the same name ()!
VIDEO CHANNELSVIDEO CHANNELS
-
- src/app/+accounts/accounts.component.ts65
+ src/app/+accounts/accounts.component.ts65
+ VIDEOS
- VIDEOS
-
- src/app/+video-channels/video-channels.component.ts69src/app/+accounts/accounts.component.ts66
+ VİDEOLAR
+ src/app/+video-channels/video-channels.component.ts69
+ src/app/+accounts/accounts.component.ts66
+
ABOUT
- ABOUT
-
- src/app/+video-channels/video-channels.component.ts71src/app/+accounts/accounts.component.ts67
+ HAKKINDA
+ src/app/+video-channels/video-channels.component.ts71
+ src/app/+accounts/accounts.component.ts67
+
Username copied
- Username copied
-
- src/app/+video-channels/video-channels.component.ts96src/app/+accounts/accounts.component.ts95
+ Kullanıcı adı kopyalandı
+ src/app/+video-channels/video-channels.component.ts96
+ src/app/+accounts/accounts.component.ts95
+
1 subscriber
- 1 subscriber
-
- src/app/+accounts/accounts.component.ts99
+ 1 abone
+ src/app/+accounts/accounts.component.ts99
+
subscribers
- subscribers
-
- src/app/+accounts/accounts.component.ts101
+ abone
+ src/app/+accounts/accounts.component.ts101
+
Instances you followInstances you follow
-
- src/app/+admin/follows/following-list/following-list.component.html3
+ src/app/+admin/follows/following-list/following-list.component.html3
+
Instances following youInstances following you
-
- src/app/+admin/follows/followers-list/followers-list.component.html3
+ src/app/+admin/follows/followers-list/followers-list.component.html3
+
Audio-only
- Audio-only
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts61
+ Yalnızca ses
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts61
+
- 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-custom-config.component.ts62
+ 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-custom-config.component.ts62
+
240p
- 240p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts66
+ 240p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts66
+
360p
- 360p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts70
+ 360p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts70
+
480p
- 480p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts74
+ 480p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts74
+
720p
- 720p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts78
+ 720p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts78
+
1080p
- 1080p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts82
- 1440p1440p
+ 1080p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts82
+
+
+ 1440p
+ 1440psrc/app/+admin/config/edit-custom-config/edit-custom-config.component.ts86
@@ -5841,819 +6478,903 @@ channel with the same name ()!
2160p
- 2160p
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts90
+ 2160p
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts90
+
Auto (via ffmpeg)Auto (via ffmpeg)
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts97
- No limitNo limit
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts105
- 1 hour1 hour
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts106
- 3 hours3 hours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts107
- 5 hours5 hours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts108
- 10 hours10 hours
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts109
- threadsthreads
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts149
- threadthread
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts150
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts97
+
+
+ No limit
+ No limit
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts105
+
+
+ 1 hour
+ 1 saat
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts106
+
+
+ 3 hours
+ 3 saat
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts107
+
+
+ 5 hours
+ 5 saat
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts108
+
+
+ 10 hours
+ 10 saat
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts109
+
+
+ threads
+ threads
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts149
+
+
+ thread
+ thread
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts150
+ Configuration updated.Configuration updated.
-
- src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts380
- 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-custom-config.component.ts473
+ src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts380
+
+
+ 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-custom-config.component.ts473
+ Edit custom configurationEdit custom configuration
-
- src/app/+admin/config/config.routes.ts26
+ src/app/+admin/config/config.routes.ts26
+
Process domainsProcess domains
-
- src/app/shared/shared-moderation/batch-domains-modal.component.ts28
+ src/app/shared/shared-moderation/batch-domains-modal.component.ts28
+
Report Report
-
- src/app/shared/shared-moderation/report-modals/account-report.component.ts51
+ src/app/shared/shared-moderation/report-modals/account-report.component.ts51
+
Account reported.Account reported.
-
- src/app/shared/shared-moderation/report-modals/account-report.component.ts82
+ src/app/shared/shared-moderation/report-modals/account-report.component.ts82
+
Comment reported.Comment reported.
-
- src/app/shared/shared-moderation/report-modals/comment-report.component.ts82
+ src/app/shared/shared-moderation/report-modals/comment-report.component.ts82
+
Domain is required.Domain is required.
-
- src/app/shared/form-validators/batch-domains-validators.ts56
+ src/app/shared/form-validators/batch-domains-validators.ts56
+
Domains entered are invalid.Domains entered are invalid.
-
- src/app/shared/form-validators/batch-domains-validators.ts57
+ src/app/shared/form-validators/batch-domains-validators.ts57
+
Domains entered contain duplicates.Domains entered contain duplicates.
-
- src/app/shared/form-validators/batch-domains-validators.ts58
+ src/app/shared/form-validators/batch-domains-validators.ts58
+
UnlimitedUnlimited
-
- src/app/shared/shared-main/users/user-quota.component.ts32src/app/shared/shared-main/users/user-quota.component.ts38src/app/shared/shared-instance/instance-features-table.component.ts26src/app/shared/shared-instance/instance-features-table.component.ts33src/app/+admin/config/shared/config.service.ts21src/app/+admin/config/shared/config.service.ts34
+ src/app/shared/shared-main/users/user-quota.component.ts32
+ src/app/shared/shared-main/users/user-quota.component.ts38
+ src/app/shared/shared-instance/instance-features-table.component.ts26
+ src/app/shared/shared-instance/instance-features-table.component.ts33
+ src/app/+admin/config/shared/config.service.ts21
+ src/app/+admin/config/shared/config.service.ts34
+
None - no upload possibleNone - no upload possible
-
- src/app/+admin/config/shared/config.service.ts23src/app/+admin/config/shared/config.service.ts36
+ src/app/+admin/config/shared/config.service.ts23
+ src/app/+admin/config/shared/config.service.ts36
+
100MB
- 100MB
-
- src/app/+admin/config/shared/config.service.ts24src/app/+admin/config/shared/config.service.ts39
+ 100MB
+ src/app/+admin/config/shared/config.service.ts24
+ src/app/+admin/config/shared/config.service.ts39
+
500MB
- 500MB
-
- src/app/+admin/config/shared/config.service.ts25src/app/+admin/config/shared/config.service.ts40
+ 500MB
+ src/app/+admin/config/shared/config.service.ts25
+ src/app/+admin/config/shared/config.service.ts40
+
1GB
- 1GB
-
- src/app/+admin/config/shared/config.service.ts26
+ 1GB
+ src/app/+admin/config/shared/config.service.ts26
+
5GB
- 5GB
-
- src/app/+admin/config/shared/config.service.ts27src/app/+admin/config/shared/config.service.ts42
+ 5GB
+ src/app/+admin/config/shared/config.service.ts27
+ src/app/+admin/config/shared/config.service.ts42
+
20GB
- 20GB
-
- src/app/+admin/config/shared/config.service.ts28
+ 20GB
+ src/app/+admin/config/shared/config.service.ts28
+
50GB
- 50GB
-
- src/app/+admin/config/shared/config.service.ts29
+ 50GB
+ src/app/+admin/config/shared/config.service.ts29
+
10MB
- 10MB
-
- src/app/+admin/config/shared/config.service.ts37
+ 10MB
+ src/app/+admin/config/shared/config.service.ts37
+
50MB
- 50MB
-
- src/app/+admin/config/shared/config.service.ts38
+ 50MB
+ src/app/+admin/config/shared/config.service.ts38
+
2GB
- 2GB
-
- src/app/+admin/config/shared/config.service.ts41
+ 2GB
+ src/app/+admin/config/shared/config.service.ts41
+
accepted in instance followers accepted in instance followers
-
- src/app/+admin/follows/followers-list/followers-list.component.ts41
+ src/app/+admin/follows/followers-list/followers-list.component.ts41
+
Do you really want to reject this follower?Do you really want to reject this follower?
-
- src/app/+admin/follows/followers-list/followers-list.component.ts52
+ src/app/+admin/follows/followers-list/followers-list.component.ts52
+
RejectReject
-
- src/app/+admin/follows/followers-list/followers-list.component.ts53
+ src/app/+admin/follows/followers-list/followers-list.component.ts53
+
rejected from instance followers rejected from instance followers
-
- src/app/+admin/follows/followers-list/followers-list.component.ts60
+ src/app/+admin/follows/followers-list/followers-list.component.ts60
+
Do you really want to delete this follower?Do you really want to delete this follower?
-
- src/app/+admin/follows/followers-list/followers-list.component.ts73
+ src/app/+admin/follows/followers-list/followers-list.component.ts73
+
DeleteDelete
-
- src/app/+my-library/my-videos/my-videos.component.ts104src/app/+my-library/my-videos/my-videos.component.ts131src/app/+my-library/my-videos/my-videos.component.ts172src/app/+my-library/my-video-playlists/my-video-playlists.component.ts50src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127src/app/shared/shared-main/buttons/delete-button.component.ts16src/app/shared/shared-main/buttons/delete-button.component.ts21src/app/shared/shared-moderation/user-moderation-dropdown.component.ts91src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308src/app/shared/shared-abuse-list/abuse-list-table.component.ts129src/app/shared/shared-abuse-list/abuse-list-table.component.ts371src/app/shared/shared-abuse-list/abuse-list-table.component.ts406src/app/+my-library/+my-video-channels/my-video-channels.component.ts71src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts86src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts158src/app/+videos/+video-watch/comment/video-comments.component.ts167src/app/+admin/moderation/video-block-list/video-block-list.component.ts75src/app/+admin/moderation/video-block-list/video-block-list.component.ts79src/app/+admin/users/user-list/user-list.component.ts76src/app/+admin/users/user-list/user-list.component.ts194src/app/+admin/follows/followers-list/followers-list.component.ts74
+ src/app/+my-library/my-videos/my-videos.component.ts104
+ src/app/+my-library/my-videos/my-videos.component.ts131
+ src/app/+my-library/my-videos/my-videos.component.ts172
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.ts50
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts127
+ src/app/shared/shared-main/buttons/delete-button.component.ts16
+ src/app/shared/shared-main/buttons/delete-button.component.ts21
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts91
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts208
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts308
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts129
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts371
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts406
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts71
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts86
+ src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts158
+ src/app/+videos/+video-watch/comment/video-comments.component.ts167
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts75
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts79
+ src/app/+admin/users/user-list/user-list.component.ts76
+ src/app/+admin/users/user-list/user-list.component.ts194
+ src/app/+admin/follows/followers-list/followers-list.component.ts74
+
removed from instance followers removed from instance followers
-
- src/app/+admin/follows/followers-list/followers-list.component.ts81
+ src/app/+admin/follows/followers-list/followers-list.component.ts81
+
is not valid is not valid
-
- src/app/shared/form-validators/batch-domains-validators.ts19
+ src/app/shared/form-validators/batch-domains-validators.ts19
+
Follow request(s) sent!Follow request(s) sent!
-
- src/app/+admin/follows/following-list/following-list.component.ts47
+ src/app/+admin/follows/following-list/following-list.component.ts47
+
Do you really want to unfollow ?Do you really want to unfollow
?
-
- src/app/+admin/follows/following-list/following-list.component.ts57
+ src/app/+admin/follows/following-list/following-list.component.ts57
+
UnfollowUnfollow
-
- src/app/+admin/follows/following-list/following-list.component.ts58
+ src/app/+admin/follows/following-list/following-list.component.ts58
+
You are not following anymore.You are not following
anymore.
-
- src/app/+admin/follows/following-list/following-list.component.ts64
+ src/app/+admin/follows/following-list/following-list.component.ts64
+
enabledenabled
-
- src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+ src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+
disableddisabled
-
- src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+ src/app/+admin/follows/shared/redundancy-checkbox.component.ts23
+
Redundancy for is Redundancy for
is
-
- src/app/+admin/follows/shared/redundancy-checkbox.component.ts25
+ src/app/+admin/follows/shared/redundancy-checkbox.component.ts25
+
UsedUsed
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+
AvailableAvailable
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts101
+
Do you really want to remove this video redundancy?Do you really want to remove this video redundancy?
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts140
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts140
+
Remove redundancyRemove redundancy
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts141
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts141
+
Video redundancies removed!Video redundancies removed!
-
- src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts147
+ src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts147
+
Account unmuted by your instance.Account
unmuted by your instance.
-
- src/app/shared/shared-moderation/account-blocklist.component.ts48
+ src/app/shared/shared-moderation/account-blocklist.component.ts48
+
Instance unmuted by your instance.Instance
unmuted by your instance.
-
- src/app/shared/shared-moderation/server-blocklist.component.ts46
+ src/app/shared/shared-moderation/server-blocklist.component.ts46
+
Instance muted.Instance
muted.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts147src/app/shared/shared-moderation/server-blocklist.component.ts68
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts147
+ src/app/shared/shared-moderation/server-blocklist.component.ts68
+
Instance muted by your instance.Instance
muted by your instance.
-
- src/app/shared/shared-moderation/server-blocklist.component.ts69
+ src/app/shared/shared-moderation/server-blocklist.component.ts69
+
Comment updated.Comment updated.
-
- src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts58
+ src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts58
+
Violent or RepulsiveViolent or Repulsive
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts21
+ src/app/shared/shared-abuse-list/abuse-details.component.ts21
+
Hateful or AbusiveHateful or Abusive
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts22
+ src/app/shared/shared-abuse-list/abuse-details.component.ts22
+
Spam or MisleadingSpam or Misleading
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts23
+ src/app/shared/shared-abuse-list/abuse-details.component.ts23
+
Privacy
- Privacy
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts24
+ Gizlilik
+ src/app/shared/shared-abuse-list/abuse-details.component.ts24
+
Copyright
- Copyright
-
- src/app/shared/shared-moderation/abuse.service.ts159src/app/shared/shared-abuse-list/abuse-details.component.ts25
+ Telif hakkı
+ src/app/shared/shared-moderation/abuse.service.ts159
+ src/app/shared/shared-abuse-list/abuse-details.component.ts25
+
Server rules
- Server rules
-
- src/app/shared/shared-abuse-list/abuse-details.component.ts26
+ Sunucu kuralları
+ src/app/shared/shared-abuse-list/abuse-details.component.ts26
+
Thumbnails
- Thumbnails
-
- src/app/shared/shared-moderation/abuse.service.ts173src/app/shared/shared-abuse-list/abuse-details.component.ts27
+ Küçük resimler
+ src/app/shared/shared-moderation/abuse.service.ts173
+ src/app/shared/shared-abuse-list/abuse-details.component.ts27
+
Internal actionsInternal actions
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts239src/app/+admin/moderation/video-block-list/video-block-list.component.ts43
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts239
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts43
+
Delete reportDelete report
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts270
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts270
+
Actions for the flagged accountActions for the flagged account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts281
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts281
+
Mark as acceptedMark as accepted
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts255
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts255
+
Mark as rejectedMark as rejected
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts260
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts260
+
Add internal noteAdd internal note
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts265
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts265
+
Actions for the videoActions for the video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts329src/app/+admin/moderation/video-block-list/video-block-list.component.ts66
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts329
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts66
+
Block video
- Block video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts334
+ Videoyu engelle
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts334
+
Video blocked.
- Video blocked.
-
- src/app/shared/shared-moderation/video-block.component.ts60src/app/shared/shared-abuse-list/abuse-list-table.component.ts340
+ Video engellendi.
+ src/app/shared/shared-moderation/video-block.component.ts60
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts340
+
Unblock videoUnblock video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts350
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts350
+
Video unblocked.Video unblocked.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts356
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts356
+
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.ts129
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts129
+
Abuse deleted.Abuse deleted.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts134
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts134
+
Deleted commentDeleted comment
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts210
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts210
+
Messages with reporterMessages with reporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts244
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts244
+
Messages with moderatorsMessages with moderators
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts245
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts245
+
Update internal noteUpdate internal note
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts250
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts250
+
Switch video block to manualSwitch video block to manual
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.ts48
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts48
+
Video switched to manual block.Video
switched to manual block.
-
- src/app/+admin/moderation/video-block-list/video-block-list.component.ts54
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts54
+
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/shared/shared-video-miniature/video-actions-dropdown.component.ts180src/app/+admin/moderation/video-block-list/video-block-list.component.ts146
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts180
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts146
+
UnblockUnblock
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296src/app/+admin/moderation/video-block-list/video-block-list.component.ts70src/app/+admin/moderation/video-block-list/video-block-list.component.ts148
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts182
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts296
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts70
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts148
+
Video unblocked.Video
unblocked.
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188src/app/+admin/moderation/video-block-list/video-block-list.component.ts153
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts188
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts153
+
yes
- yes
-
- src/app/shared/shared-instance/feature-boolean.component.html1src/app/shared/shared-instance/feature-boolean.component.html1
+ evet
+ src/app/shared/shared-instance/feature-boolean.component.html1
+ src/app/shared/shared-instance/feature-boolean.component.html1
+
no
- no
-
- src/app/shared/shared-instance/feature-boolean.component.html2src/app/shared/shared-instance/feature-boolean.component.html2
+ hayır
+ src/app/shared/shared-instance/feature-boolean.component.html2
+ src/app/shared/shared-instance/feature-boolean.component.html2
+
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.ts89
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts89
+
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.ts92
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts92
+
Update to Update to
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts100
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts100
+
Do you really want to uninstall ?Do you really want to uninstall
?
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts109
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts109
+
UninstallUninstall
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts110
+
uninstalled. uninstalled.
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts117
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts117
+
updated. updated.
-
- src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts139
+ src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts139
+
JobsJobs
-
- src/app/+admin/system/system.routes.ts26
+ src/app/+admin/system/system.routes.ts26
+
LogsLogs
-
- src/app/+admin/system/system.routes.ts37
+ src/app/+admin/system/system.routes.ts37
+
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.ts126
+ src/app/+admin/plugins/plugin-search/plugin-search.component.ts126
+
Install ?Install
?
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.ts127
+ src/app/+admin/plugins/plugin-search/plugin-search.component.ts127
+
installed. installed.
-
- src/app/+admin/plugins/plugin-search/plugin-search.component.ts139
+ src/app/+admin/plugins/plugin-search/plugin-search.component.ts139
+
Settings updated.Settings updated.
-
- src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts52
+ src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts52
+
PluginsPlugins
-
- src/app/+admin/plugins/shared/plugin-api.service.ts33
+ src/app/+admin/plugins/shared/plugin-api.service.ts33
+
Themes
- Themes
-
- src/app/+admin/plugins/shared/plugin-api.service.ts37
+ Temalar
+ src/app/+admin/plugins/shared/plugin-api.service.ts37
+
plugin
- plugin
-
- src/app/+admin/plugins/shared/plugin-api.service.ts45
+ eklenti
+ src/app/+admin/plugins/shared/plugin-api.service.ts45
+
theme
- theme
-
- src/app/+admin/plugins/shared/plugin-api.service.ts48
+ tema
+ src/app/+admin/plugins/shared/plugin-api.service.ts48
+
Last week
- Last week
-
- src/app/+admin/system/logs/logs.component.ts79
+ Geçen hafta
+ src/app/+admin/system/logs/logs.component.ts79
+
Last day
- Last day
-
- src/app/+admin/system/logs/logs.component.ts84
+ Geçen gün
+ src/app/+admin/system/logs/logs.component.ts84
+
Last hour
- Last hour
-
- src/app/+admin/system/logs/logs.component.ts89
- debugdebug
-
- src/app/+admin/system/logs/logs.component.ts101
- infoinfo
-
- src/app/+admin/system/logs/logs.component.ts105
- warningwarning
-
- src/app/+admin/system/logs/logs.component.ts109
- errorerror
-
- src/app/+admin/system/logs/logs.component.ts113
+ Geçen saat
+ src/app/+admin/system/logs/logs.component.ts89
+
+
+ debug
+ debug
+ src/app/+admin/system/logs/logs.component.ts101
+
+
+ info
+ info
+ src/app/+admin/system/logs/logs.component.ts105
+
+
+ warning
+ warning
+ src/app/+admin/system/logs/logs.component.ts109
+
+
+ error
+ error
+ src/app/+admin/system/logs/logs.component.ts113
+ DebugDebug
-
- src/app/+admin/system/system.routes.ts48
+ src/app/+admin/system/system.routes.ts48
+
InfoInfo
-
- src/app/core/notification/notifier.service.ts11
+ src/app/core/notification/notifier.service.ts11
+
WarningWarning
-
- src/app/core/routing/can-deactivate-guard.service.ts23
+ src/app/core/routing/can-deactivate-guard.service.ts23
+
ErrorError
-
- 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 logsStandard logs
-
- src/app/+admin/system/logs/logs.component.ts124
+ src/app/+admin/system/logs/logs.component.ts124
+
Audit logsAudit logs
-
- src/app/+admin/system/logs/logs.component.ts128
+ src/app/+admin/system/logs/logs.component.ts128
+
User created.User
created.
-
- src/app/+admin/users/user-edit/user-create.component.ts77
+ src/app/+admin/users/user-edit/user-create.component.ts77
+
Create userCreate user
-
- src/app/+admin/users/user-edit/user-create.component.ts95
- Blocked videosBlocked videos
-
- src/app/+admin/moderation/moderation.routes.ts69
-
+ src/app/+admin/users/user-edit/user-create.component.ts95
+
+
+ Blocked videos
+ Engellenmiş videolar
+ src/app/+admin/moderation/moderation.routes.ts69
+ Muted instancesMuted instances
-
- src/app/+admin/moderation/moderation.routes.ts109
+ src/app/+admin/moderation/moderation.routes.ts109
+
Password changed for user .Password changed for user
.
-
- src/app/+admin/users/user-edit/user-password.component.ts40
+ src/app/+admin/users/user-edit/user-password.component.ts40
+
Update user passwordUpdate user password
-
- src/app/+admin/users/user-edit/user-password.component.ts52
+ src/app/+admin/users/user-edit/user-password.component.ts52
+
Following listFollowing list
-
- src/app/+admin/follows/follows.routes.ts28
+ src/app/+admin/follows/follows.routes.ts28
+
Followers listFollowers list
-
- src/app/+admin/follows/follows.routes.ts37
+ src/app/+admin/follows/follows.routes.ts37
+
User updated.User
updated.
-
- src/app/+admin/users/user-edit/user-update.component.ts85
+ src/app/+admin/users/user-edit/user-update.component.ts85
+
Update userUpdate user
-
- src/app/+admin/users/user-edit/user-update.component.ts102
+ src/app/+admin/users/user-edit/user-update.component.ts102
+
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.ts108
+ src/app/+admin/users/user-edit/user-update.component.ts108
+
Users listUsers list
-
- src/app/+admin/users/users.routes.ts27
+ src/app/+admin/users/users.routes.ts27
+
Create a userCreate a user
-
- src/app/+admin/users/users.routes.ts36
+ src/app/+admin/users/users.routes.ts36
+
Update a userUpdate a user
-
- src/app/+admin/users/users.routes.ts48
+ src/app/+admin/users/users.routes.ts48
+
FederationFederation
-
- src/app/+admin/admin.component.ts26
+ src/app/+admin/admin.component.ts26
+
Instances you followInstances you follow
-
- src/app/+admin/admin.component.ts29
+ src/app/+admin/admin.component.ts29
+
Instances following youInstances following you
-
- src/app/+admin/admin.component.ts34
+ src/app/+admin/admin.component.ts34
+
Videos will be deleted, comments will be tombstoned.Videos will be deleted, comments will be tombstoned.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269src/app/+admin/users/user-list/user-list.component.ts77
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts269
+ src/app/+admin/users/user-list/user-list.component.ts77
+
BanBan
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts273src/app/+admin/users/user-list/user-list.component.ts82
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts273
+ src/app/+admin/users/user-list/user-list.component.ts82
+
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/shared/shared-moderation/user-moderation-dropdown.component.ts274src/app/+admin/users/user-list/user-list.component.ts83
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts274
+ src/app/+admin/users/user-list/user-list.component.ts83
+
UnbanUnban
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70src/app/+admin/users/user-list/user-list.component.ts88src/app/+admin/users/user-list/user-list.component.ts171
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70
+ src/app/+admin/users/user-list/user-list.component.ts88
+ src/app/+admin/users/user-list/user-list.component.ts171
+
Set Email as VerifiedSet Email as Verified
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts285src/app/+admin/users/user-list/user-list.component.ts95
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts285
+ src/app/+admin/users/user-list/user-list.component.ts95
+
You cannot ban root.You cannot ban root.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts58src/app/+admin/users/user-list/user-list.component.ts154
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts58
+ src/app/+admin/users/user-list/user-list.component.ts154
+
Do you really want to unban users?Do you really want to unban
users?
-
- src/app/+admin/users/user-list/user-list.component.ts171
+ src/app/+admin/users/user-list/user-list.component.ts171
+
users unbanned. users unbanned.
-
- src/app/+admin/users/user-list/user-list.component.ts177
+ src/app/+admin/users/user-list/user-list.component.ts177
+
You cannot delete root.You cannot delete root.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86src/app/+admin/users/user-list/user-list.component.ts188
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts86
+ src/app/+admin/users/user-list/user-list.component.ts188
+
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.ts193
+ src/app/+admin/users/user-list/user-list.component.ts193
+
users deleted. users deleted.
-
- src/app/+admin/users/user-list/user-list.component.ts199
+ src/app/+admin/users/user-list/user-list.component.ts199
+
users email set as verified. users email set as verified.
-
- src/app/+admin/users/user-list/user-list.component.ts210
+ src/app/+admin/users/user-list/user-list.component.ts210
+
Account unmuted.Account
unmuted.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts133src/app/shared/shared-moderation/account-blocklist.component.ts47
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts133
+ src/app/shared/shared-moderation/account-blocklist.component.ts47
+
Instance unmuted.Instance
unmuted.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts161src/app/shared/shared-moderation/server-blocklist.component.ts45
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts161
+ src/app/shared/shared-moderation/server-blocklist.component.ts45
+
Videos history is enabled
- Videos history is enabled
-
- src/app/+my-library/my-history/my-history.component.ts106
+ Video geçmişi açıldı
+ src/app/+my-library/my-history/my-history.component.ts106
+
Videos history is disabled
- Videos history is disabled
-
- src/app/+my-library/my-history/my-history.component.ts107
+ Video geçmişi kapatıldı
+ src/app/+my-library/my-history/my-history.component.ts107
+
Delete videos history
- Delete videos history
-
- src/app/+my-library/my-history/my-history.component.ts119
+ Video geçmişini sil
+ src/app/+my-library/my-history/my-history.component.ts119
+
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.ts120
+ Bütün video geçmişinizi silmek istediğinize emin misiniz?
+ src/app/+my-library/my-history/my-history.component.ts120
+
Videos history deleted
- Videos history deleted
-
- src/app/+my-library/my-history/my-history.component.ts128
- My watch historyMy watch history
+ Video geçmişi silindi
+ src/app/+my-library/my-history/my-history.component.ts128
+
+
+ My watch history
+ İzleme geçmişimsrc/app/+my-library/my-history/my-history.component.html3
-
- Search your historySearch your history
+
+
+ Search your history
+ Geçmişinizde arayınsrc/app/+my-library/my-history/my-history.component.html10
-
- Track watch historyTrack watch history
+
+
+ Track watch history
+ Track watch historysrc/app/+my-library/my-history/my-history.component.html20
@@ -6662,20 +7383,21 @@ channel with the same name ()!
Ownership acceptedOwnership accepted
-
- src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts71
+ src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts71
+ Please check your emails to verify your new email.Please check your emails to verify your new email.
-
- src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts53
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts53
+
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.
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts55
+
+
+ Your current email is . It is never shown to the public.
+ Your current email is . It is never shown to the public.
src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html
@@ -6685,124 +7407,128 @@ channel with the same name ()!
You current password is invalid.You current password is invalid.
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts56src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts56
+ src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts61
+ Password updated.Password updated.
-
- src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts48
+ src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts48
+
Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts22
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts22
+
Type your username to confirmType your username to confirm
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts23
+
Delete your accountDelete your account
-
- src/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.ts25
+
Delete my account
- Delete my account
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26
+ Hesabımı sil
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts26
+
Your account is deleted.
- Your account is deleted.
-
- src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32
+ Hesabınız silindi.
+ src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts32
+
Interface settings updated.Interface settings updated.
-
- src/app/shared/shared-user-settings/user-interface-settings.component.ts74src/app/shared/shared-user-settings/user-interface-settings.component.ts81
+ src/app/shared/shared-user-settings/user-interface-settings.component.ts74
+ src/app/shared/shared-user-settings/user-interface-settings.component.ts81
+
New video from your subscriptionsNew video from your subscriptions
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts32
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts32
+
New comment on your videoNew comment on your video
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts33
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts33
+
New abuseNew abuse
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts34
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts34
+
Video blocked automatically waiting reviewVideo blocked automatically waiting review
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts35
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts35
+
One of your video is blocked/unblockedOne of your video is blocked/unblocked
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts36
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts36
+
Video published (after transcoding/scheduled update)Video published (after transcoding/scheduled update)
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts37
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts37
+
Video import finishedVideo import finished
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts38
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts38
+
A new user registered on your instanceA new user registered on your instance
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts39
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts39
+
You or your channel(s) has a new followerYou or your channel(s) has a new follower
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts40
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts40
+
Someone mentioned you in video commentsBirisi video yorumlarında sizden bahsetti
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts41
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts41
+
Your instance has a new followerYour instance has a new follower
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts42
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts42
+
Your instance automatically followed another instanceYour instance automatically followed another instance
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts43
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts43
+
An abuse report received a new messageAn abuse report received a new message
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts44
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts44
+
One of your abuse reports has been accepted or rejected by moderatorsOne 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
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts45
+
Preferences savedPreferences saved
-
- src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts92
+ src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts92
+
Profile updated.Profile updated.
-
- 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.html11,13
@@ -6811,12 +7537,18 @@ channel with the same name ()!
Avatar changed.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.ts107
- avataravatar
-
- src/app/+my-account/my-account-settings/my-account-settings.component.ts51src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts114
- Avatar deleted.Avatar deleted.
+ src/app/+my-account/my-account-settings/my-account-settings.component.ts44
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts107
+
+
+ avatar
+ avatar
+ src/app/+my-account/my-account-settings/my-account-settings.component.ts51
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts114
+
+
+ Avatar deleted.
+ Avatar deleted.src/app/+my-account/my-account-settings/my-account-settings.component.ts61
@@ -6828,91 +7560,96 @@ channel with the same name ()!
Unknown language
- Unknown language
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts57
+ Bilinmeyen dil
+ src/app/shared/shared-user-settings/user-video-settings.component.ts57
+ 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.ts102
+ Çok fazla dil etkinleştirildi. Lütfen ya hepsini etkinleştirin ya da etkin dilleri 20'nin altında tutun.
+ src/app/shared/shared-user-settings/user-video-settings.component.ts102
+
You need to enable at least 1 video language.You need to enable at least 1 video language.
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts107
+ src/app/shared/shared-user-settings/user-video-settings.component.ts107
+
Video settings updated.Video settings updated.
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts133
+ src/app/shared/shared-user-settings/user-video-settings.component.ts133
+
Display/Video settings updated.Display/Video settings updated.
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts140
+ src/app/shared/shared-user-settings/user-video-settings.component.ts140
+
Video channel created.Video channel
created.
-
- src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts57
+ src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts57
+
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.ts63
+ src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts63
+
Video channel updated.Video channel
updated.
-
- src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts94
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts94
+
Please type the display name of the video channel () to confirmPlease type the display name of the video channel (
) to confirm
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts67
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts67
+
Video channel deleted.Video channel
deleted.
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts79
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts79
+
Views for the dayViews for the day
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.ts98
-
+ src/app/+my-library/+my-video-channels/my-video-channels.component.ts98
+
Update video channelUpdate video channel
-
- src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts31
+ src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts31
+
Not foundNot 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
+ src/app/+page-not-found/page-not-found-routing.module.ts14
+
+
+ URL parameter is missing in URL parameters
+ URL parameter is missing in URL parameterssrc/app/+remote-interaction/remote-interaction.component.ts25
-
- Cannot access to the remote resourceCannot access to the remote resource
+
+
+ Cannot access to the remote resource
+ Cannot access to the remote resourcesrc/app/+remote-interaction/remote-interaction.component.ts48
-
- Remote interactionRemote interaction
+
+
+ Remote interaction
+ Remote interactionsrc/app/+remote-interaction/remote-interaction-routing.module.ts13
@@ -6923,80 +7660,87 @@ channel with the same name ()!
Playlist
created.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts76
+ src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts76
+
CreateCreate
-
- src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts77
+ src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts89
+ src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts77
+
Update playlistUpdate playlist
-
- src/app/+my-library/my-library-routing.module.ts67src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47
-
-
-
+ src/app/+my-library/my-library-routing.module.ts67
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts47
+
NotificationsNotifications
-
- src/app/+my-account/my-account.component.ts55src/app/+my-account/my-account-routing.module.ts109
- ApplicationsApplications
-
- src/app/+my-account/my-account.component.ts60src/app/+my-account/my-account-routing.module.ts127
+ src/app/+my-account/my-account.component.ts55
+ src/app/+my-account/my-account-routing.module.ts109
+
+
+ Applications
+ Applications
+ src/app/+my-account/my-account.component.ts60
+ src/app/+my-account/my-account-routing.module.ts127
+ Delete playlistDelete playlist
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts52
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts52
+
Playlist updated.Playlist
updated.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts97
+ src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts97
+
Do you really want to delete ?Do you really want to delete
?
-
- src/app/+my-library/my-videos/my-videos.component.ts130src/app/+my-library/my-video-playlists/my-video-playlists.component.ts49src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126
- Change ownershipChange ownership
-
- src/app/+my-library/my-videos/my-videos.component.ts167
+ src/app/+my-library/my-videos/my-videos.component.ts130
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.ts49
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts126
+
+
+ Change ownership
+ Change ownership
+ src/app/+my-library/my-videos/my-videos.component.ts167
+ Playlist deleted.Playlist
deleted.
-
- src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts135
+ src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts135
+
My videos
- My videos
-
- src/app/+my-library/my-videos/my-videos.component.html4
- Ownership changesOwnership changes
-
- src/app/+my-library/my-videos/my-videos.component.html16
+ Videolarım
+ src/app/+my-library/my-videos/my-videos.component.html4
+
+
+ Ownership changes
+ Ownership changes
+ src/app/+my-library/my-videos/my-videos.component.html16
+ Do you really want to delete videos?Do you really want to delete
videos?
-
- src/app/+my-library/my-videos/my-videos.component.ts103
+ src/app/+my-library/my-videos/my-videos.component.ts103
+
videos deleted.
-
- videos deleted.
-
-
- src/app/+my-library/my-videos/my-videos.component.ts120
+ video silindi.
+ src/app/+my-library/my-videos/my-videos.component.ts120
+
Do you really want to delete ? Do you really want to delete
@@ -7012,82 +7756,94 @@ channel with the same name ()!Video
deleted.
-
- src/app/+my-library/my-videos/my-videos.component.ts138src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214
+ src/app/+my-library/my-videos/my-videos.component.ts138
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts214
+
Ownership change request sent.Ownership change request sent.
-
- src/app/+my-library/my-videos/modals/video-change-ownership.component.ts64
+ src/app/+my-library/my-videos/modals/video-change-ownership.component.ts64
+
My channels
- My channels
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.html4
+ Kanallarım
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html4
+
Search your channelsSearch your channels
-
- src/app/+my-library/+my-video-channels/my-video-channels.component.html11
+ src/app/+my-library/+my-video-channels/my-video-channels.component.html11
+
My playlists
- My playlists
-
- src/app/+my-library/my-video-playlists/my-video-playlists.component.html4
+ Oynatma listelerim
+ src/app/+my-library/my-video-playlists/my-video-playlists.component.html4
+
My subscriptions
- My subscriptions
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html4
+ Aboneliklerim
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html4
+
Search your subscriptionsSearch your subscriptions
-
- src/app/+my-library/my-subscriptions/my-subscriptions.component.html11
- You don't have any subscription yet.You don't have any subscription yet.
+ src/app/+my-library/my-subscriptions/my-subscriptions.component.html11
+
+
+ You don't have any subscription yet.
+ You don't have any subscription yet.src/app/+my-library/my-subscriptions/my-subscriptions.component.html18
-
-
My abuse reportsMy abuse reports
-
- src/app/+my-account/my-account-routing.module.ts118
+ src/app/+my-account/my-account-routing.module.ts118
+
Ownership changesOwnership changes
-
- src/app/+my-library/my-library-routing.module.ts108
- My video historyMy video history
-
- src/app/+my-library/my-library-routing.module.ts118
- ChannelsChannels
-
- src/app/+my-library/my-library.component.ts47
- VideosVideos
-
- src/app/+my-library/my-library.component.ts54
- PlaylistsPlaylists
-
- src/app/+my-library/my-library.component.ts61
-
-
+ src/app/+my-library/my-library-routing.module.ts108
+
+
+ My video history
+ My video history
+ src/app/+my-library/my-library-routing.module.ts118
+
+
+ Channels
+ Kanallar
+ src/app/+my-library/my-library.component.ts47
+
+
+ Videos
+ Videolar
+ src/app/+my-library/my-library.component.ts54
+
+
+ Playlists
+ Oynatma Listeleri
+ src/app/+my-library/my-library.component.ts61
+ max sizemax size
-
- src/app/shared/shared-forms/preview-upload.component.ts39src/app/shared/shared-main/account/actor-avatar-info.component.ts40
- Maximize editorMaximize editor
+ src/app/shared/shared-forms/preview-upload.component.ts39
+ src/app/shared/shared-main/account/actor-avatar-info.component.ts40
+
+
+ Maximize editor
+ Maximize editorsrc/app/shared/shared-forms/markdown-textarea.component.ts38
-
- Exit maximized editorExit maximized editor
+
+
+ Exit maximized editor
+ Exit maximized editorsrc/app/shared/shared-forms/markdown-textarea.component.ts39
@@ -7096,474 +7852,488 @@ channel with the same name ()!
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.ts126
+ src/app/+signup/+register/register.component.ts126
+ You are now logged in as !You are now logged in as
!
-
- src/app/+signup/+register/register.component.ts134
+ src/app/+signup/+register/register.component.ts134
+
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.ts45
-
-
+ src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts45
+
Unable to find user id or verification string.Unable to find user id or verification string.
-
- src/app/+reset-password/reset-password.component.ts38src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33
+ src/app/+reset-password/reset-password.component.ts38
+ src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts33
+
Published videosPublished videos
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts42
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts42
+
Published 1 videoPublished 1 video
-
- src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts86
+ src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts86
+
Subscribe to the accountSubscribe to the account
-
- src/app/+video-channels/video-channels.component.ts64src/app/+videos/+video-watch/video-watch.component.ts953
+ src/app/+video-channels/video-channels.component.ts64
+ src/app/+videos/+video-watch/video-watch.component.ts953
+
VIDEO PLAYLISTSVIDEO PLAYLISTS
-
- src/app/+video-channels/video-channels.component.ts70
+ src/app/+video-channels/video-channels.component.ts70
+
Focus the search barArama çubuğunu odaklayın
-
- src/app/app.component.ts313
+ src/app/app.component.ts313
+
Toggle the left menuToggle the left menu
-
- src/app/app.component.ts318
+ src/app/app.component.ts318
+
Go to the discover videos page
- Go to the discover videos page
-
- src/app/app.component.ts323
+ Videoları keşfet sayfasına git
+ src/app/app.component.ts323
+
Go to the trending videos pageÖne çıkan videolar sayfasına git
-
- src/app/app.component.ts328
+ src/app/app.component.ts328
+
Go to the recently added videos pageYeni eklenen videolar sayfasına git
-
- src/app/app.component.ts333
+ src/app/app.component.ts333
+
Go to the local videos pageGo to the local videos page
-
- src/app/app.component.ts338
+ src/app/app.component.ts338
+
Go to the videos upload pageGo to the videos upload page
-
- src/app/app.component.ts343
+ src/app/app.component.ts343
+
Go to my subscriptions
- Go to my subscriptions
-
- src/app/core/auth/auth.service.ts64
+ Aboneliklerime git
+ src/app/core/auth/auth.service.ts64
+
Go to my videos
- Go to my videos
-
- src/app/core/auth/auth.service.ts68
+ Videolarıma git
+ src/app/core/auth/auth.service.ts68
+
Go to my importsGo to my imports
-
- src/app/core/auth/auth.service.ts72
+ src/app/core/auth/auth.service.ts72
+
Go to my channelsGo 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.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.You need to reconnect.
-
- src/app/core/auth/auth.service.ts220
+ src/app/core/auth/auth.service.ts220
+
Keyboard Shortcuts:Klavye Kısayolları:
-
- src/app/core/hotkeys/hotkeys.component.ts11
+ src/app/core/hotkeys/hotkeys.component.ts11
+
Success
- Success
-
- src/app/core/notification/notifier.service.ts25
+ Başarılı
+ src/app/core/notification/notifier.service.ts25
+
Incorrect username or password.Incorrect username or password.
-
- src/app/+login/login.component.ts164
+ src/app/+login/login.component.ts164
+
Your account is blocked.
- Your account is blocked.
-
- src/app/+login/login.component.ts165
+ Hesabınız engellenmiş.
+ src/app/+login/login.component.ts165
+
any languageany language
-
- src/app/menu/menu.component.ts251
- ON ON
-
- src/app/menu/menu.component.html123
+ src/app/menu/menu.component.ts251
+
+
+ ON
+ ON
+ src/app/menu/menu.component.html123
+ hide
- hide
-
- src/app/menu/menu.component.ts284
+ gizle
+ src/app/menu/menu.component.ts284
+
blur
- blur
-
- src/app/menu/menu.component.ts288
+ bulanıklaştır
+ src/app/menu/menu.component.ts288
+
display
- display
-
- src/app/menu/menu.component.ts292
+ göster
+ src/app/menu/menu.component.ts292
+
Unknown
- Unknown
-
- src/app/menu/menu.component.ts197
+ Bilinmiyor
+ src/app/menu/menu.component.ts197
+
Your password has been successfully reset!
- Your password has been successfully reset!
-
- src/app/+reset-password/reset-password.component.ts47
+ Şifreniz başarıyla sıfırlandı!
+ src/app/+reset-password/reset-password.component.ts47
+
Any
- Any
-
- src/app/+search/search-filters.component.ts38src/app/+search/search-filters.component.ts61
+ Herhangi
+ src/app/+search/search-filters.component.ts38
+ src/app/+search/search-filters.component.ts61
+
Today
- Today
-
- src/app/+search/search-filters.component.ts42src/app/shared/shared-video-miniature/abstract-video-list.ts116src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts70
+ Bugün
+ src/app/+search/search-filters.component.ts42
+ src/app/shared/shared-video-miniature/abstract-video-list.ts116
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts70
+
Yesterday
- Yesterday
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts117
- This weekThis week
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts118
- This monthThis month
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts119
+ Dün
+ src/app/shared/shared-video-miniature/abstract-video-list.ts117
+
+
+ This week
+ Bu hafta
+ src/app/shared/shared-video-miniature/abstract-video-list.ts118
+
+
+ This month
+ Bu ay
+ src/app/shared/shared-video-miniature/abstract-video-list.ts119
+ Last month
- Last month
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts120
+ Geçen ay
+ src/app/shared/shared-video-miniature/abstract-video-list.ts120
+
Older
- Older
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts121
+ Daha eski
+ src/app/shared/shared-video-miniature/abstract-video-list.ts121
+
Cannot load more videos. Try again later.
- Cannot load more videos. Try again later.
-
- src/app/shared/shared-video-miniature/abstract-video-list.ts198
+ Daha fazla video yüklenemiyor. Daha sonra tekrar deneyin.
+ src/app/shared/shared-video-miniature/abstract-video-list.ts198
+
Last 7 days
- Last 7 days
-
- src/app/+search/search-filters.component.ts46
+ Son 7 gün
+ src/app/+search/search-filters.component.ts46
+
Last 30 days
- Last 30 days
-
- src/app/+search/search-filters.component.ts50
+ Son 30 gün
+ src/app/+search/search-filters.component.ts50
+
Last 365 days
- Last 365 days
-
- src/app/+search/search-filters.component.ts54
+ Son 365 gün
+ src/app/+search/search-filters.component.ts54
+
Short (< 4 min)
- Short (< 4 min)
-
- src/app/+search/search-filters.component.ts65
+ Kısa (< 4 dk)
+ src/app/+search/search-filters.component.ts65
+
Medium (4-10 min)
- Medium (4-10 min)
-
- src/app/+search/search-filters.component.ts69
+ Orta (4-10 dk)
+ src/app/+search/search-filters.component.ts69
+
- Long (> 10 min)
- Long (> 10 min)
-
- src/app/+search/search-filters.component.ts73
+ Long (> 10 min)
+ Uzun (> 10 dk)
+ src/app/+search/search-filters.component.ts73
+
Relevance
- Relevance
-
- src/app/+search/search-filters.component.ts80
+ İlgi
+ src/app/+search/search-filters.component.ts80
+
Publish date
- Publish date
-
- src/app/+search/search-filters.component.ts84
+ Yayınlanma tarihi
+ src/app/+search/search-filters.component.ts84
+
ViewsGörüntülemeler
-
- src/app/+search/search-filters.component.ts88
+ src/app/+search/search-filters.component.ts88
+
Search index is unavailable. Retrying with instance results instead.Search index is unavailable. Retrying with instance results instead.
-
- src/app/+search/search.component.ts171
+ src/app/+search/search.component.ts171
+
Search errorSearch error
-
- src/app/+search/search.component.ts172
+ src/app/+search/search.component.ts172
+
SearchSearch
-
- src/app/shared/shared-main/misc/simple-search-input.component.ts15src/app/+search/search.component.ts230src/app/+search/search-routing.module.ts15
+ src/app/shared/shared-main/misc/simple-search-input.component.ts15
+ src/app/+search/search.component.ts230
+ src/app/+search/search-routing.module.ts15
+
years ago yıl önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts12
+ src/app/shared/shared-main/angular/from-now.pipe.ts12
+
year ago
-
- year ago
-
-
- src/app/shared/shared-main/angular/from-now.pipe.ts13
+ yıl önce
+ src/app/shared/shared-main/angular/from-now.pipe.ts13
+
months ago ay önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts16
+ src/app/shared/shared-main/angular/from-now.pipe.ts16
+
month ago ay önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts17
+ src/app/shared/shared-main/angular/from-now.pipe.ts17
+
weeks ago hafta önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts20
+ src/app/shared/shared-main/angular/from-now.pipe.ts20
+
week ago hafta önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts21
+ src/app/shared/shared-main/angular/from-now.pipe.ts21
+
days ago gün önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts24
+ src/app/shared/shared-main/angular/from-now.pipe.ts24
+
day ago gün önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts25
+ src/app/shared/shared-main/angular/from-now.pipe.ts25
+
hours ago saat önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts28
+ src/app/shared/shared-main/angular/from-now.pipe.ts28
+
hour ago saat önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts29
+ src/app/shared/shared-main/angular/from-now.pipe.ts29
+
min ago dakika önce
-
- src/app/shared/shared-main/angular/from-now.pipe.ts32
+ src/app/shared/shared-main/angular/from-now.pipe.ts32
+
just now
- just now
-
- src/app/shared/shared-main/angular/from-now.pipe.ts34
-
-
+ az önce
+ src/app/shared/shared-main/angular/from-now.pipe.ts34
+
sec
-
- sec
-
-
- src/app/shared/shared-main/angular/duration-formatter.pipe.ts30
- Abuse reportsAbuse reports
-
- src/app/+my-account/my-account.component.ts41
- SettingsSettings
-
- src/app/+my-account/my-account.component.ts50
+ sn
+ src/app/shared/shared-main/angular/duration-formatter.pipe.ts30
+
+
+ Abuse reports
+ Abuse reports
+ src/app/+my-account/my-account.component.ts41
+
+
+ Settings
+ Settings
+ src/app/+my-account/my-account.component.ts50
+ ConfirmConfirm
-
- src/app/modal/confirm.component.ts39
+ src/app/modal/confirm.component.ts39
+
Instance name is required.Instance name is required.
-
- src/app/shared/form-validators/custom-config-validators.ts7
+ src/app/shared/form-validators/custom-config-validators.ts7
+
Short description should not be longer than 250 characters.Short description should not be longer than 250 characters.
-
- src/app/shared/form-validators/custom-config-validators.ts14
+ src/app/shared/form-validators/custom-config-validators.ts14
+
Twitter username is required.Twitter username is required.
-
- src/app/shared/form-validators/custom-config-validators.ts21
+ src/app/shared/form-validators/custom-config-validators.ts21
+
Previews cache size is required.Previews cache size is required.
-
- src/app/shared/form-validators/custom-config-validators.ts28
+ src/app/shared/form-validators/custom-config-validators.ts28
+
Previews cache size must be greater than 1.Previews cache size must be greater than 1.
-
- src/app/shared/form-validators/custom-config-validators.ts29
+ src/app/shared/form-validators/custom-config-validators.ts29
+
Previews cache size must be a number.Previews cache size must be a number.
-
- src/app/shared/form-validators/custom-config-validators.ts30
+ src/app/shared/form-validators/custom-config-validators.ts30
+
Captions cache size is required.Captions cache size is required.
-
- src/app/shared/form-validators/custom-config-validators.ts37
+ src/app/shared/form-validators/custom-config-validators.ts37
+
Captions cache size must be greater than 1.Captions cache size must be greater than 1.
-
- src/app/shared/form-validators/custom-config-validators.ts38
+ src/app/shared/form-validators/custom-config-validators.ts38
+
Captions cache size must be a number.Captions cache size must be a number.
-
- src/app/shared/form-validators/custom-config-validators.ts39
+ src/app/shared/form-validators/custom-config-validators.ts39
+
Signup limit is required.Signup limit is required.
-
- src/app/shared/form-validators/custom-config-validators.ts46
+ src/app/shared/form-validators/custom-config-validators.ts46
+
Signup limit must be greater than 1.Signup limit must be greater than 1.
-
- src/app/shared/form-validators/custom-config-validators.ts47
+ src/app/shared/form-validators/custom-config-validators.ts47
+
Signup limit must be a number.Signup limit must be a number.
-
- src/app/shared/form-validators/custom-config-validators.ts48
+ src/app/shared/form-validators/custom-config-validators.ts48
+
Admin email is required.Admin email is required.
-
- src/app/shared/form-validators/custom-config-validators.ts55
+ src/app/shared/form-validators/custom-config-validators.ts55
+
Admin email must be valid.Admin email must be valid.
-
- src/app/shared/form-validators/custom-config-validators.ts56
+ src/app/shared/form-validators/custom-config-validators.ts56
+
Transcoding threads is required.Transcoding threads is required.
-
- src/app/shared/form-validators/custom-config-validators.ts63
+ src/app/shared/form-validators/custom-config-validators.ts63
+
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.ts64
+ src/app/shared/form-validators/custom-config-validators.ts64
+
Index URL should be a URLIndex URL should be a URL
-
- src/app/shared/form-validators/custom-config-validators.ts71
+ src/app/shared/form-validators/custom-config-validators.ts71
+
Search index URL should be a URLSearch index URL should be a URL
-
- src/app/shared/form-validators/custom-config-validators.ts78
+ src/app/shared/form-validators/custom-config-validators.ts78
+
Email is required.
- Email is required.
-
- src/app/shared/form-validators/user-validators.ts37src/app/shared/form-validators/instance-validators.ts7
+ E-posta gerekli.
+ src/app/shared/form-validators/user-validators.ts37
+ src/app/shared/form-validators/instance-validators.ts7
+
Email must be valid.Email must be valid.
-
- src/app/shared/form-validators/user-validators.ts38src/app/shared/form-validators/instance-validators.ts8
- Handle is required.Handle is required.
+ src/app/shared/form-validators/user-validators.ts38
+ src/app/shared/form-validators/instance-validators.ts8
+
+
+ Handle is required.
+ Handle is required.src/app/shared/form-validators/user-validators.ts48
-
- Handle must be valid (chocobozzz@example.com).Handle must be valid (chocobozzz@example.com).
+
+
+ Handle must be valid (chocobozzz@example.com).
+ Handle must be valid (chocobozzz@example.com).src/app/shared/form-validators/user-validators.ts49
@@ -7572,291 +8342,305 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Your name is required.Your name is required.
-
- src/app/shared/form-validators/instance-validators.ts19
+ src/app/shared/form-validators/instance-validators.ts19
+ Your name must be at least 1 character long.Your name must be at least 1 character long.
-
- src/app/shared/form-validators/instance-validators.ts20
+ src/app/shared/form-validators/instance-validators.ts20
+
Your name cannot be more than 120 characters long.Your name cannot be more than 120 characters long.
-
- src/app/shared/form-validators/instance-validators.ts21
+ src/app/shared/form-validators/instance-validators.ts21
+
A subject is required.A subject is required.
-
- src/app/shared/form-validators/instance-validators.ts32
+ src/app/shared/form-validators/instance-validators.ts32
+
The subject must be at least 1 character long.The subject must be at least 1 character long.
-
- src/app/shared/form-validators/instance-validators.ts33
+ src/app/shared/form-validators/instance-validators.ts33
+
The subject cannot be more than 120 characters long.The subject cannot be more than 120 characters long.
-
- src/app/shared/form-validators/instance-validators.ts34
+ src/app/shared/form-validators/instance-validators.ts34
+
A message is required.A message is required.
-
- src/app/shared/form-validators/instance-validators.ts45
+ src/app/shared/form-validators/instance-validators.ts45
+
The message must be at least 3 characters long.The message must be at least 3 characters long.
-
- src/app/shared/form-validators/instance-validators.ts46
+ src/app/shared/form-validators/instance-validators.ts46
+
The message cannot be more than 5000 characters long.The message cannot be more than 5000 characters long.
-
- src/app/shared/form-validators/instance-validators.ts47
+ src/app/shared/form-validators/instance-validators.ts47
+
Username is required.
- Username is required.
-
- src/app/shared/form-validators/user-validators.ts12src/app/shared/form-validators/login-validators.ts9
+ Kullanıcı adı gerekli.
+ src/app/shared/form-validators/user-validators.ts12
+ src/app/shared/form-validators/login-validators.ts9
+
Password is required.
- Password is required.
-
- src/app/shared/form-validators/user-validators.ts58src/app/shared/form-validators/user-validators.ts69src/app/shared/form-validators/login-validators.ts18
+ Şifre gerekli.
+ src/app/shared/form-validators/user-validators.ts58
+ src/app/shared/form-validators/user-validators.ts69
+ src/app/shared/form-validators/login-validators.ts18
+
Confirmation of the password is required.Confirmation of the password is required.
-
- src/app/shared/form-validators/reset-password-validators.ts9
+ src/app/shared/form-validators/reset-password-validators.ts9
+
Username must be at least 1 character long.Username must be at least 1 character long.
-
- src/app/shared/form-validators/user-validators.ts13
+ src/app/shared/form-validators/user-validators.ts13
+
Username cannot be more than 50 characters long.Username cannot be more than 50 characters long.
-
- src/app/shared/form-validators/user-validators.ts14
+ src/app/shared/form-validators/user-validators.ts14
+
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.ts15
+ src/app/shared/form-validators/user-validators.ts15
+
Channel name is required.Channel name is required.
-
- src/app/shared/form-validators/user-validators.ts27
+ src/app/shared/form-validators/user-validators.ts27
+
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.ts28
+ src/app/shared/form-validators/user-validators.ts28
+
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.ts29
- 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.ts30
-
+ src/app/shared/form-validators/user-validators.ts29
+
+
+ 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.ts30
+ Password must be at least 6 characters long.Password must be at least 6 characters long.
-
- src/app/shared/form-validators/user-validators.ts70src/app/shared/form-validators/user-validators.ts81
+ src/app/shared/form-validators/user-validators.ts70
+ src/app/shared/form-validators/user-validators.ts81
+
Password cannot be more than 255 characters long.Password cannot be more than 255 characters long.
-
- src/app/shared/form-validators/user-validators.ts71src/app/shared/form-validators/user-validators.ts82
+ src/app/shared/form-validators/user-validators.ts71
+ src/app/shared/form-validators/user-validators.ts82
+
The new password and the confirmed password do not correspond.The new password and the confirmed password do not correspond.
-
- src/app/shared/form-validators/user-validators.ts89
+ src/app/shared/form-validators/user-validators.ts89
+
Video quota is required.Video kotası gereklidir.
-
- src/app/shared/form-validators/user-validators.ts96
+ src/app/shared/form-validators/user-validators.ts96
+
Quota must be greater than -1.Quota must be greater than -1.
-
- src/app/shared/form-validators/user-validators.ts97
+ src/app/shared/form-validators/user-validators.ts97
+
Daily upload limit is required.Daily upload limit is required.
-
- src/app/shared/form-validators/user-validators.ts103
+ src/app/shared/form-validators/user-validators.ts103
+
Daily upload limit must be greater than -1.Daily upload limit must be greater than -1.
-
- src/app/shared/form-validators/user-validators.ts104
+ src/app/shared/form-validators/user-validators.ts104
+
User role is required.User role is required.
-
- src/app/shared/form-validators/user-validators.ts111
+ src/app/shared/form-validators/user-validators.ts111
+
Description must be at least 3 characters long.Description must be at least 3 characters long.
-
- src/app/shared/form-validators/user-validators.ts123src/app/shared/form-validators/video-channel-validators.ts38src/app/shared/form-validators/video-playlist-validators.ts33
+ src/app/shared/form-validators/user-validators.ts123
+ 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.ts124src/app/shared/form-validators/video-channel-validators.ts39src/app/shared/form-validators/video-playlist-validators.ts34
+ src/app/shared/form-validators/user-validators.ts124
+ 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.ts131
+ src/app/shared/form-validators/user-validators.ts131
+
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.ts141
+ src/app/shared/form-validators/user-validators.ts141
+
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.ts142
+ src/app/shared/form-validators/user-validators.ts142
+
Display name is required.Display name is required.
-
- src/app/shared/form-validators/user-validators.ts153src/app/shared/form-validators/video-channel-validators.ts26src/app/shared/form-validators/video-playlist-validators.ts12
+ src/app/shared/form-validators/user-validators.ts153
+ 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.ts154src/app/shared/form-validators/video-channel-validators.ts27src/app/shared/form-validators/video-playlist-validators.ts13
+ src/app/shared/form-validators/user-validators.ts154
+ 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.ts155src/app/shared/form-validators/video-channel-validators.ts28
+ src/app/shared/form-validators/user-validators.ts155
+ src/app/shared/form-validators/video-channel-validators.ts28
+
Report reason is required.Report reason is required.
-
- src/app/shared/form-validators/abuse-validators.ts7
+ src/app/shared/form-validators/abuse-validators.ts7
+
Report reason must be at least 2 characters long.Report reason must be at least 2 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts8
+ src/app/shared/form-validators/abuse-validators.ts8
+
Report reason cannot be more than 3000 characters long.Report reason cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts9
+ src/app/shared/form-validators/abuse-validators.ts9
+
Moderation comment is required.Moderation comment is required.
-
- src/app/shared/form-validators/abuse-validators.ts16
+ src/app/shared/form-validators/abuse-validators.ts16
+
Moderation comment must be at least 2 characters long.Moderation comment must be at least 2 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts17
+ src/app/shared/form-validators/abuse-validators.ts17
+
Moderation comment cannot be more than 3000 characters long.Moderation comment cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts18
+ src/app/shared/form-validators/abuse-validators.ts18
+
Abuse message is required.Abuse message is required.
-
- src/app/shared/form-validators/abuse-validators.ts25
+ src/app/shared/form-validators/abuse-validators.ts25
+
Abuse message must be at least 2 characters long.Abuse message must be at least 2 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts26
+ src/app/shared/form-validators/abuse-validators.ts26
+
Abuse message cannot be more than 3000 characters long.Abuse message cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/abuse-validators.ts27
+ src/app/shared/form-validators/abuse-validators.ts27
+
The channel is required.The channel is required.
-
- src/app/shared/form-validators/video-ownership-change-validators.ts7
+ src/app/shared/form-validators/video-ownership-change-validators.ts7
+
Block reason must be at least 2 characters long.Block reason must be at least 2 characters long.
-
- src/app/shared/form-validators/video-block-validators.ts7
+ src/app/shared/form-validators/video-block-validators.ts7
+
Block reason cannot be more than 300 characters long.Block reason cannot be more than 300 characters long.
-
- src/app/shared/form-validators/video-block-validators.ts8
+ src/app/shared/form-validators/video-block-validators.ts8
+
Video caption language is required.Video caption language is required.
-
- src/app/shared/form-validators/video-captions-validators.ts7
+ src/app/shared/form-validators/video-captions-validators.ts7
+
Video caption file is required.Video caption file is required.
-
- src/app/shared/form-validators/video-captions-validators.ts14
+ src/app/shared/form-validators/video-captions-validators.ts14
+
The username is required.
- The username is required.
-
- src/app/shared/form-validators/video-ownership-change-validators.ts14
+ Kullanıcı adı gerekli.
+ src/app/shared/form-validators/video-ownership-change-validators.ts14
+
You can only transfer ownership to a local accountYou can only transfer ownership to a local account
-
- src/app/shared/form-validators/video-ownership-change-validators.ts15
+ src/app/shared/form-validators/video-ownership-change-validators.ts15
+
Name is required.
- Name is required.
-
- src/app/shared/form-validators/video-channel-validators.ts12
+ Ad gerekli.
+ src/app/shared/form-validators/video-channel-validators.ts12
+
Name must be at least 1 character long.Name must be at least 1 character long.
-
- src/app/shared/form-validators/video-channel-validators.ts13
+ src/app/shared/form-validators/video-channel-validators.ts13
+
Name cannot be more than 50 characters long.Name cannot be more than 50 characters long.
-
- src/app/shared/form-validators/video-channel-validators.ts14
+ src/app/shared/form-validators/video-channel-validators.ts14
+
Name should be lowercase alphanumeric; dots and underscores are allowed.Name should be lowercase alphanumeric; dots and underscores are allowed.
-
- src/app/shared/form-validators/video-channel-validators.ts15
+ src/app/shared/form-validators/video-channel-validators.ts15
+
Support text must be at least 3 characters long.Support text must be at least 3 characters long.
-
- src/app/shared/form-validators/video-channel-validators.ts49
+ src/app/shared/form-validators/video-channel-validators.ts49
+
Support text cannot be more than 1000 characters longSupport 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.
+ 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.
src/app/shared/shared-video-live/live-documentation-link.component.html
@@ -7866,53 +8650,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Comment is required.Comment is required.
-
- src/app/shared/form-validators/video-comment-validators.ts7
+ src/app/shared/form-validators/video-comment-validators.ts7
+ Comment must be at least 2 characters long.Comment must be at least 2 characters long.
-
- src/app/shared/form-validators/video-comment-validators.ts8
+ src/app/shared/form-validators/video-comment-validators.ts8
+
Comment cannot be more than 3000 characters long.Comment cannot be more than 3000 characters long.
-
- src/app/shared/form-validators/video-comment-validators.ts9
-
+ src/app/shared/form-validators/video-comment-validators.ts9
+
Display name cannot be more than 120 characters long.Display name cannot be more than 120 characters long.
-
- src/app/shared/form-validators/video-playlist-validators.ts14
+ src/app/shared/form-validators/video-playlist-validators.ts14
+
Privacy is required.Privacy is required.
-
- src/app/shared/form-validators/video-playlist-validators.ts23
+ src/app/shared/form-validators/video-playlist-validators.ts23
+
The channel is required when the playlist is public.The channel is required when the playlist is public.
-
- src/app/shared/form-validators/video-playlist-validators.ts41
- Live informationLive information
-
- src/app/shared/shared-video-live/live-stream-information.component.html3
- Live RTMP UrlLive RTMP Url
-
- src/app/shared/shared-video-live/live-stream-information.component.html19src/app/+videos/+video-edit/shared/video-edit.component.html218
- Live stream keyLive stream key
-
- src/app/shared/shared-video-live/live-stream-information.component.html24src/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
- Permanent livePermanent live
+ src/app/shared/form-validators/video-playlist-validators.ts41
+
+
+ Live information
+ Live information
+ src/app/shared/shared-video-live/live-stream-information.component.html3
+
+
+ Live RTMP Url
+ Live RTMP Url
+ 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.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.html27
+ src/app/+videos/+video-edit/shared/video-edit.component.html226
+
+
+ Permanent live
+ Permanent livesrc/app/shared/shared-video-live/live-stream-information.component.html10
-
- Replay will be savedReplay will be saved
+
+
+ Replay will be saved
+ Replay will be savedsrc/app/shared/shared-video-live/live-stream-information.component.html11
@@ -7921,500 +8719,503 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Video name is required.Video name is required.
-
- src/app/shared/form-validators/video-validators.ts7
+ src/app/shared/form-validators/video-validators.ts7
+ Video name must be at least 3 characters long.Video name must be at least 3 characters long.
-
- src/app/shared/form-validators/video-validators.ts8
+ src/app/shared/form-validators/video-validators.ts8
+
Video name cannot be more than 120 characters long.Video name cannot be more than 120 characters long.
-
- src/app/shared/form-validators/video-validators.ts9
+ src/app/shared/form-validators/video-validators.ts9
+
Video privacy is required.Video privacy is required.
-
- src/app/shared/form-validators/video-validators.ts16
+ src/app/shared/form-validators/video-validators.ts16
+
Video channel is required.Video channel is required.
-
- src/app/shared/form-validators/video-validators.ts43
+ src/app/shared/form-validators/video-validators.ts43
+
Video description must be at least 3 characters long.Video description must be at least 3 characters long.
-
- src/app/shared/form-validators/video-validators.ts50
+ src/app/shared/form-validators/video-validators.ts50
+
Video description cannot be more than 10000 characters long.Video description cannot be more than 10000 characters long.
-
- src/app/shared/form-validators/video-validators.ts51
+ src/app/shared/form-validators/video-validators.ts51
+
A tag should be more than 2 characters long.A tag should be more than 2 characters long.
-
- src/app/shared/form-validators/video-validators.ts58
+ src/app/shared/form-validators/video-validators.ts58
+
A tag should be less than 30 characters long.A tag should be less than 30 characters long.
-
- src/app/shared/form-validators/video-validators.ts59
+ src/app/shared/form-validators/video-validators.ts59
+
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.ts66
- 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.ts66
+
+
+ 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.ts67
-
Video support must be at least 3 characters long.Video support must be at least 3 characters long.
-
- src/app/shared/form-validators/video-validators.ts74
+ src/app/shared/form-validators/video-validators.ts74
+
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.ts75
+ src/app/shared/form-validators/video-validators.ts75
+
A date is required to schedule video update.A date is required to schedule video update.
-
- src/app/shared/form-validators/video-validators.ts82
+ src/app/shared/form-validators/video-validators.ts82
+
This file is too large.This file is too large.
-
- src/app/shared/shared-forms/reactive-file.component.ts50
+ src/app/shared/shared-forms/reactive-file.component.ts50
+
PeerTube cannot handle this kind of file. Accepted extensions are }.PeerTube cannot handle this kind of file. Accepted extensions are }.
-
- src/app/shared/shared-forms/reactive-file.component.ts56
+ src/app/shared/shared-forms/reactive-file.component.ts56
+
Add a new optionAdd a new option
-
- src/app/shared/shared-forms/select/select-checkbox.component.ts28
+ src/app/shared/shared-forms/select/select-checkbox.component.ts28
+
All unsaved data will be lost, are you sure you want to leave this page?All unsaved data will be lost, are you sure you want to leave this page?
-
- src/app/core/routing/can-deactivate-guard.service.ts19
+ src/app/core/routing/can-deactivate-guard.service.ts19
+
Sunday
- Sunday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11
+ Pazar
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts11
+
Monday
- Monday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12
+ Pazartesi
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts12
+
Tuesday
- Tuesday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13
+ Salı
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts13
+
Wednesday
- Wednesday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14
+ Çarşamba
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts14
+
Thursday
- Thursday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15
+ Perşembe
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts15
+
Friday
- Friday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16
+ Cuma
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts16
+
Saturday
- Saturday
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts17
+ Cumartesi
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts17
+
Sun
- Sun
+ PazDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts21
+
Mon
- Mon
+ PztDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts22
+
Tue
- Tue
+ SalDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts23
+
Wed
- Wed
+ ÇarDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts24
+
Thu
- Thu
+ PerDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts25
+
Fri
- Fri
+ CumDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts26
+
Sat
- Sat
+ CmtDay name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts27
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts27
+
SuSuDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts31
+
MoMoDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts32
+
TuTuDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts33
+
WeWeDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts34
+
ThThDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts35
+
FrFrDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts36
+
SaSaDay name min
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts37
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts37
+
January
- January
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41
+ Ocak
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts41
+
February
- February
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42
+ Şubat
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts42
+
March
- March
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43
+ Mart
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts43
+
April
- April
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44
+ Nisan
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts44
+
May
- May
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60
+ Mayıs
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts45
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts60
+
June
- June
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46
+ Haziran
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts46
+
July
- July
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47
+ Temmuz
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts47
+
August
- August
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48
+ Ağustos
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts48
+
September
- September
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49
+ Eylül
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts49
+
October
- October
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50
+ Ekim
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts50
+
November
- November
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51
+ Kasım
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts51
+
December
- December
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts52
+ Aralık
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts52
+
Jan
- Jan
+ OcaMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts56
+
Feb
- Feb
+ ŞubMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts57
+
Mar
- Mar
+ MarMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts58
+
Apr
- Apr
+ NisMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts59
+
Jun
- Jun
+ HazMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts61
+
Jul
- Jul
+ TemMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts62
+
Aug
- Aug
+ AğuMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts63
+
Sep
- Sep
+ EylMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts64
+
Oct
- Oct
+ EkiMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts65
+
Nov
- Nov
+ KasMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts66
+
Dec
- Dec
+ AraMonth name short
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts67
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts67
+
ClearClear
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts72
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts72
+
yy-mm-dd
- yy-mm-dd
+ yy-aa-ggDate format in this locale.
-
- src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts88
+ src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts88
+
Instance languagesInstance languages
-
- src/app/+videos/+video-edit/shared/video-edit.component.ts185
+ src/app/+videos/+video-edit/shared/video-edit.component.ts185
+
All languages
- All languages
-
- src/app/shared/shared-user-settings/user-video-settings.component.ts38src/app/+videos/+video-edit/shared/video-edit.component.ts186
+ Bütün diller
+ src/app/shared/shared-user-settings/user-video-settings.component.ts38
+ src/app/+videos/+video-edit/shared/video-edit.component.ts186
+
HiddenHidden
-
- src/app/shared/shared-instance/instance-features-table.component.ts50
+ src/app/shared/shared-instance/instance-features-table.component.ts50
+
Blurred with confirmation requestBlurred with confirmation request
-
- src/app/shared/shared-instance/instance-features-table.component.ts51
+ src/app/shared/shared-instance/instance-features-table.component.ts51
+
DisplayedDisplayed
-
- src/app/shared/shared-instance/instance-features-table.component.ts52
+ src/app/shared/shared-instance/instance-features-table.component.ts52
+
~ 1 minute~ 1 minute
-
- src/app/shared/shared-instance/instance-features-table.component.ts67
+ src/app/shared/shared-instance/instance-features-table.component.ts67
+
~ minutes~ minutes
-
- src/app/shared/shared-instance/instance-features-table.component.ts69
+ src/app/shared/shared-instance/instance-features-table.component.ts69
+
of full HD videos of full HD videos
-
- src/app/shared/shared-instance/instance-features-table.component.ts85
+ src/app/shared/shared-instance/instance-features-table.component.ts85
+
of HD videos of HD videos
-
- src/app/shared/shared-instance/instance-features-table.component.ts86
+ src/app/shared/shared-instance/instance-features-table.component.ts86
+
of average quality videos of average quality videos
-
- src/app/shared/shared-instance/instance-features-table.component.ts87
+ src/app/shared/shared-instance/instance-features-table.component.ts87
+
(channel page) (channel page)
-
- src/app/shared/shared-main/account/video-avatar-channel.component.ts20src/app/shared/shared-video-miniature/video-miniature.component.ts117
+ src/app/shared/shared-main/account/video-avatar-channel.component.ts20
+ src/app/shared/shared-video-miniature/video-miniature.component.ts117
+
(account page) (account page)
-
- src/app/shared/shared-main/account/video-avatar-channel.component.ts21
+ src/app/shared/shared-main/account/video-avatar-channel.component.ts21
+
EmphasisEmphasis
-
- src/app/shared/shared-main/misc/help.component.ts81
+ src/app/shared/shared-main/misc/help.component.ts81
+
Links
- Links
-
- src/app/shared/shared-main/misc/help.component.ts82
+ Bağlantılar
+ src/app/shared/shared-main/misc/help.component.ts82
+
New linesNew lines
-
- src/app/shared/shared-main/misc/help.component.ts83
+ src/app/shared/shared-main/misc/help.component.ts83
+
ListsLists
-
- src/app/shared/shared-main/misc/help.component.ts84
+ src/app/shared/shared-main/misc/help.component.ts84
+
Images
- Images
-
- src/app/shared/shared-main/misc/help.component.ts85
+ Resimler
+ src/app/shared/shared-main/misc/help.component.ts85
+
users banned.
-
- users banned.
-
-
- src/app/shared/shared-moderation/user-ban-modal.component.ts53
+ kullanıcı yasaklı.
+ src/app/shared/shared-moderation/user-ban-modal.component.ts53
+
User banned.User
banned.
-
- src/app/shared/shared-moderation/user-ban-modal.component.ts54
+ src/app/shared/shared-moderation/user-ban-modal.component.ts54
+
Do you really want to unban ?Do you really want to unban
?
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts70
+
User unbanned.User
unbanned.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts76
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts76
+
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.ts90
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts90
+
User deleted.User
deleted.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts96
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts96
+
User email set as verifiedUser
email set as verified
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts107
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts107
+
Account muted.Account
muted.
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240src/app/shared/shared-moderation/user-moderation-dropdown.component.ts119
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts240
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts119
+
Instance muted. Instance
@@ -8430,317 +9231,329 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Account
muted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts175src/app/shared/shared-abuse-list/abuse-list-table.component.ts429
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts175
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts429
+
Mute serverMute server
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts317
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts317
+
Server muted by the instance.Server
muted by the instance.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts441
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts441
+
Add a message to communicate with the reporterAdd a message to communicate with the reporter
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.ts100
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.ts100
+
Add a message to communicate with the moderation teamAdd a message to communicate with the moderation team
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.ts103
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.ts103
+
Account unmuted by the instance.Account
unmuted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts189
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts189
+
Instance muted by the instance.Instance
muted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts203
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts203
+
Instance unmuted by the instance.Instance
unmuted by the instance.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts217
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts217
+
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.ts228
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts228
+
Delete account commentsDelete account comments
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts229
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts229
+
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.ts235
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts235
+
Edit userEdit user
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts263
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts263
+
Change quota, role, and more.Change quota, role, and more.
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts264
+
Delete userDelete user
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts268
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts268
+
Unban userUnban user
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts279
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts279
+
Allow the user to login and create videos/comments againAllow the user to login and create videos/comments again
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts280
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts280
+
Mute this accountMute this account
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts297
- 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.ts298
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts297
+
+
+ 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.ts298
+ Unmute this accountUnmute this account
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts303
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts303
+
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.ts304
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts304
+
Mute the instanceMute the instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts309
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts309
+
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.ts310
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts310
+
Unmute the instanceUnmute the instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts315
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts315
+
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.ts316
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts316
+
Remove comments from your videosRemove comments from your videos
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts321
- 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.ts322
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts321
+
+
+ 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.ts322
+ Mute this account by your instanceMute this account by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts333
- 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.ts334
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts333
+
+
+ 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.ts334
+ Unmute this account by your instanceUnmute this account by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339
- 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.ts340
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts339
+
+
+ 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.ts340
+ Mute the instance by your instanceMute the instance by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351
- 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.ts352
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts351
+
+
+ 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.ts352
+ Unmute the instance by your instanceUnmute the instance by your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts357
+
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.ts358
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts358
+
Remove comments from your instanceRemove comments from your instance
-
- src/app/shared/shared-moderation/user-moderation-dropdown.component.ts368
- 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.ts369
-
+ src/app/shared/shared-moderation/user-moderation-dropdown.component.ts368
+
+
+ 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.ts369
+ Violent or repulsiveViolent or repulsive
-
- src/app/shared/shared-moderation/abuse.service.ts139
+ src/app/shared/shared-moderation/abuse.service.ts139
+
Contains offensive, violent, or coarse language or iconography.Contains offensive, violent, or coarse language or iconography.
-
- src/app/shared/shared-moderation/abuse.service.ts140
+ src/app/shared/shared-moderation/abuse.service.ts140
+
Hateful or abusiveHateful or abusive
-
- src/app/shared/shared-moderation/abuse.service.ts144
+ src/app/shared/shared-moderation/abuse.service.ts144
+
Contains abusive, racist or sexist language or iconography.Contains abusive, racist or sexist language or iconography.
-
- src/app/shared/shared-moderation/abuse.service.ts145
+ src/app/shared/shared-moderation/abuse.service.ts145
+
Spam, ad or false newsSpam, ad or false news
-
- src/app/shared/shared-moderation/abuse.service.ts149
+ src/app/shared/shared-moderation/abuse.service.ts149
+
Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.
-
- src/app/shared/shared-moderation/abuse.service.ts150
+ src/app/shared/shared-moderation/abuse.service.ts150
+
Privacy breach or doxxingPrivacy breach or doxxing
-
- src/app/shared/shared-moderation/abuse.service.ts154
+ src/app/shared/shared-moderation/abuse.service.ts154
+
Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).
-
- src/app/shared/shared-moderation/abuse.service.ts155
+ src/app/shared/shared-moderation/abuse.service.ts155
+
Infringes your copyright wrt. the regional laws with which the server must comply.Infringes your copyright wrt. the regional laws with which the server must comply.
-
- src/app/shared/shared-moderation/abuse.service.ts160
+ src/app/shared/shared-moderation/abuse.service.ts160
+
Breaks server rulesBreaks server rules
-
- src/app/shared/shared-moderation/abuse.service.ts164
+ src/app/shared/shared-moderation/abuse.service.ts164
+
Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.
-
- src/app/shared/shared-moderation/abuse.service.ts165
+ src/app/shared/shared-moderation/abuse.service.ts165
+
The above can only be seen in thumbnails.The above can only be seen in thumbnails.
-
- src/app/shared/shared-moderation/abuse.service.ts174
+ src/app/shared/shared-moderation/abuse.service.ts174
+
CaptionsCaptions
-
- src/app/shared/shared-moderation/abuse.service.ts178src/app/shared/shared-abuse-list/abuse-details.component.ts28
+ src/app/shared/shared-moderation/abuse.service.ts178
+ src/app/shared/shared-abuse-list/abuse-details.component.ts28
+
The above can only be seen in captions (please describe which).The above can only be seen in captions (please describe which).
-
- src/app/shared/shared-moderation/abuse.service.ts179
+ src/app/shared/shared-moderation/abuse.service.ts179
+
Too many attempts, please try again after minutes.Too many attempts, please try again after
minutes.
-
- src/app/core/rest/rest-extractor.service.ts67
+ src/app/core/rest/rest-extractor.service.ts67
+
Too many attempts, please try again later.Too many attempts, please try again later.
-
- src/app/core/rest/rest-extractor.service.ts69
+ src/app/core/rest/rest-extractor.service.ts69
+
Server error. Please retry later.Server error. Please retry later.
-
- 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
. You will be notified of all their new videos.
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts109
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts109
+
Subscribed to . You will be notified of all their new videos.Subscribed to
. You will be notified of all their new videos.
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts110
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts110
+
SubscribedAbone olundu
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts112
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts112
+
Unsubscribed from all channels of Unsubscribed from all channels of
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts139
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts139
+
Unsubscribed from Unsubscribed from
-
- src/app/shared/shared-user-subscription/subscribe-button.component.ts140
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts140
+
UnsubscribedUnsubscribed
-
- 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
+ src/app/shared/shared-user-subscription/subscribe-button.component.ts142
+
+
+ Multiple ways to subscribe to the current channel
+ Multiple ways to subscribe to the current channelsrc/app/shared/shared-user-subscription/subscribe-button.component.html44
-
- Open subscription dropdownOpen subscription dropdown
+
+
+ Open subscription dropdown
+ Open subscription dropdownsrc/app/shared/shared-user-subscription/subscribe-button.component.html46
@@ -8748,194 +9561,216 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Moderator
- Moderator
-
- src/app/core/users/user.service.ts394
+ Moderatör
+ src/app/core/users/user.service.ts394
+
Video removed from Video removed from
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts98src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts98
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts307
+
Video added in at timestamps Video added in
at timestamps
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts377
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts377
+
Video added in Video added in
-
- src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts378
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts378
+
Timestamps updatedTimestamps updated
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts117src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts117
+ src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts273
+
Starts atStarts at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts140src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts140
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
+
Stops atStops at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts141
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts141
+
and stops at and stops at
-
- src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
+ src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts143
+
Delete video
- Delete video
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts366
+ Videoyu sil
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts366
+
Actions for the commentActions for the comment
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts395
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts395
+
Delete commentDelete comment
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts401
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts401
+
Do you really want to delete this comment?Do you really want to delete this comment?
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts405src/app/+videos/+video-watch/comment/video-comments.component.ts168
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts405
+ src/app/+videos/+video-watch/comment/video-comments.component.ts168
+
Comment deleted.Comment deleted.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts413
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts413
+
EncoderEncoder
-
- src/app/shared/shared-video-miniature/video-download.component.ts145
+ src/app/shared/shared-video-miniature/video-download.component.ts145
+
Format nameFormat name
-
- src/app/shared/shared-video-miniature/video-download.component.ts146
+ src/app/shared/shared-video-miniature/video-download.component.ts146
+
Size
- Size
-
- src/app/shared/shared-video-miniature/video-download.component.ts147
+ Boyut
+ src/app/shared/shared-video-miniature/video-download.component.ts147
+
BitrateBitrate
-
- src/app/shared/shared-video-miniature/video-download.component.ts149src/app/shared/shared-video-miniature/video-download.component.ts172
+ src/app/shared/shared-video-miniature/video-download.component.ts149
+ src/app/shared/shared-video-miniature/video-download.component.ts172
+
CodecCodec
-
- src/app/shared/shared-video-miniature/video-download.component.ts169
+ src/app/shared/shared-video-miniature/video-download.component.ts169
+
CopiedCopied
-
- src/app/shared/shared-forms/input-toggle-hidden.component.ts47src/app/shared/shared-video-miniature/video-download.component.ts136
- CopyCopy
-
-
- 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.ts47
+ src/app/shared/shared-video-miniature/video-download.component.ts136
+
+
+ Copy
+ Copy
+ src/app/shared/shared-forms/input-toggle-hidden.component.html15
+ src/app/shared/shared-forms/input-toggle-hidden.component.html15
+ Video reported.Video reported.
-
- src/app/shared/shared-moderation/report-modals/video-report.component.ts110
+ src/app/shared/shared-moderation/report-modals/video-report.component.ts110
+
Do you really want to delete this video?Do you really want to delete this video?
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203src/app/shared/shared-abuse-list/abuse-list-table.component.ts370src/app/+admin/moderation/video-block-list/video-block-list.component.ts78
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts203
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts370
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts78
+
Video deleted.
- Video deleted.
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts378src/app/+admin/moderation/video-block-list/video-block-list.component.ts86
-
-
+ Video silindi.
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts378
+ src/app/+admin/moderation/video-block-list/video-block-list.component.ts86
+
Actions for the reporterActions for the reporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts305
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts305
+
Mute reporterMute reporter
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts311
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts311
+
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
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts226
+
Download
- Download
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272
- Display live informationDisplay live information
-
- src/app/+my-library/my-videos/my-videos.component.ts161src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278
+ İndir
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts272
+
+
+ Display live information
+ Display live information
+ src/app/+my-library/my-videos/my-videos.component.ts161
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts278
+ UpdateUpdate
-
- src/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.ts284src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts146
+ 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
+ src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts146
+
BlockBlock
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts290
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts290
+
Save to playlistSave to playlist
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264src/app/+videos/+video-watch/video-watch.component.ts135
- 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/video-watch.component.ts220
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts264
+ src/app/+videos/+video-watch/video-watch.component.ts135
+
+
+ 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/video-watch.component.ts220
+ MirrorMirror
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts302
+
ReportReport
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts314
+
RemoveRemove
-
- src/app/+videos/+video-watch/comment/video-comment.component.ts181
+ src/app/+videos/+video-watch/comment/video-comment.component.ts181
+
Remove & re-draftRemove & re-draft
-
- src/app/+videos/+video-watch/comment/video-comment.component.ts189
+ src/app/+videos/+video-watch/comment/video-comment.component.ts189
+
Mute accountMute account
-
- src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322src/app/shared/shared-abuse-list/abuse-list-table.component.ts287
- Open video actionsOpen video actions
+ src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts322
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts287
+
+
+ Open video actions
+ Open video actionssrc/app/shared/shared-video-miniature/video-actions-dropdown.component.html4
@@ -8948,120 +9783,126 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Mute server accountMute server account
-
- src/app/shared/shared-abuse-list/abuse-list-table.component.ts293
+ src/app/shared/shared-abuse-list/abuse-list-table.component.ts293
+ ReportReport
-
- src/app/shared/shared-abuse-list/abuse-details.component.html65
+ src/app/shared/shared-abuse-list/abuse-details.component.html65
+
Reported partReported part
-
- src/app/shared/shared-abuse-list/abuse-details.component.html83
+ src/app/shared/shared-abuse-list/abuse-details.component.html83
+
NoteNote
-
- src/app/shared/shared-abuse-list/abuse-details.component.html90
+ src/app/shared/shared-abuse-list/abuse-details.component.html90
+
The video was deleted
- The video was deleted
-
- src/app/shared/shared-abuse-list/abuse-details.component.html99
+ Bu video silinmiş
+ src/app/shared/shared-abuse-list/abuse-details.component.html99
+
Comment:
- Comment:
-
- src/app/shared/shared-abuse-list/abuse-details.component.html105
+ Yorum:
+ src/app/shared/shared-abuse-list/abuse-details.component.html105
+
Messages with the reporterMessages with the reporter
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html4
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html4
+
Messages with the moderation teamMessages with the moderation team
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html5
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html5
+
No messages for now.
No messages for now.
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html28
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html28
+
Add a messageAdd a message
-
- src/app/shared/shared-abuse-list/abuse-message-modal.component.html44
+ src/app/shared/shared-abuse-list/abuse-message-modal.component.html44
+
PublishedPublished
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts162
+ src/app/shared/shared-video-miniature/video-miniature.component.ts162
+
Publication scheduled onPublication scheduled on
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts167
+ src/app/shared/shared-video-miniature/video-miniature.component.ts167
+
Waiting transcodingWaiting transcoding
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts171
+ src/app/shared/shared-video-miniature/video-miniature.component.ts171
+
To transcodeTo transcode
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts175
+ src/app/shared/shared-video-miniature/video-miniature.component.ts175
+
To importTo import
-
- src/app/shared/shared-video-miniature/video-miniature.component.ts179
+ src/app/shared/shared-video-miniature/video-miniature.component.ts179
+
Add to watch laterAdd to watch later
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.ts29
+ src/app/shared/shared-thumbnail/video-thumbnail.component.ts29
+
Remove from watch laterRemove from watch later
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.ts30
- LIVE ENDEDLIVE ENDED
-
- src/app/shared/shared-thumbnail/video-thumbnail.component.html32
+ src/app/shared/shared-thumbnail/video-thumbnail.component.ts30
+
+
+ LIVE ENDED
+ LIVE ENDED
+ src/app/shared/shared-thumbnail/video-thumbnail.component.html32
+ Only I can see this videoOnly I can see this video
-
- src/app/shared/shared-main/video/video.service.ts375
+ src/app/shared/shared-main/video/video.service.ts375
+
Only shareable via a private linkOnly shareable via a private link
-
- src/app/shared/shared-main/video/video.service.ts379
+ src/app/shared/shared-main/video/video.service.ts379
+
Anyone can see this video
- Anyone can see this video
-
- src/app/shared/shared-main/video/video.service.ts383
+ Herkes bu videoyu görebilir
+ src/app/shared/shared-main/video/video.service.ts383
+
Only users of this instance can see this videoOnly users of this instance can see this video
-
- src/app/shared/shared-main/video/video.service.ts387
- viewers viewers
+ src/app/shared/shared-main/video/video.service.ts387
+
+
+ viewers
+ viewerssrc/app/shared/shared-main/video/video.model.ts211
-
- views views
+
+
+ views
+ viewssrc/app/shared/shared-main/video/video.model.ts214
@@ -9070,11 +9911,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
CloseClose
-
- node_modules/@ng-bootstrap/src/alert/alert.ts55node_modules/@ng-bootstrap/src/alert/alert.ts70
- Slide of Slide of
+ node_modules/@ng-bootstrap/src/alert/alert.ts55
+ node_modules/@ng-bootstrap/src/alert/alert.ts70
+
+
+ Slide of
+ Slide of node_modules/@ng-bootstrap/src/carousel/carousel.ts114,118
@@ -9083,394 +9925,399 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
Previous
- Previous
-
- node_modules/@ng-bootstrap/src/carousel/carousel.ts132
+ Önceki
+ node_modules/@ng-bootstrap/src/carousel/carousel.ts132
+ Next
- Next
-
- node_modules/@ng-bootstrap/src/carousel/carousel.ts147
+ Sonraki
+ node_modules/@ng-bootstrap/src/carousel/carousel.ts147
+
Previous month
- Previous month
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts34
+ Geçen ay
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts24
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts34
+
Next month
- Next month
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts57
+ Gelecek ay
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts44
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts57
+
Select month
- Select month
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49
+ Ay seçin
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts44
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts49
+
Select year
- Select year
-
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts72
+ Yıl seçin
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts59
+ node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts72
+
««««
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts147
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts147
+
««
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts153
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts153
+
»»
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts158
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts158
+
»»»»
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts164
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts164
+
First
- First
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts168
+ İlk
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts168
+
Previous
- Previous
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts176
+ Önceki
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts176
+
Next
- Next
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts188
+ Sonraki
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts188
+
Last
- Last
-
- node_modules/@ng-bootstrap/src/pagination/pagination.ts195
+ Son
+ node_modules/@ng-bootstrap/src/pagination/pagination.ts195
+
-
-
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts31
+
+ node_modules/@ng-bootstrap/src/progressbar/progressbar.ts31
+
HHHH
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts46
+
Hours
- Hours
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts50
+ Saat
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts50
+
MMMM
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts55
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts55
+
Minutes
- Minutes
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts62
+ Dakika
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts62
+
Increment hoursIncrement hours
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts68
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts68
+
Decrement hoursDecrement hours
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts73
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts73
+
Increment minutesIncrement minutes
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts80
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts80
+
Decrement minutesDecrement minutes
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts86
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts86
+
SSSS
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts91
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts91
+
Seconds
- Seconds
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts96
+ Saniye
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts96
+
Increment secondsIncrement seconds
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts103
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts103
+
Decrement secondsDecrement seconds
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts109
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts109
+
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts131
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts131
+
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts154
+ node_modules/@ng-bootstrap/src/timepicker/timepicker.ts154
+
CloseClose
-
- node_modules/@ng-bootstrap/src/toast/toast.ts78
+ node_modules/@ng-bootstrap/src/toast/toast.ts78
+
Video to import updated.Video to import updated.
-
- src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+ src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts130
+ src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts140
+
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.ts92
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts92
+
But associated data (tags, description...) will be lost, are you sure you want to leave this page?But associated data (tags, description...) will be lost, are you sure you want to leave this page?
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts93
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts93
+
Your video is not uploaded yet, are you sure you want to leave this page?Your video is not uploaded yet, are you sure you want to leave this page?
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts95
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts95
+
UploadUpload
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts115
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts115
+
Upload Upload
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts117
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts117
+
Upload cancelledUpload cancelled
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts143
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts143
+
Video published.Video published.
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts267
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts267
+
- Your video quota is exceeded with this video (
-video size: , used: , quota: )
+ 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.ts289
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts289
+
- 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: )Your daily video quota is exceeded with this video (
video size: , used: , quota: )
-
- src/app/+videos/+video-edit/video-add-components/video-upload.component.ts309
+ src/app/+videos/+video-edit/video-add-components/video-upload.component.ts309
+
You have unsaved changes! If you leave, your changes will be lost.You have unsaved changes! If you leave, your changes will be lost.
-
- src/app/+videos/+video-edit/video-update.component.ts94
+ src/app/+videos/+video-edit/video-update.component.ts94
+
Video updated.Video updated.
-
- src/app/+videos/+video-edit/video-update.component.ts142
+ src/app/+videos/+video-edit/video-update.component.ts142
+
Report commentReport comment
-
- src/app/shared/shared-moderation/report-modals/comment-report.component.ts51
+ src/app/shared/shared-moderation/report-modals/comment-report.component.ts51
+
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/comment/video-comments.component.ts171
+ src/app/+videos/+video-watch/comment/video-comments.component.ts171
+
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/comment/video-comments.component.ts173
+ src/app/+videos/+video-watch/comment/video-comments.component.ts173
+
Delete and re-draftDelete and re-draft
-
- src/app/+videos/+video-watch/comment/video-comments.component.ts199
+ src/app/+videos/+video-watch/comment/video-comments.component.ts199
+
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/comment/video-comments.component.ts199
+ src/app/+videos/+video-watch/comment/video-comments.component.ts199
+
Stop autoplaying next videoStop autoplaying next video
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts203
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts203
+
Autoplay next videoAutoplay next video
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts204
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts204
+
Stop looping playlist videosStop looping playlist videos
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts209
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts209
+
Loop playlist videosLoop playlist videos
-
- src/app/+videos/+video-watch/video-watch-playlist.component.ts210
-
+ src/app/+videos/+video-watch/video-watch-playlist.component.ts210
+
- 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.ts415
+ 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.ts415
+
RedirectionRedirection
-
- src/app/+videos/+video-watch/video-watch.component.ts416
+ src/app/+videos/+video-watch/video-watch.component.ts416
+
This video contains mature or explicit content. Are you sure you want to watch it?This video contains mature or explicit content. Are you sure you want to watch it?
-
- src/app/+videos/+video-watch/video-watch.component.ts547
+ src/app/+videos/+video-watch/video-watch.component.ts547
+
Mature or explicit contentMature or explicit content
-
- src/app/+videos/+video-watch/video-watch.component.ts548
+ src/app/+videos/+video-watch/video-watch.component.ts548
+
Up NextUp Next
-
- src/app/+videos/+video-watch/video-watch.component.ts600
+ src/app/+videos/+video-watch/video-watch.component.ts600
+
CancelCancel
-
- src/app/+videos/+video-watch/video-watch.component.ts601
+ src/app/+videos/+video-watch/video-watch.component.ts601
+
Autoplay is suspendedAutoplay is suspended
-
- src/app/+videos/+video-watch/video-watch.component.ts602
+ src/app/+videos/+video-watch/video-watch.component.ts602
+
Enter/exit fullscreen (requires player focus)Enter/exit fullscreen (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts920
+ src/app/+videos/+video-watch/video-watch.component.ts920
+
Play/Pause the video (requires player focus)Play/Pause the video (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts921
+ src/app/+videos/+video-watch/video-watch.component.ts921
+
Mute/unmute the video (requires player focus)Mute/unmute the video (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts922
+ src/app/+videos/+video-watch/video-watch.component.ts922
+
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.ts924
+ src/app/+videos/+video-watch/video-watch.component.ts924
+
Increase the volume (requires player focus)Increase the volume (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts926
+ src/app/+videos/+video-watch/video-watch.component.ts926
+
Decrease the volume (requires player focus)Decrease the volume (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts927
+ src/app/+videos/+video-watch/video-watch.component.ts927
+
Seek the video forward (requires player focus)Seek the video forward (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts929
+ src/app/+videos/+video-watch/video-watch.component.ts929
+
Seek the video backward (requires player focus)Seek the video backward (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts930
+ src/app/+videos/+video-watch/video-watch.component.ts930
+
Increase playback rate (requires player focus)Increase playback rate (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts932
+ src/app/+videos/+video-watch/video-watch.component.ts932
+
Decrease playback rate (requires player focus)Decrease playback rate (requires player focus)
-
- src/app/+videos/+video-watch/video-watch.component.ts933
+ src/app/+videos/+video-watch/video-watch.component.ts933
+
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.ts935
+ src/app/+videos/+video-watch/video-watch.component.ts935
+
Like the video
- Like the video
-
- src/app/+videos/+video-watch/video-watch.component.ts943
+ Videoyu beğen
+ src/app/+videos/+video-watch/video-watch.component.ts943
+
Dislike the videoDislike the video
-
- src/app/+videos/+video-watch/video-watch.component.ts948
+ src/app/+videos/+video-watch/video-watch.component.ts948
+
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/recommendations/recommended-videos.component.ts59
-
+ src/app/+videos/+video-watch/recommendations/recommended-videos.component.ts59
+
Recently added
- Recently added
-
- src/app/+videos/video-list/video-recently-added.component.ts36
+ Son eklenenler
+ src/app/+videos/video-list/video-recently-added.component.ts36
+
Trending for the last 24 hoursSon 24 saatteki öne çıkanlar
-
- src/app/+videos/video-list/video-trending.component.ts46
+ src/app/+videos/video-list/video-trending.component.ts46
+
Trending videos are those totalizing the greatest number of views during the last 24 hoursÖne çıkan videolar, son 24 saatte en fazla görüntülenen videolardır
-
- src/app/+videos/video-list/video-trending.component.ts47
- Trending for the last daysTrending for the last days
+ src/app/+videos/video-list/video-trending.component.ts47
+
+
+ Trending for the last days
+ Son günde öne çıkanlarsrc/app/+videos/video-list/video-trending.component.ts51
-
- Trending videos are those totalizing the greatest number of views during the last daysTrending videos are those totalizing the greatest number of views during the last days
+
+
+ Trending videos are those totalizing the greatest number of views during the last days
+ Trending videos are those totalizing the greatest number of views during the last dayssrc/app/+videos/video-list/video-trending.component.ts52
@@ -9478,27 +10325,37 @@ video size: , used: , quota: )
Videos from your subscriptions
- Videos from your subscriptions
-
- src/app/+videos/video-list/video-user-subscriptions.component.ts42
- Copy feed URLCopy feed URL
+ Aboneliklerinizden videolar
+ src/app/+videos/video-list/video-user-subscriptions.component.ts42
+
+
+ Copy feed URL
+ Akış URL'sini kopyalasrc/app/+videos/video-list/video-user-subscriptions.component.ts65
-
- Feed URL copiedFeed URL copied
-
- src/app/+videos/video-list/video-user-subscriptions.component.ts109
+
+
+ Feed URL copied
+ Akış URL'si kopyalandı
+ src/app/+videos/video-list/video-user-subscriptions.component.ts109
+ Subscriptions
- Subscriptions
-
- src/app/+my-library/my-library.component.ts66src/app/+videos/videos-routing.module.ts73src/app/+videos/video-list/video-user-subscriptions.component.ts46
- HistoryHistory
-
- src/app/+my-library/my-library.component.ts71
- Open actionsOpen actions
+ Abonelikler
+ src/app/+my-library/my-library.component.ts66
+ src/app/+videos/videos-routing.module.ts73
+ src/app/+videos/video-list/video-user-subscriptions.component.ts46
+
+
+ History
+ Geçmiş
+ src/app/+my-library/my-library.component.ts71
+
+
+ Open actions
+ Open actionssrc/app/shared/shared-main/buttons/action-dropdown.component.html4
@@ -9507,33 +10364,34 @@ video size: , used: , quota: )
Local videosLocal videos
-
- src/app/+videos/videos-routing.module.ts86src/app/+videos/video-list/video-local.component.ts36
+ src/app/+videos/videos-routing.module.ts86
+ src/app/+videos/video-list/video-local.component.ts36
+ Discover videosDiscover videos
-
- src/app/+videos/videos-routing.module.ts24
+ src/app/+videos/videos-routing.module.ts24
+
Trending videosTrending videos
-
- src/app/+videos/videos-routing.module.ts33
+ src/app/+videos/videos-routing.module.ts33
+
Recently added videosRecently added videos
-
- src/app/+videos/videos-routing.module.ts59
+ src/app/+videos/videos-routing.module.ts59
+
Upload a video
- Upload a video
-
- src/app/+videos/videos-routing.module.ts99
+ Bir video yükle
+ src/app/+videos/videos-routing.module.ts99
+
Edit a videoEdit a video
-
- src/app/+videos/videos-routing.module.ts108
+ src/app/+videos/videos-routing.module.ts108
+
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf
index 053a4e07f..c81e51d91 100644
--- a/client/src/locale/angular.uk-UA.xlf
+++ b/client/src/locale/angular.uk-UA.xlf
@@ -581,7 +581,7 @@
Remote subscribeRemote interact
- Зовнішня підписка Зовнішня взаємодія
+ Віддалена підписка Віддалена взаємодіяsrc/app/shared/shared-user-subscription/remote-subscribe.component.html11
@@ -2666,12 +2666,12 @@ The link will expire within 1 hour.
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/comment/video-comments.component.ts171It 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/comment/video-comments.component.ts173
@@ -3070,12 +3070,12 @@ The link will expire within 1 hour.
My videos duplicated by remote instances
- My videos duplicated by remote instances
+ Мої відео дублюються віддаленими серверамиsrc/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html12Remote videos duplicated by my instance
- Remote videos duplicated by my instance
+ Віддалені відео, дублюються моїм серверомsrc/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html13
@@ -3902,7 +3902,7 @@ The link will expire within 1 hour.
Remote comments
- Remote comments
+ Віддалені коментаріsrc/app/+admin/moderation/video-comment-list/video-comment-list.component.html38
@@ -7506,7 +7506,7 @@ channel with the same name ()!
Cannot access to the remote resource
- Cannot access to the remote resource
+ Не вдається отримати доступ до віддаленого ресурсуsrc/app/+remote-interaction/remote-interaction.component.ts48
@@ -7514,7 +7514,7 @@ channel with the same name ()!
Remote interaction
- Remote interaction
+ Віддалена взаємодіяsrc/app/+remote-interaction/remote-interaction-routing.module.ts13
diff --git a/client/src/locale/player.tzm.json b/client/src/locale/player.tzm.json
index 3958d76ce..d2ffccb09 100644
--- a/client/src/locale/player.tzm.json
+++ b/client/src/locale/player.tzm.json
@@ -1,41 +1,41 @@
{
- "Quality": "",
+ "Quality": "Tiɣri",
"Auto": "",
- "Speed": "",
+ "Speed": "Tuzzla",
"Subtitles/CC": "",
"peers": "",
"peer": "",
- "Go to the video page": "",
- "Settings": "",
+ "Go to the video page": "Ddu ɣer tansa n uvidyu",
+ "Settings": "Tisɣal",
"Watching this video may reveal your IP address to others.": "",
- "Copy the video URL": "",
+ "Copy the video URL": "Ssenɣel asɣen n uvidyu",
"Copy the video URL at the current time": "",
"Copy embed code": "",
"Copy magnet URI": "",
"Total downloaded: ": "",
"Total uploaded: ": "",
- "From servers: ": "",
+ "From servers: ": "Seg imakkayen: ",
"From peers: ": "",
"Normal mode": "",
"Theater mode": "",
- "Audio Player": "",
- "Video Player": "",
- "Play": "",
- "Pause": "",
- "Replay": "",
+ "Audio Player": "Ameɣri n imsli",
+ "Video Player": "Ameɣri n uvidyu",
+ "Play": "Ɣer",
+ "Pause": "Ssebedd",
+ "Replay": "Ales tɣuri",
"Current Time": "",
"Duration": "",
"Remaining Time": "",
"Stream Type": "",
- "LIVE": "",
+ "LIVE": "USRID",
"Loaded": "",
"Progress": "",
"Progress Bar": "",
"progress bar timing: currentTime={1} duration={2}": "",
"Fullscreen": "",
"Non-Fullscreen": "",
- "Mute": "",
- "Unmute": "",
+ "Mute": "Ẓẓiẓen",
+ "Unmute": "Kkes aẓiẓen",
"Playback Rate": "",
"Subtitles": "",
"subtitles off": "",
diff --git a/client/src/locale/server.uk-UA.json b/client/src/locale/server.uk-UA.json
index 2b3c6e7cb..cabbe9409 100644
--- a/client/src/locale/server.uk-UA.json
+++ b/client/src/locale/server.uk-UA.json
@@ -38,7 +38,7 @@
"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 video is not available because the remote instance is not responding.": "Це відео недоступне, оскільки віддалений сервер не відповідає.",
"Misc": "Різне",
"Unknown": "Невідоме",
"Afar": "Афарська",