diff options
Diffstat (limited to 'client/src')
49 files changed, 6966 insertions, 6768 deletions
diff --git a/client/src/app/+videos/+video-watch/video-watch.component.html b/client/src/app/+videos/+video-watch/video-watch.component.html index d74334b13..602214ac5 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.html +++ b/client/src/app/+videos/+video-watch/video-watch.component.html | |||
@@ -54,9 +54,7 @@ | |||
54 | <div class="video-info-date-views"> | 54 | <div class="video-info-date-views"> |
55 | <ng-container i18n>Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle></ng-container> | 55 | <ng-container i18n>Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle></ng-container> |
56 | 56 | ||
57 | <span i18n | 57 | <span i18n [title]="video.getExactNumberOfViews()" class="views"> |
58 | title="{{ getExactNumberOfViews() }}" | ||
59 | class="views"> | ||
60 | • {{ video.views | myNumberFormatter }} | 58 | • {{ video.views | myNumberFormatter }} |
61 | <ng-container *ngIf="!video.isLive">views</ng-container> | 59 | <ng-container *ngIf="!video.isLive">views</ng-container> |
62 | <ng-container *ngIf="video.isLive">viewers</ng-container> | 60 | <ng-container *ngIf="video.isLive">viewers</ng-container> |
@@ -73,9 +71,7 @@ | |||
73 | <div class="d-none d-md-block video-info-date-views"> | 71 | <div class="d-none d-md-block video-info-date-views"> |
74 | <ng-container i18n>Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle></ng-container> | 72 | <ng-container i18n>Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle></ng-container> |
75 | 73 | ||
76 | <span i18n | 74 | <span i18n [title]="video.getExactNumberOfViews()" class="views"> |
77 | title="{{ getExactNumberOfViews() }}" | ||
78 | class="views"> | ||
79 | • {{ video.views | myNumberFormatter }} | 75 | • {{ video.views | myNumberFormatter }} |
80 | <ng-container *ngIf="!video.isLive">views</ng-container> | 76 | <ng-container *ngIf="!video.isLive">views</ng-container> |
81 | <ng-container *ngIf="video.isLive">viewers</ng-container> | 77 | <ng-container *ngIf="video.isLive">viewers</ng-container> |
diff --git a/client/src/app/+videos/+video-watch/video-watch.component.ts b/client/src/app/+videos/+video-watch/video-watch.component.ts index bc047489e..66af9709d 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts | |||
@@ -219,12 +219,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
219 | return $localize`You need to be <a href="/login">logged in</a> to rate this video.` | 219 | return $localize`You need to be <a href="/login">logged in</a> to rate this video.` |
220 | } | 220 | } |
221 | 221 | ||
222 | getExactNumberOfViews () { | ||
223 | return (this.video.views >= 1000) | ||
224 | ? `${this.video.views} ${this.video.isLive ? $localize`viewers` : $localize`views`}` | ||
225 | : '' | ||
226 | } | ||
227 | |||
228 | showMoreDescription () { | 222 | showMoreDescription () { |
229 | if (this.completeVideoDescription === undefined) { | 223 | if (this.completeVideoDescription === undefined) { |
230 | return this.loadCompleteDescription() | 224 | return this.loadCompleteDescription() |
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 75f4bdfe6..c5cb54ddd 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { Hotkey, HotkeysService } from 'angular2-hotkeys' | 1 | import { Hotkey, HotkeysService } from 'angular2-hotkeys' |
2 | import { concat } from 'rxjs' | 2 | import { concat } from 'rxjs' |
3 | import { filter, first, map, pairwise } from 'rxjs/operators' | 3 | import { filter, first, map, pairwise, tap } from 'rxjs/operators' |
4 | import { DOCUMENT, PlatformLocation, ViewportScroller } from '@angular/common' | 4 | import { DOCUMENT, PlatformLocation, ViewportScroller } from '@angular/common' |
5 | import { AfterViewInit, Component, Inject, LOCALE_ID, OnInit, ViewChild } from '@angular/core' | 5 | import { AfterViewInit, Component, Inject, LOCALE_ID, OnInit, ViewChild } from '@angular/core' |
6 | import { DomSanitizer, SafeHtml } from '@angular/platform-browser' | 6 | import { DomSanitizer, SafeHtml } from '@angular/platform-browser' |
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 5c4616153..3f874856d 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts | |||
@@ -1,11 +1,10 @@ | |||
1 | import 'focus-visible' | 1 | import 'focus-visible' |
2 | import { APP_BASE_HREF, registerLocaleData } from '@angular/common' | 2 | import { APP_BASE_HREF, registerLocaleData } from '@angular/common' |
3 | import { LOCALE_ID, NgModule, TRANSLATIONS, TRANSLATIONS_FORMAT } from '@angular/core' | 3 | import { NgModule } from '@angular/core' |
4 | import { BrowserModule } from '@angular/platform-browser' | 4 | import { BrowserModule } from '@angular/platform-browser' |
5 | import { ServerService } from '@app/core' | 5 | import { ServerService } from '@app/core' |
6 | import localeOc from '@app/helpers/locales/oc' | 6 | import localeOc from '@app/helpers/locales/oc' |
7 | import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' | 7 | import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' |
8 | import { buildFileLocale, getCompleteLocale, isDefaultLocale } from '@shared/core-utils/i18n' | ||
9 | import { AppRoutingModule } from './app-routing.module' | 8 | import { AppRoutingModule } from './app-routing.module' |
10 | import { AppComponent } from './app.component' | 9 | import { AppComponent } from './app.component' |
11 | import { CoreModule } from './core' | 10 | import { CoreModule } from './core' |
diff --git a/client/src/app/core/routing/redirect.service.ts b/client/src/app/core/routing/redirect.service.ts index 3982cf36f..4f4b346e2 100644 --- a/client/src/app/core/routing/redirect.service.ts +++ b/client/src/app/core/routing/redirect.service.ts | |||
@@ -11,6 +11,8 @@ export class RedirectService { | |||
11 | private previousUrl: string | 11 | private previousUrl: string |
12 | private currentUrl: string | 12 | private currentUrl: string |
13 | 13 | ||
14 | private redirectingToHomepage = false | ||
15 | |||
14 | constructor ( | 16 | constructor ( |
15 | private router: Router, | 17 | private router: Router, |
16 | private serverService: ServerService | 18 | private serverService: ServerService |
@@ -56,10 +58,17 @@ export class RedirectService { | |||
56 | } | 58 | } |
57 | 59 | ||
58 | redirectToHomepage (skipLocationChange = false) { | 60 | redirectToHomepage (skipLocationChange = false) { |
61 | if (this.redirectingToHomepage) return | ||
62 | |||
63 | this.redirectingToHomepage = true | ||
64 | |||
59 | console.log('Redirecting to %s...', RedirectService.DEFAULT_ROUTE) | 65 | console.log('Redirecting to %s...', RedirectService.DEFAULT_ROUTE) |
60 | 66 | ||
61 | this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { skipLocationChange }) | 67 | this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { skipLocationChange }) |
68 | .then(() => this.redirectingToHomepage = false) | ||
62 | .catch(() => { | 69 | .catch(() => { |
70 | this.redirectingToHomepage = false | ||
71 | |||
63 | console.error( | 72 | console.error( |
64 | 'Cannot navigate to %s, resetting default route to %s.', | 73 | 'Cannot navigate to %s, resetting default route to %s.', |
65 | RedirectService.DEFAULT_ROUTE, | 74 | RedirectService.DEFAULT_ROUTE, |
diff --git a/client/src/app/menu/menu.component.html b/client/src/app/menu/menu.component.html index 810466a72..bba5fdadf 100644 --- a/client/src/app/menu/menu.component.html +++ b/client/src/app/menu/menu.component.html | |||
@@ -12,7 +12,7 @@ | |||
12 | <div class="logged-in-username">@{{ user.username }}</div> | 12 | <div class="logged-in-username">@{{ user.username }}</div> |
13 | </div> | 13 | </div> |
14 | 14 | ||
15 | <div class="logged-in-more" ngbDropdown [placement]="placement" container="body" autoClose="outside"> | 15 | <div class="logged-in-more" ngbDropdown [placement]="loggedInMorePlacement" container="body" autoClose="outside"> |
16 | <my-global-icon iconName="more-vertical" ngbDropdownToggle role="button"></my-global-icon> | 16 | <my-global-icon iconName="more-vertical" ngbDropdownToggle role="button"></my-global-icon> |
17 | 17 | ||
18 | <div ngbDropdownMenu> | 18 | <div ngbDropdownMenu> |
@@ -32,7 +32,7 @@ | |||
32 | <a ngbDropdownItem ngbDropdownToggle class="dropdown-item" (click)="openLanguageChooser()"> | 32 | <a ngbDropdownItem ngbDropdownToggle class="dropdown-item" (click)="openLanguageChooser()"> |
33 | <my-global-icon iconName="language" aria-hidden="true"></my-global-icon> | 33 | <my-global-icon iconName="language" aria-hidden="true"></my-global-icon> |
34 | <span i18n>Interface:</span> | 34 | <span i18n>Interface:</span> |
35 | <span class="ml-auto text-muted">{{ language }}</span> | 35 | <span class="ml-auto text-muted">{{ currentInterfaceLanguage }}</span> |
36 | </a> | 36 | </a> |
37 | 37 | ||
38 | <a ngbDropdownItem ngbDropdownToggle class="dropdown-item" routerLink="/my-account/settings" fragment="video-languages-subtitles" | 38 | <a ngbDropdownItem ngbDropdownToggle class="dropdown-item" routerLink="/my-account/settings" fragment="video-languages-subtitles" |
@@ -168,7 +168,7 @@ | |||
168 | 168 | ||
169 | <div class="footer-links"> | 169 | <div class="footer-links"> |
170 | <div *ngIf="isLoggedIn === false"> | 170 | <div *ngIf="isLoggedIn === false"> |
171 | <span role="button" (click)="openLanguageChooser()" class="c-hand" i18n>Interface: {{ language }}</span> | 171 | <span role="button" (click)="openLanguageChooser()" class="c-hand" i18n>Interface: {{ currentInterfaceLanguage }}</span> |
172 | </div> | 172 | </div> |
173 | 173 | ||
174 | <div> | 174 | <div> |
diff --git a/client/src/app/menu/menu.component.ts b/client/src/app/menu/menu.component.ts index 97a3b6d24..bdc95127b 100644 --- a/client/src/app/menu/menu.component.ts +++ b/client/src/app/menu/menu.component.ts | |||
@@ -28,6 +28,11 @@ export class MenuComponent implements OnInit { | |||
28 | helpVisible = false | 28 | helpVisible = false |
29 | 29 | ||
30 | videoLanguages: string[] = [] | 30 | videoLanguages: string[] = [] |
31 | nsfwPolicy: string | ||
32 | |||
33 | loggedInMorePlacement: string | ||
34 | |||
35 | currentInterfaceLanguage: string | ||
31 | 36 | ||
32 | private languages: VideoConstant<string>[] = [] | 37 | private languages: VideoConstant<string>[] = [] |
33 | private serverConfig: ServerConfig | 38 | private serverConfig: ServerConfig |
@@ -52,37 +57,6 @@ export class MenuComponent implements OnInit { | |||
52 | private router: Router | 57 | private router: Router |
53 | ) { } | 58 | ) { } |
54 | 59 | ||
55 | get isInMobileView () { | ||
56 | return this.screenService.isInMobileView() | ||
57 | } | ||
58 | |||
59 | get placement () { | ||
60 | if (this.isInMobileView) { | ||
61 | return 'left-top auto' | ||
62 | } else { | ||
63 | return 'right-top auto' | ||
64 | } | ||
65 | } | ||
66 | |||
67 | get language () { | ||
68 | return this.languageChooserModal.getCurrentLanguage() | ||
69 | } | ||
70 | |||
71 | get nsfwPolicy () { | ||
72 | if (!this.user) return | ||
73 | |||
74 | switch (this.user.nsfwPolicy) { | ||
75 | case 'do_not_list': | ||
76 | return $localize`hide` | ||
77 | |||
78 | case 'blur': | ||
79 | return $localize`blur` | ||
80 | |||
81 | case 'display': | ||
82 | return $localize`display` | ||
83 | } | ||
84 | } | ||
85 | |||
86 | get instanceName () { | 60 | get instanceName () { |
87 | return this.serverConfig.instance.name | 61 | return this.serverConfig.instance.name |
88 | } | 62 | } |
@@ -95,11 +69,19 @@ export class MenuComponent implements OnInit { | |||
95 | this.isLoggedIn = this.authService.isLoggedIn() | 69 | this.isLoggedIn = this.authService.isLoggedIn() |
96 | if (this.isLoggedIn === true) { | 70 | if (this.isLoggedIn === true) { |
97 | this.user = this.authService.getUser() | 71 | this.user = this.authService.getUser() |
72 | |||
73 | this.computeNSFWPolicy() | ||
98 | this.computeVideosLink() | 74 | this.computeVideosLink() |
99 | } | 75 | } |
100 | 76 | ||
101 | this.computeAdminAccess() | 77 | this.computeAdminAccess() |
102 | 78 | ||
79 | this.loggedInMorePlacement = this.screenService.isInMobileView() | ||
80 | ? 'left-top auto' | ||
81 | : 'right-top auto' | ||
82 | |||
83 | this.currentInterfaceLanguage = this.languageChooserModal.getCurrentLanguage() | ||
84 | |||
103 | this.authService.loginChangedSource.subscribe( | 85 | this.authService.loginChangedSource.subscribe( |
104 | status => { | 86 | status => { |
105 | if (status === AuthStatus.LoggedIn) { | 87 | if (status === AuthStatus.LoggedIn) { |
@@ -252,4 +234,25 @@ export class MenuComponent implements OnInit { | |||
252 | else logger('User cannot see videos link.') | 234 | else logger('User cannot see videos link.') |
253 | }) | 235 | }) |
254 | } | 236 | } |
237 | |||
238 | private computeNSFWPolicy () { | ||
239 | if (!this.user) { | ||
240 | this.nsfwPolicy = null | ||
241 | return | ||
242 | } | ||
243 | |||
244 | switch (this.user.nsfwPolicy) { | ||
245 | case 'do_not_list': | ||
246 | this.nsfwPolicy = $localize`hide` | ||
247 | break | ||
248 | |||
249 | case 'blur': | ||
250 | this.nsfwPolicy = $localize`blur` | ||
251 | break | ||
252 | |||
253 | case 'display': | ||
254 | this.nsfwPolicy = $localize`display` | ||
255 | break | ||
256 | } | ||
257 | } | ||
255 | } | 258 | } |
diff --git a/client/src/app/shared/shared-main/date/date-toggle.component.html b/client/src/app/shared/shared-main/date/date-toggle.component.html index ebd4ce442..14b6e7d7a 100644 --- a/client/src/app/shared/shared-main/date/date-toggle.component.html +++ b/client/src/app/shared/shared-main/date/date-toggle.component.html | |||
@@ -1,6 +1,7 @@ | |||
1 | <span | 1 | <span |
2 | class="date-toggle" | 2 | class="date-toggle" |
3 | [title]="getTitle()" | 3 | [title]="getTitle()" |
4 | [innerHtml]="getContent()" | ||
5 | (click)="toggle()" | 4 | (click)="toggle()" |
6 | ></span> | 5 | > |
6 | {{ getContent() }} | ||
7 | </span> | ||
diff --git a/client/src/app/shared/shared-main/date/date-toggle.component.ts b/client/src/app/shared/shared-main/date/date-toggle.component.ts index bedf0ba4e..53f25f0ad 100644 --- a/client/src/app/shared/shared-main/date/date-toggle.component.ts +++ b/client/src/app/shared/shared-main/date/date-toggle.component.ts | |||
@@ -7,7 +7,7 @@ import { FromNowPipe } from '../angular/from-now.pipe' | |||
7 | templateUrl: './date-toggle.component.html', | 7 | templateUrl: './date-toggle.component.html', |
8 | styleUrls: [ './date-toggle.component.scss' ] | 8 | styleUrls: [ './date-toggle.component.scss' ] |
9 | }) | 9 | }) |
10 | export class DateToggleComponent implements OnInit, OnChanges { | 10 | export class DateToggleComponent implements OnChanges { |
11 | @Input() date: Date | 11 | @Input() date: Date |
12 | @Input() toggled = false | 12 | @Input() toggled = false |
13 | 13 | ||
@@ -19,10 +19,6 @@ export class DateToggleComponent implements OnInit, OnChanges { | |||
19 | private fromNowPipe: FromNowPipe | 19 | private fromNowPipe: FromNowPipe |
20 | ) { } | 20 | ) { } |
21 | 21 | ||
22 | ngOnInit () { | ||
23 | this.updateDates() | ||
24 | } | ||
25 | |||
26 | ngOnChanges () { | 22 | ngOnChanges () { |
27 | this.updateDates() | 23 | this.updateDates() |
28 | } | 24 | } |
@@ -32,15 +28,19 @@ export class DateToggleComponent implements OnInit, OnChanges { | |||
32 | } | 28 | } |
33 | 29 | ||
34 | getTitle () { | 30 | getTitle () { |
35 | return this.toggled ? this.dateRelative : this.dateAbsolute | 31 | return this.toggled |
32 | ? this.dateRelative | ||
33 | : this.dateAbsolute | ||
36 | } | 34 | } |
37 | 35 | ||
38 | getContent () { | 36 | getContent () { |
39 | return this.toggled ? this.dateAbsolute : this.dateRelative | 37 | return this.toggled |
38 | ? this.dateAbsolute | ||
39 | : this.dateRelative | ||
40 | } | 40 | } |
41 | 41 | ||
42 | private updateDates () { | 42 | private updateDates () { |
43 | this.dateRelative = this.fromNowPipe.transform(this.date) | 43 | this.dateRelative = this.fromNowPipe.transform(this.date) |
44 | this.dateAbsolute = this.datePipe.transform(this.date, 'long') | 44 | this.dateAbsolute = this.date.toLocaleDateString() |
45 | } | 45 | } |
46 | } | 46 | } |
diff --git a/client/src/app/shared/shared-main/video/video.model.ts b/client/src/app/shared/shared-main/video/video.model.ts index 04e7bd717..adb6e884f 100644 --- a/client/src/app/shared/shared-main/video/video.model.ts +++ b/client/src/app/shared/shared-main/video/video.model.ts | |||
@@ -203,4 +203,14 @@ export class Video implements VideoServerModel { | |||
203 | canBeDuplicatedBy (user: AuthUser) { | 203 | canBeDuplicatedBy (user: AuthUser) { |
204 | return user && this.isLocal === false && user.hasRight(UserRight.MANAGE_VIDEOS_REDUNDANCIES) | 204 | return user && this.isLocal === false && user.hasRight(UserRight.MANAGE_VIDEOS_REDUNDANCIES) |
205 | } | 205 | } |
206 | |||
207 | getExactNumberOfViews () { | ||
208 | if (this.views < 1000) return '' | ||
209 | |||
210 | if (this.isLive) { | ||
211 | return $localize`${this.views} viewers` | ||
212 | } | ||
213 | |||
214 | return $localize`${this.views} views` | ||
215 | } | ||
206 | } | 216 | } |
diff --git a/client/src/app/shared/shared-video-miniature/video-miniature.component.html b/client/src/app/shared/shared-video-miniature/video-miniature.component.html index b323002e3..395a4df97 100644 --- a/client/src/app/shared/shared-video-miniature/video-miniature.component.html +++ b/client/src/app/shared/shared-video-miniature/video-miniature.component.html | |||
@@ -26,7 +26,7 @@ | |||
26 | <span class="video-miniature-created-at-views"> | 26 | <span class="video-miniature-created-at-views"> |
27 | <my-date-toggle *ngIf="displayOptions.date" [date]="video.publishedAt"></my-date-toggle> | 27 | <my-date-toggle *ngIf="displayOptions.date" [date]="video.publishedAt"></my-date-toggle> |
28 | 28 | ||
29 | <span class="views" title="{{ getExactNumberOfViews() }}"> | 29 | <span class="views" [title]="video.getExactNumberOfViews()"> |
30 | <ng-container *ngIf="displayOptions.date && displayOptions.views"> • </ng-container> | 30 | <ng-container *ngIf="displayOptions.date && displayOptions.views"> • </ng-container> |
31 | <ng-container i18n *ngIf="displayOptions.views"> | 31 | <ng-container i18n *ngIf="displayOptions.views"> |
32 | {video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 32 | {video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} |
diff --git a/client/src/app/shared/shared-video-miniature/video-miniature.component.ts b/client/src/app/shared/shared-video-miniature/video-miniature.component.ts index e59255cf8..cc5665ab1 100644 --- a/client/src/app/shared/shared-video-miniature/video-miniature.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-miniature.component.ts | |||
@@ -190,12 +190,6 @@ export class VideoMiniatureComponent implements OnInit { | |||
190 | return this.video.videoChannelAvatarUrl | 190 | return this.video.videoChannelAvatarUrl |
191 | } | 191 | } |
192 | 192 | ||
193 | getExactNumberOfViews () { | ||
194 | return (this.video.views >= 1000 && this.displayOptions.views) | ||
195 | ? `${this.video.views} ${this.video.isLive ? $localize`viewers` : $localize`views`}` | ||
196 | : '' | ||
197 | } | ||
198 | |||
199 | loadActions () { | 193 | loadActions () { |
200 | if (this.displayVideoActions) this.showActions = true | 194 | if (this.displayVideoActions) this.showActions = true |
201 | 195 | ||
diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf index a3ff22a44..844aec7cd 100644 --- a/client/src/locale/angular.ar.xlf +++ b/client/src/locale/angular.ar.xlf | |||
@@ -636,11 +636,7 @@ | |||
636 | <target state="translated">حساس:</target> | 636 | <target state="translated">حساس:</target> |
637 | 637 | ||
638 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 638 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
639 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 639 | |
640 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
641 | <target>الواجهة: <x id="INTERPOLATION"/></target> | ||
642 | |||
643 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
644 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 640 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
645 | <source>Help share videos</source> | 641 | <source>Help share videos</source> |
646 | <target>ساهِم في مشاركة الفيديوهات</target> | 642 | <target>ساهِم في مشاركة الفيديوهات</target> |
@@ -681,7 +677,13 @@ | |||
681 | <source>Videos</source> | 677 | <source>Videos</source> |
682 | <target>الفيديوهات</target> | 678 | <target>الفيديوهات</target> |
683 | 679 | ||
684 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 680 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
681 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
682 | <context-group purpose="location"> | ||
683 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
684 | <context context-type="linenumber">171</context> | ||
685 | </context-group> | ||
686 | </trans-unit> | ||
685 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 687 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
686 | <source>Playlists</source> | 688 | <source>Playlists</source> |
687 | <target>قوائم التشغيل</target> | 689 | <target>قوائم التشغيل</target> |
@@ -1012,7 +1014,7 @@ | |||
1012 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 1014 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
1013 | <context context-type="linenumber">8</context> | 1015 | <context context-type="linenumber">8</context> |
1014 | </context-group> | 1016 | </context-group> |
1015 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 1017 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
1016 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 1018 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
1017 | <context-group purpose="location"> | 1019 | <context-group purpose="location"> |
1018 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 1020 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -2169,7 +2171,13 @@ | |||
2169 | <source>Basic configuration</source> | 2171 | <source>Basic configuration</source> |
2170 | <target>الاعدادات الإفتراضية</target> | 2172 | <target>الاعدادات الإفتراضية</target> |
2171 | 2173 | ||
2172 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 2174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
2175 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
2176 | <context-group purpose="location"> | ||
2177 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
2178 | <context context-type="linenumber">700</context> | ||
2179 | </context-group> | ||
2180 | </trans-unit> | ||
2173 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> | 2181 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> |
2174 | <source>APPEARANCE</source> | 2182 | <source>APPEARANCE</source> |
2175 | <target>المظهر</target> | 2183 | <target>المظهر</target> |
@@ -2424,226 +2432,210 @@ | |||
2424 | <target>تمكين نموذج الاتصال</target> | 2432 | <target>تمكين نموذج الاتصال</target> |
2425 | 2433 | ||
2426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group></trans-unit> | 2434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group></trans-unit> |
2427 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | 2435 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
2428 | <source>Services</source> | ||
2429 | <target>الخدمات</target> | ||
2430 | |||
2431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
2432 | <source>Live streaming</source><target state="new">Live streaming</target> | 2436 | <source>Live streaming</source><target state="new">Live streaming</target> |
2433 | 2437 | ||
2434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 2438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
2435 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 2439 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
2436 | <source>TWITTER</source> | 2440 | <source>TWITTER</source> |
2437 | <target>تويتر</target> | 2441 | <target>تويتر</target> |
2438 | 2442 | ||
2439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 2443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
2440 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 2444 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
2441 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 2445 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
2442 | <target>اختياري. إن وجدت ، قدم حساب Twitter يمثل مثيل الخادم الخاص بك لتحسين معاينات الرابط.</target> | 2446 | <target>اختياري. إن وجدت ، قدم حساب Twitter يمثل مثيل الخادم الخاص بك لتحسين معاينات الرابط.</target> |
2443 | 2447 | ||
2444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 2448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
2445 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 2449 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
2446 | <source>Your Twitter username</source> | 2450 | <source>Your Twitter username</source> |
2447 | <target>اسم المستخدِم الخاص بك على تويتر</target> | 2451 | <target>اسم المستخدِم الخاص بك على تويتر</target> |
2448 | 2452 | ||
2449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 2453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
2450 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 2454 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
2451 | <source>Instance allowed by Twitter</source> | 2455 | <source>Instance allowed by Twitter</source> |
2452 | <target>المثيل المسموح به من قبل تويتر</target> | 2456 | <target>المثيل المسموح به من قبل تويتر</target> |
2453 | 2457 | ||
2454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 2458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
2455 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 2459 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
2456 | 2460 | ||
2457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 2461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
2458 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 2462 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
2459 | <source>LIVE</source><target state="new">LIVE</target> | 2463 | <source>LIVE</source><target state="new">LIVE</target> |
2460 | 2464 | ||
2461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 2465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
2462 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 2466 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
2463 | 2467 | ||
2464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 2468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
2465 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 2469 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
2466 | 2470 | ||
2467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 2471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
2468 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 2472 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
2469 | 2473 | ||
2470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 2474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
2471 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 2475 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
2472 | 2476 | ||
2473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 2477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
2474 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 2478 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
2475 | 2479 | ||
2476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 2480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
2477 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 2481 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
2478 | <context-group purpose="location"> | 2482 | |
2479 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 2483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
2480 | <context context-type="linenumber">751</context> | ||
2481 | </context-group> | ||
2482 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
2483 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 2484 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
2484 | 2485 | ||
2485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 2486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
2486 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 2487 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
2487 | <context-group purpose="location"> | 2488 | |
2488 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 2489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
2489 | <context context-type="linenumber">759</context> | ||
2490 | </context-group> | ||
2491 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
2492 | <source>Max live duration</source><target state="new">Max live duration</target> | 2490 | <source>Max live duration</source><target state="new">Max live duration</target> |
2493 | 2491 | ||
2494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 2492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
2495 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 2493 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
2496 | 2494 | ||
2497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 2495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
2498 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 2496 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
2499 | 2497 | ||
2500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 2498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
2501 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 2499 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
2502 | 2500 | ||
2503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 2501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
2504 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 2502 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
2505 | 2503 | ||
2506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 2504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
2507 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 2505 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
2508 | 2506 | ||
2509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 2507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
2510 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 2508 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
2511 | <context-group purpose="location"> | 2509 | |
2512 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 2510 | |
2513 | <context context-type="linenumber">793</context> | 2511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> |
2514 | </context-group> | ||
2515 | <context-group purpose="location"> | ||
2516 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
2517 | <context context-type="linenumber">935</context> | ||
2518 | </context-group> | ||
2519 | </trans-unit> | ||
2520 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 2512 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
2521 | <source>Advanced configuration</source> | 2513 | <source>Advanced configuration</source> |
2522 | <target>الإعدادات المتقدمة</target> | 2514 | <target>الإعدادات المتقدمة</target> |
2523 | 2515 | ||
2524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 2516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
2525 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 2517 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
2526 | <source>TRANSCODING</source> | 2518 | <source>TRANSCODING</source> |
2527 | <target>يغير الترميز</target> | 2519 | <target>يغير الترميز</target> |
2528 | 2520 | ||
2529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 2521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
2530 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 2522 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
2531 | <source>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.</source> | 2523 | <source>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.</source> |
2532 | <target>معالجة مقاطع الفيديو التي تم تحميلها بحيث تكون في شكل قابل للعرض على أي جهاز. رغم كونه مكلفًا ، إلا أن هذا جزء مهم من بيرتيوب ، لذا كن حذرا.</target> | 2524 | <target>معالجة مقاطع الفيديو التي تم تحميلها بحيث تكون في شكل قابل للعرض على أي جهاز. رغم كونه مكلفًا ، إلا أن هذا جزء مهم من بيرتيوب ، لذا كن حذرا.</target> |
2533 | 2525 | ||
2534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 2526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
2535 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 2527 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
2536 | <source>Transcoding enabled</source> | 2528 | <source>Transcoding enabled</source> |
2537 | <target>مُكّن تحويل الترميز</target> | 2529 | <target>مُكّن تحويل الترميز</target> |
2538 | 2530 | ||
2539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 2531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
2540 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 2532 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
2541 | <source>If you disable transcoding, many videos from your users will not work!</source> | 2533 | <source>If you disable transcoding, many videos from your users will not work!</source> |
2542 | <target>إذا قمت بتعطيل التحويل ، فلن تعمل العديد من مقاطع فيديو المستخدمين!</target> | 2534 | <target>إذا قمت بتعطيل التحويل ، فلن تعمل العديد من مقاطع فيديو المستخدمين!</target> |
2543 | 2535 | ||
2544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 2536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
2537 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
2538 | |||
2539 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
2540 | |||
2541 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
2542 | <context-group purpose="location"> | ||
2543 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
2544 | <context context-type="linenumber">759,763</context> | ||
2545 | </context-group> | ||
2546 | </trans-unit> | ||
2545 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 2547 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
2546 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 2548 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
2547 | <target state="translated">يسمح للمستخدم رفع فيديوهات mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut.</target> | 2549 | <target state="translated">يسمح للمستخدم رفع فيديوهات mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut.</target> |
2548 | 2550 | ||
2549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 2551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
2550 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 2552 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
2551 | <source>Allow additional extensions</source> | 2553 | <source>Allow additional extensions</source> |
2552 | <target>السماح بامتدادات إضافية</target> | 2554 | <target>السماح بامتدادات إضافية</target> |
2553 | 2555 | ||
2554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 2556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
2555 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 2557 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
2556 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 2558 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
2557 | <target>يسمح للمستخدمين بتحميل الملفات الصوتية التي سيتم دمجها مع ملف المعاينة عند التحميل.</target> | 2559 | <target>يسمح للمستخدمين بتحميل الملفات الصوتية التي سيتم دمجها مع ملف المعاينة عند التحميل.</target> |
2558 | 2560 | ||
2559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 2561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
2560 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 2562 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
2561 | <source>Allow audio files upload</source> | 2563 | <source>Allow audio files upload</source> |
2562 | <target>السماح بتحميل الملفات الصوتية</target> | 2564 | <target>السماح بتحميل الملفات الصوتية</target> |
2563 | 2565 | ||
2564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 2566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
2565 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 2567 | |
2566 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
2567 | <target state="translated"><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
2568 | |||
2569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
2570 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 2568 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
2571 | <source>WebTorrent support enabled</source> | 2569 | <source>WebTorrent support enabled</source> |
2572 | <target>دعم WebTorrent مفعّل</target> | 2570 | <target>دعم WebTorrent مفعّل</target> |
2573 | 2571 | ||
2574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 2572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
2575 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 2573 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
2576 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 2574 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
2577 | <target state="translated"><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></target> | 2575 | <target state="translated"><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></target> |
2578 | 2576 | ||
2579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 2577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
2580 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 2578 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
2581 | <source>HLS with P2P support enabled</source> | 2579 | <source>HLS with P2P support enabled</source> |
2582 | <target>تم تمكين HLS مع دعم P2P</target> | 2580 | <target>تم تمكين HLS مع دعم P2P</target> |
2583 | 2581 | ||
2584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 2582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
2585 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 2583 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
2586 | <source>Transcoding threads</source> | 2584 | <source>Transcoding threads</source> |
2587 | <target>خيوط التحويل</target> | 2585 | <target>خيوط التحويل</target> |
2588 | 2586 | ||
2589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 2587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
2590 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 2588 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
2591 | <source>Resolutions to generate</source> | 2589 | <source>Resolutions to generate</source> |
2592 | <target>دقّات الفيديو المراد توليدها</target> | 2590 | <target>دقّات الفيديو المراد توليدها</target> |
2593 | 2591 | ||
2594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 2592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
2595 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 2593 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
2596 | <source>CACHE</source> | 2594 | <source>CACHE</source> |
2597 | <target>ذاكرة التخزين المؤقتة</target> | 2595 | <target>ذاكرة التخزين المؤقتة</target> |
2598 | 2596 | ||
2599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 2597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
2600 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 2598 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
2601 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 2599 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
2602 | <target state="translated">بعض الملفات غير مجمعة ، ويتم جلبها عند الضرورة. تحديد سياسات التخزين المؤقت الخاصة بهم.</target> | 2600 | <target state="translated">بعض الملفات غير مجمعة ، ويتم جلبها عند الضرورة. تحديد سياسات التخزين المؤقت الخاصة بهم.</target> |
2603 | 2601 | ||
2604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 2602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
2605 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 2603 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
2606 | <source>Number of previews to keep in cache</source> | 2604 | <source>Number of previews to keep in cache</source> |
2607 | <target>عدد المعاينات للاحتفاظ بها في ذاكرة التخزين المؤقت</target> | 2605 | <target>عدد المعاينات للاحتفاظ بها في ذاكرة التخزين المؤقت</target> |
2608 | 2606 | ||
2609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 2607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
2610 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 2608 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
2611 | <context-group purpose="location"> | 2609 | |
2612 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 2610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
2613 | <context context-type="linenumber">986</context> | ||
2614 | </context-group> | ||
2615 | </trans-unit> | ||
2616 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 2611 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
2617 | <source>Number of video captions to keep in cache</source> | 2612 | <source>Number of video captions to keep in cache</source> |
2618 | <target state="translated">عدد تسميات الفيديو التي يجب الاحتفاظ بها في ذاكرة التخزين المؤقت</target> | 2613 | <target state="translated">عدد تسميات الفيديو التي يجب الاحتفاظ بها في ذاكرة التخزين المؤقت</target> |
2619 | 2614 | ||
2620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 2615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
2621 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 2616 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
2622 | <context-group purpose="location"> | 2617 | |
2623 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 2618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
2624 | <context context-type="linenumber">998</context> | ||
2625 | </context-group> | ||
2626 | </trans-unit> | ||
2627 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 2619 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
2628 | <source>CUSTOMIZATIONS</source> | 2620 | <source>CUSTOMIZATIONS</source> |
2629 | <target>التخصيصات</target> | 2621 | <target>التخصيصات</target> |
2630 | 2622 | ||
2631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 2623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
2632 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 2624 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
2633 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 2625 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
2634 | <target>تعديلات طفيفة على منصة بيرتيوب الخاص بك عند إنشاء مكون إضافي أو سمة هو مبالغة.</target> | 2626 | <target>تعديلات طفيفة على منصة بيرتيوب الخاص بك عند إنشاء مكون إضافي أو سمة هو مبالغة.</target> |
2635 | 2627 | ||
2636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 2628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
2637 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 2629 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
2638 | <source>JavaScript</source> | 2630 | <source>JavaScript</source> |
2639 | <target>الجافا سكريبت</target> | 2631 | <target>الجافا سكريبت</target> |
2640 | 2632 | ||
2641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 2633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
2642 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 2634 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
2643 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 2635 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
2644 | <target state="translated">اكتب شيفرة جافا سكربت مباشرة.<x id="LINE_BREAK"/>مثال: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></target> | 2636 | <target state="translated">اكتب شيفرة جافا سكربت مباشرة.<x id="LINE_BREAK"/>مثال: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></target> |
2645 | 2637 | ||
2646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 2638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
2647 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 2639 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
2648 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 2640 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
2649 | color: red; | 2641 | color: red; |
@@ -2654,19 +2646,19 @@ | |||
2654 | <x id="CLOSE_TAG_PRE"/></source> | 2646 | <x id="CLOSE_TAG_PRE"/></source> |
2655 | <target state="translated">Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 2647 | <target state="translated">Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
2656 | 2648 | ||
2657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 2649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
2658 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 2650 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
2659 | 2651 | ||
2660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 2652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
2661 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 2653 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
2662 | 2654 | ||
2663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
2664 | 2656 | ||
2665 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 2657 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
2666 | <source>Update configuration</source> | 2658 | <source>Update configuration</source> |
2667 | <target>تحديث الإعدادات</target> | 2659 | <target>تحديث الإعدادات</target> |
2668 | 2660 | ||
2669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 2661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
2670 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566" datatype="html"> | 2662 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566" datatype="html"> |
2671 | <source>Save to</source> | 2663 | <source>Save to</source> |
2672 | <target>حفظ إلى</target> | 2664 | <target>حفظ إلى</target> |
@@ -2795,17 +2787,25 @@ | |||
2795 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 2787 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
2796 | <target>{VAR_PLURAL, plural, =1 {مشاهدة واحدة} other {<x id="INTERPOLATION"/> مشاهدة}}</target> | 2788 | <target>{VAR_PLURAL, plural, =1 {مشاهدة واحدة} other {<x id="INTERPOLATION"/> مشاهدة}}</target> |
2797 | 2789 | ||
2798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
2791 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
2792 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
2793 | "/> </target> | ||
2794 | <context-group purpose="location"> | ||
2795 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
2796 | <context context-type="linenumber">32,33</context> | ||
2797 | </context-group> | ||
2798 | </trans-unit> | ||
2799 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 2799 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
2800 | <source>Blocked</source> | 2800 | <source>Blocked</source> |
2801 | <target>محجوب</target> | 2801 | <target>محجوب</target> |
2802 | 2802 | ||
2803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 2803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
2804 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 2804 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
2805 | <source>Sensitive</source> | 2805 | <source>Sensitive</source> |
2806 | <target>حساس</target> | 2806 | <target>حساس</target> |
2807 | 2807 | ||
2808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 2808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
2809 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e" datatype="html"> | 2809 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e" datatype="html"> |
2810 | <source>No results.</source> | 2810 | <source>No results.</source> |
2811 | <target>لا نتائج.</target> | 2811 | <target>لا نتائج.</target> |
@@ -4429,12 +4429,12 @@ The link will expire within 1 hour.</source> | |||
4429 | <source>Scheduled</source> | 4429 | <source>Scheduled</source> |
4430 | <target>مجدول</target> | 4430 | <target>مجدول</target> |
4431 | 4431 | ||
4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
4433 | <trans-unit id="1435317307066082710" datatype="html"> | 4433 | <trans-unit id="1435317307066082710" datatype="html"> |
4434 | <source>Hide the video until a specific date</source> | 4434 | <source>Hide the video until a specific date</source> |
4435 | <target state="translated">أخفِ الفيديو حتى تاريخ معين</target> | 4435 | <target state="translated">أخفِ الفيديو حتى تاريخ معين</target> |
4436 | 4436 | ||
4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
4438 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 4438 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
4439 | <source>Video background image</source> | 4439 | <source>Video background image</source> |
4440 | <target>صورة خلفية الفيديو</target> | 4440 | <target>صورة خلفية الفيديو</target> |
@@ -6502,12 +6502,12 @@ The link will expire within 1 hour.</source> | |||
6502 | <source>Instance languages</source> | 6502 | <source>Instance languages</source> |
6503 | <target state="translated">لغات المثيل</target> | 6503 | <target state="translated">لغات المثيل</target> |
6504 | 6504 | ||
6505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 6505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
6506 | <trans-unit id="40119547597591062" datatype="html"> | 6506 | <trans-unit id="40119547597591062" datatype="html"> |
6507 | <source>All languages</source> | 6507 | <source>All languages</source> |
6508 | <target state="translated">كل اللغات</target> | 6508 | <target state="translated">كل اللغات</target> |
6509 | 6509 | ||
6510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 6510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
6511 | <trans-unit id="5210096066382592800" datatype="html"> | 6511 | <trans-unit id="5210096066382592800" datatype="html"> |
6512 | <source>Video to import updated.</source> | 6512 | <source>Video to import updated.</source> |
6513 | <target>تم تحديث الفيديو المراد استيراده.</target> | 6513 | <target>تم تحديث الفيديو المراد استيراده.</target> |
@@ -6919,27 +6919,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6919 | <source>hide</source> | 6919 | <source>hide</source> |
6920 | <target>أخف</target> | 6920 | <target>أخف</target> |
6921 | 6921 | ||
6922 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6922 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6923 | <trans-unit id="8603861867909474404" datatype="html"> | 6923 | <trans-unit id="8603861867909474404" datatype="html"> |
6924 | <source>blur</source> | 6924 | <source>blur</source> |
6925 | <target>طمس</target> | 6925 | <target>طمس</target> |
6926 | 6926 | ||
6927 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6927 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6928 | <trans-unit id="4534458451100881847" datatype="html"> | 6928 | <trans-unit id="4534458451100881847" datatype="html"> |
6929 | <source>display</source> | 6929 | <source>display</source> |
6930 | <target>اعرض</target> | 6930 | <target>اعرض</target> |
6931 | 6931 | ||
6932 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6932 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6933 | <trans-unit id="4467323362722952678" datatype="html"> | 6933 | <trans-unit id="4467323362722952678" datatype="html"> |
6934 | <source>Unknown</source> | 6934 | <source>Unknown</source> |
6935 | <target>مجهول</target> | 6935 | <target>مجهول</target> |
6936 | 6936 | ||
6937 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6937 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6938 | <trans-unit id="7939914198003891823" datatype="html"> | 6938 | <trans-unit id="7939914198003891823" datatype="html"> |
6939 | <source>any language</source> | 6939 | <source>any language</source> |
6940 | <target>أي لغة</target> | 6940 | <target>أي لغة</target> |
6941 | 6941 | ||
6942 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6942 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6943 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6943 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6944 | 6944 | ||
6945 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7658,7 +7658,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7658 | <source>Only users of this instance can see this video</source> | 7658 | <source>Only users of this instance can see this video</source> |
7659 | <target>يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو</target> | 7659 | <target>يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو</target> |
7660 | 7660 | ||
7661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 7661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
7662 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
7663 | <context-group purpose="location"> | ||
7664 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
7665 | <context context-type="linenumber">211</context> | ||
7666 | </context-group> | ||
7667 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
7668 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
7669 | <context-group purpose="location"> | ||
7670 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
7671 | <context context-type="linenumber">214</context> | ||
7672 | </context-group> | ||
7673 | </trans-unit> | ||
7662 | <trans-unit id="ngb.alert.close" datatype="html"> | 7674 | <trans-unit id="ngb.alert.close" datatype="html"> |
7663 | <source>Close</source> | 7675 | <source>Close</source> |
7664 | <target state="translated">أغلق</target> | 7676 | <target state="translated">أغلق</target> |
diff --git a/client/src/locale/angular.ca-ES.xlf b/client/src/locale/angular.ca-ES.xlf index 9bddffc2f..39ad5b441 100644 --- a/client/src/locale/angular.ca-ES.xlf +++ b/client/src/locale/angular.ca-ES.xlf | |||
@@ -487,17 +487,25 @@ | |||
487 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> vistes} } | 487 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> vistes} } |
488 | </target> | 488 | </target> |
489 | 489 | ||
490 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 490 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
491 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
492 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
493 | "/> </target> | ||
494 | <context-group purpose="location"> | ||
495 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
496 | <context context-type="linenumber">32,33</context> | ||
497 | </context-group> | ||
498 | </trans-unit> | ||
491 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 499 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
492 | <source>Blocked</source> | 500 | <source>Blocked</source> |
493 | <target state="new">Blocked</target> | 501 | <target state="new">Blocked</target> |
494 | 502 | ||
495 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
496 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 504 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
497 | <source>Sensitive</source> | 505 | <source>Sensitive</source> |
498 | <target state="translated">Sensible</target> | 506 | <target state="translated">Sensible</target> |
499 | 507 | ||
500 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
501 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 509 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
502 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 510 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
503 | <target state="translated">{VAR_PLURAL, plural, =0 {Cap vídeo} =1 {1 vídeo} other { | 511 | <target state="translated">{VAR_PLURAL, plural, =0 {Cap vídeo} =1 {1 vídeo} other { |
@@ -1314,13 +1322,7 @@ The link will expire within 1 hour.</target> | |||
1314 | <target state="new">Sensitive:</target> | 1322 | <target state="new">Sensitive:</target> |
1315 | 1323 | ||
1316 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1324 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1317 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1325 | |
1318 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1319 | <target state="new">Interface: | ||
1320 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1321 | </target> | ||
1322 | |||
1323 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1324 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1326 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1325 | <source>Help share videos</source> | 1327 | <source>Help share videos</source> |
1326 | <target state="new">Help share videos</target> | 1328 | <target state="new">Help share videos</target> |
@@ -1396,7 +1398,13 @@ The link will expire within 1 hour.</target> | |||
1396 | <source>Videos</source> | 1398 | <source>Videos</source> |
1397 | <target>Vídeos</target> | 1399 | <target>Vídeos</target> |
1398 | 1400 | ||
1399 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1401 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1402 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1403 | <context-group purpose="location"> | ||
1404 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1405 | <context context-type="linenumber">171</context> | ||
1406 | </context-group> | ||
1407 | </trans-unit> | ||
1400 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1408 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1401 | <source>Playlists</source> | 1409 | <source>Playlists</source> |
1402 | <target state="new">Playlists</target> | 1410 | <target state="new">Playlists</target> |
@@ -2017,12 +2025,12 @@ The link will expire within 1 hour.</target> | |||
2017 | <source>Scheduled</source> | 2025 | <source>Scheduled</source> |
2018 | <target state="translated">Programat</target> | 2026 | <target state="translated">Programat</target> |
2019 | 2027 | ||
2020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2021 | <trans-unit id="1435317307066082710" datatype="html"> | 2029 | <trans-unit id="1435317307066082710" datatype="html"> |
2022 | <source>Hide the video until a specific date</source> | 2030 | <source>Hide the video until a specific date</source> |
2023 | <target state="new">Hide the video until a specific date</target> | 2031 | <target state="new">Hide the video until a specific date</target> |
2024 | 2032 | ||
2025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2026 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2034 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2027 | <source>Video background image</source> | 2035 | <source>Video background image</source> |
2028 | <target state="translated">Imatge de fons del vídeo</target> | 2036 | <target state="translated">Imatge de fons del vídeo</target> |
@@ -2679,7 +2687,7 @@ The link will expire within 1 hour.</target> | |||
2679 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2687 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2680 | <context context-type="linenumber">8</context> | 2688 | <context context-type="linenumber">8</context> |
2681 | </context-group> | 2689 | </context-group> |
2682 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2690 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2683 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2691 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2684 | <context-group purpose="location"> | 2692 | <context-group purpose="location"> |
2685 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2693 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4308,107 +4316,97 @@ The link will expire within 1 hour.</target> | |||
4308 | <source>Basic configuration</source> | 4316 | <source>Basic configuration</source> |
4309 | <target>Configuració bàsica</target> | 4317 | <target>Configuració bàsica</target> |
4310 | 4318 | ||
4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4320 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4321 | <context-group purpose="location"> | ||
4322 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4323 | <context context-type="linenumber">700</context> | ||
4324 | </context-group> | ||
4325 | </trans-unit> | ||
4312 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4326 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4313 | <source>TWITTER</source> | 4327 | <source>TWITTER</source> |
4314 | <target state="new">TWITTER</target> | 4328 | <target state="new">TWITTER</target> |
4315 | 4329 | ||
4316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4317 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4331 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4318 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4332 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4319 | <target state="new"> | 4333 | <target state="new"> |
4320 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4334 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4321 | </target> | 4335 | </target> |
4322 | 4336 | ||
4323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4324 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4338 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4325 | <source>Your Twitter username</source> | 4339 | <source>Your Twitter username</source> |
4326 | <target>El teu nom d'usuari de Twitter</target> | 4340 | <target>El teu nom d'usuari de Twitter</target> |
4327 | 4341 | ||
4328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4329 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4343 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4330 | <source>Instance allowed by Twitter</source> | 4344 | <source>Instance allowed by Twitter</source> |
4331 | <target state="new">Instance allowed by Twitter</target> | 4345 | <target state="new">Instance allowed by Twitter</target> |
4332 | 4346 | ||
4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4334 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4348 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4335 | 4349 | ||
4336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4337 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4351 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4338 | <source>LIVE</source><target state="new">LIVE</target> | 4352 | <source>LIVE</source><target state="new">LIVE</target> |
4339 | 4353 | ||
4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4341 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4355 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4342 | 4356 | ||
4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4344 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4358 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4345 | 4359 | ||
4346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4347 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4361 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4348 | 4362 | ||
4349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4350 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4364 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4351 | 4365 | ||
4352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4353 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4367 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4354 | 4368 | ||
4355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4356 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4370 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4357 | <context-group purpose="location"> | 4371 | |
4358 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4359 | <context context-type="linenumber">751</context> | ||
4360 | </context-group> | ||
4361 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4362 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4373 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4363 | 4374 | ||
4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4365 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4376 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4366 | <context-group purpose="location"> | 4377 | |
4367 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4368 | <context context-type="linenumber">759</context> | ||
4369 | </context-group> | ||
4370 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4371 | <source>Max live duration</source><target state="new">Max live duration</target> | 4379 | <source>Max live duration</source><target state="new">Max live duration</target> |
4372 | 4380 | ||
4373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4374 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4382 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4375 | 4383 | ||
4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4377 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4385 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4378 | 4386 | ||
4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4380 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4388 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4381 | 4389 | ||
4382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4383 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4391 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4384 | 4392 | ||
4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4386 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4394 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4387 | 4395 | ||
4388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4389 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4397 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4390 | <context-group purpose="location"> | ||
4391 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4392 | <context context-type="linenumber">793</context> | ||
4393 | </context-group> | ||
4394 | <context-group purpose="location"> | ||
4395 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4396 | <context context-type="linenumber">935</context> | ||
4397 | </context-group> | ||
4398 | </trans-unit> | ||
4399 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4400 | <source>Services</source> | ||
4401 | <target>Serveis</target> | ||
4402 | 4398 | ||
4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4399 | |
4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4401 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4404 | <source>Live streaming</source><target state="new">Live streaming</target> | 4402 | <source>Live streaming</source><target state="new">Live streaming</target> |
4405 | 4403 | ||
4406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4407 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4405 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4408 | <source>TRANSCODING</source> | 4406 | <source>TRANSCODING</source> |
4409 | <target state="new">TRANSCODING</target> | 4407 | <target state="new">TRANSCODING</target> |
4410 | 4408 | ||
4411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4412 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4410 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4413 | <source> 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. </source> | 4411 | <source> 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. </source> |
4414 | <target state="new"> | 4412 | <target state="new"> |
@@ -4416,55 +4414,53 @@ The link will expire within 1 hour.</target> | |||
4416 | resources, this is a critical part of PeerTube, so tread carefully. | 4414 | resources, this is a critical part of PeerTube, so tread carefully. |
4417 | </target> | 4415 | </target> |
4418 | 4416 | ||
4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4420 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4418 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4421 | <source>Transcoding enabled</source> | 4419 | <source>Transcoding enabled</source> |
4422 | <target>Transcodificació activada</target> | 4420 | <target>Transcodificació activada</target> |
4423 | 4421 | ||
4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4425 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4423 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4426 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4424 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4427 | <target>Si desactives la transcodificació, molts vídeos dels teus usuaris no funcionaran!</target> | 4425 | <target>Si desactives la transcodificació, molts vídeos dels teus usuaris no funcionaran!</target> |
4428 | 4426 | ||
4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4428 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4429 | |||
4430 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4431 | |||
4432 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4433 | <context-group purpose="location"> | ||
4434 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4435 | <context context-type="linenumber">759,763</context> | ||
4436 | </context-group> | ||
4437 | </trans-unit> | ||
4430 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4438 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4431 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4439 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4432 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4440 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4433 | 4441 | ||
4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4435 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4443 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4436 | <source>Allow additional extensions</source> | 4444 | <source>Allow additional extensions</source> |
4437 | <target state="new">Allow additional extensions</target> | 4445 | <target state="new">Allow additional extensions</target> |
4438 | 4446 | ||
4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4440 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4448 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4441 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4449 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4442 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4450 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4443 | 4451 | ||
4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4445 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4453 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4446 | <source>Allow audio files upload</source> | 4454 | <source>Allow audio files upload</source> |
4447 | <target state="translated">Permet la pujada de fitxers d'àudio</target> | 4455 | <target state="translated">Permet la pujada de fitxers d'àudio</target> |
4448 | 4456 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4450 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4458 | |
4451 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4452 | <target state="new"> | ||
4453 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4454 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4455 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4456 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4457 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4458 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4459 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4460 | </target> | ||
4461 | |||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4463 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4459 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4464 | <source>WebTorrent support enabled</source> | 4460 | <source>WebTorrent support enabled</source> |
4465 | <target state="new">WebTorrent support enabled</target> | 4461 | <target state="new">WebTorrent support enabled</target> |
4466 | 4462 | ||
4467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4468 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4464 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4469 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4465 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4470 | <target state="new"> | 4466 | <target state="new"> |
@@ -4484,73 +4480,67 @@ The link will expire within 1 hour.</target> | |||
4484 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4480 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4485 | </target> | 4481 | </target> |
4486 | 4482 | ||
4487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4488 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4484 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4489 | <source>HLS with P2P support enabled</source> | 4485 | <source>HLS with P2P support enabled</source> |
4490 | <target state="new">HLS with P2P support enabled</target> | 4486 | <target state="new">HLS with P2P support enabled</target> |
4491 | 4487 | ||
4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4493 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4489 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4494 | <source>Transcoding threads</source> | 4490 | <source>Transcoding threads</source> |
4495 | <target>Subprocessos per la transcodificació</target> | 4491 | <target>Subprocessos per la transcodificació</target> |
4496 | 4492 | ||
4497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4498 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4494 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4499 | <source>Resolutions to generate</source> | 4495 | <source>Resolutions to generate</source> |
4500 | <target state="new">Resolutions to generate</target> | 4496 | <target state="new">Resolutions to generate</target> |
4501 | 4497 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4503 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4499 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4504 | <source>CACHE</source> | 4500 | <source>CACHE</source> |
4505 | <target state="new">CACHE</target> | 4501 | <target state="new">CACHE</target> |
4506 | 4502 | ||
4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4508 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4504 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4509 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4505 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4510 | <target state="new"> | 4506 | <target state="new"> |
4511 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4507 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4512 | </target> | 4508 | </target> |
4513 | 4509 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4515 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4511 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4516 | <source>Number of previews to keep in cache</source> | 4512 | <source>Number of previews to keep in cache</source> |
4517 | <target state="new">Number of previews to keep in cache</target> | 4513 | <target state="new">Number of previews to keep in cache</target> |
4518 | 4514 | ||
4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4520 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4516 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4521 | <context-group purpose="location"> | 4517 | |
4522 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4523 | <context context-type="linenumber">986</context> | ||
4524 | </context-group> | ||
4525 | </trans-unit> | ||
4526 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4519 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4527 | <source>Number of video captions to keep in cache</source> | 4520 | <source>Number of video captions to keep in cache</source> |
4528 | <target state="new">Number of video captions to keep in cache</target> | 4521 | <target state="new">Number of video captions to keep in cache</target> |
4529 | 4522 | ||
4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4531 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4524 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4532 | <context-group purpose="location"> | 4525 | |
4533 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4534 | <context context-type="linenumber">998</context> | ||
4535 | </context-group> | ||
4536 | </trans-unit> | ||
4537 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4527 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4538 | <source>CUSTOMIZATIONS</source> | 4528 | <source>CUSTOMIZATIONS</source> |
4539 | <target state="new">CUSTOMIZATIONS</target> | 4529 | <target state="new">CUSTOMIZATIONS</target> |
4540 | 4530 | ||
4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4542 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4532 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4543 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4533 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4544 | <target state="new"> | 4534 | <target state="new"> |
4545 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4535 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4546 | </target> | 4536 | </target> |
4547 | 4537 | ||
4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4549 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4539 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4550 | <source>JavaScript</source> | 4540 | <source>JavaScript</source> |
4551 | <target>JavaScript</target> | 4541 | <target>JavaScript</target> |
4552 | 4542 | ||
4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4554 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4544 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4555 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4545 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4556 | <target state="new"> | 4546 | <target state="new"> |
@@ -4560,7 +4550,7 @@ The link will expire within 1 hour.</target> | |||
4560 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4550 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4561 | </target> | 4551 | </target> |
4562 | 4552 | ||
4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4564 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4554 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4565 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4555 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4566 | color: red; | 4556 | color: red; |
@@ -4592,23 +4582,23 @@ The link will expire within 1 hour.</target> | |||
4592 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4582 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4593 | </target> | 4583 | </target> |
4594 | 4584 | ||
4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4596 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4586 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4597 | 4587 | ||
4598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4599 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4589 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4600 | 4590 | ||
4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4602 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4592 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4603 | <source>Advanced configuration</source> | 4593 | <source>Advanced configuration</source> |
4604 | <target>Configuració avançada</target> | 4594 | <target>Configuració avançada</target> |
4605 | 4595 | ||
4606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4607 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4597 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4608 | <source>Update configuration</source> | 4598 | <source>Update configuration</source> |
4609 | <target>Actualitza la configuració</target> | 4599 | <target>Actualitza la configuració</target> |
4610 | 4600 | ||
4611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4612 | 4602 | ||
4613 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4603 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4614 | <source>VIDEO SETTINGS</source> | 4604 | <source>VIDEO SETTINGS</source> |
@@ -7338,7 +7328,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7338 | <source>any language</source> | 7328 | <source>any language</source> |
7339 | <target state="new">any language</target> | 7329 | <target state="new">any language</target> |
7340 | 7330 | ||
7341 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7331 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7342 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7332 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7343 | 7333 | ||
7344 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7334 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7346,22 +7336,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7346 | <source>hide</source> | 7336 | <source>hide</source> |
7347 | <target state="new">hide</target> | 7337 | <target state="new">hide</target> |
7348 | 7338 | ||
7349 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7339 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7350 | <trans-unit id="8603861867909474404" datatype="html"> | 7340 | <trans-unit id="8603861867909474404" datatype="html"> |
7351 | <source>blur</source> | 7341 | <source>blur</source> |
7352 | <target state="new">blur</target> | 7342 | <target state="new">blur</target> |
7353 | 7343 | ||
7354 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7344 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7355 | <trans-unit id="4534458451100881847" datatype="html"> | 7345 | <trans-unit id="4534458451100881847" datatype="html"> |
7356 | <source>display</source> | 7346 | <source>display</source> |
7357 | <target state="new">display</target> | 7347 | <target state="new">display</target> |
7358 | 7348 | ||
7359 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7349 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7360 | <trans-unit id="4467323362722952678" datatype="html"> | 7350 | <trans-unit id="4467323362722952678" datatype="html"> |
7361 | <source>Unknown</source> | 7351 | <source>Unknown</source> |
7362 | <target state="new">Unknown</target> | 7352 | <target state="new">Unknown</target> |
7363 | 7353 | ||
7364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7354 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7365 | <trans-unit id="8781423666414310853"> | 7355 | <trans-unit id="8781423666414310853"> |
7366 | <source>Your password has been successfully reset!</source> | 7356 | <source>Your password has been successfully reset!</source> |
7367 | <target>La contrasenya s'ha restablit correctament!</target> | 7357 | <target>La contrasenya s'ha restablit correctament!</target> |
@@ -8373,13 +8363,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8373 | <source>Instance languages</source> | 8363 | <source>Instance languages</source> |
8374 | <target state="new">Instance languages</target> | 8364 | <target state="new">Instance languages</target> |
8375 | 8365 | ||
8376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8377 | <trans-unit id="40119547597591062" datatype="html"> | 8367 | <trans-unit id="40119547597591062" datatype="html"> |
8378 | <source>All languages</source> | 8368 | <source>All languages</source> |
8379 | <target state="new">All languages</target> | 8369 | <target state="new">All languages</target> |
8380 | 8370 | ||
8381 | 8371 | ||
8382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8383 | <trans-unit id="996392855508119363" datatype="html"> | 8373 | <trans-unit id="996392855508119363" datatype="html"> |
8384 | <source>Hidden</source> | 8374 | <source>Hidden</source> |
8385 | <target state="new">Hidden</target> | 8375 | <target state="new">Hidden</target> |
@@ -9149,7 +9139,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9149 | <source>Only users of this instance can see this video</source> | 9139 | <source>Only users of this instance can see this video</source> |
9150 | <target state="new">Only users of this instance can see this video</target> | 9140 | <target state="new">Only users of this instance can see this video</target> |
9151 | 9141 | ||
9152 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9143 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9144 | <context-group purpose="location"> | ||
9145 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9146 | <context context-type="linenumber">211</context> | ||
9147 | </context-group> | ||
9148 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9149 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9150 | <context-group purpose="location"> | ||
9151 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9152 | <context context-type="linenumber">214</context> | ||
9153 | </context-group> | ||
9154 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9153 | <source>Close</source><target state="new">Close</target> | 9155 | <source>Close</source><target state="new">Close</target> |
9154 | 9156 | ||
9155 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9157 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index 8aea37280..81b3f0b40 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf | |||
@@ -507,19 +507,27 @@ | |||
507 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 507 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
508 | </target> | 508 | </target> |
509 | 509 | ||
510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
511 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
512 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
513 | "/> </target> | ||
514 | <context-group purpose="location"> | ||
515 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
516 | <context context-type="linenumber">32,33</context> | ||
517 | </context-group> | ||
518 | </trans-unit> | ||
511 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 519 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
512 | <source>Blocked</source> | 520 | <source>Blocked</source> |
513 | <target state="new">Blocked</target> | 521 | <target state="new">Blocked</target> |
514 | 522 | ||
515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
516 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 524 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
517 | <source>Sensitive</source> | 525 | <source>Sensitive</source> |
518 | <target state="new"> | 526 | <target state="new"> |
519 | Sensitive | 527 | Sensitive |
520 | </target> | 528 | </target> |
521 | 529 | ||
522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
523 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 531 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
524 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 532 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
525 | <target>{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { | 533 | <target>{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { |
@@ -1361,13 +1369,7 @@ The link will expire within 1 hour.</target> | |||
1361 | <target state="new">Sensitive:</target> | 1369 | <target state="new">Sensitive:</target> |
1362 | 1370 | ||
1363 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1371 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1364 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1372 | |
1365 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1366 | <target state="new">Interface: | ||
1367 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1368 | </target> | ||
1369 | |||
1370 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1371 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1373 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1372 | <source>Help share videos</source> | 1374 | <source>Help share videos</source> |
1373 | <target state="new">Help share videos</target> | 1375 | <target state="new">Help share videos</target> |
@@ -1443,7 +1445,13 @@ The link will expire within 1 hour.</target> | |||
1443 | <source>Videos</source> | 1445 | <source>Videos</source> |
1444 | <target>Videa</target> | 1446 | <target>Videa</target> |
1445 | 1447 | ||
1446 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1448 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1449 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1450 | <context-group purpose="location"> | ||
1451 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1452 | <context context-type="linenumber">171</context> | ||
1453 | </context-group> | ||
1454 | </trans-unit> | ||
1447 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1455 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1448 | <source>Playlists</source> | 1456 | <source>Playlists</source> |
1449 | <target>Seznamy videí</target> | 1457 | <target>Seznamy videí</target> |
@@ -2072,12 +2080,12 @@ The link will expire within 1 hour.</target> | |||
2072 | <source>Scheduled</source> | 2080 | <source>Scheduled</source> |
2073 | <target state="new">Scheduled</target> | 2081 | <target state="new">Scheduled</target> |
2074 | 2082 | ||
2075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2076 | <trans-unit id="1435317307066082710" datatype="html"> | 2084 | <trans-unit id="1435317307066082710" datatype="html"> |
2077 | <source>Hide the video until a specific date</source> | 2085 | <source>Hide the video until a specific date</source> |
2078 | <target state="new">Hide the video until a specific date</target> | 2086 | <target state="new">Hide the video until a specific date</target> |
2079 | 2087 | ||
2080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2081 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2089 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2082 | <source>Video background image</source> | 2090 | <source>Video background image</source> |
2083 | <target state="new">Video background image</target> | 2091 | <target state="new">Video background image</target> |
@@ -2744,7 +2752,7 @@ The link will expire within 1 hour.</target> | |||
2744 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2752 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2745 | <context context-type="linenumber">8</context> | 2753 | <context context-type="linenumber">8</context> |
2746 | </context-group> | 2754 | </context-group> |
2747 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2755 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2748 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2756 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2749 | <context-group purpose="location"> | 2757 | <context-group purpose="location"> |
2750 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2758 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4381,12 +4389,18 @@ The link will expire within 1 hour.</target> | |||
4381 | <source>Basic configuration</source> | 4389 | <source>Basic configuration</source> |
4382 | <target>Základní nastavení</target> | 4390 | <target>Základní nastavení</target> |
4383 | 4391 | ||
4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4393 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4394 | <context-group purpose="location"> | ||
4395 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4396 | <context context-type="linenumber">700</context> | ||
4397 | </context-group> | ||
4398 | </trans-unit> | ||
4385 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4399 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4386 | <source>TWITTER</source> | 4400 | <source>TWITTER</source> |
4387 | <target state="new">TWITTER</target> | 4401 | <target state="new">TWITTER</target> |
4388 | 4402 | ||
4389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4390 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4404 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4391 | <source> | 4405 | <source> |
4392 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4406 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4395,95 +4409,79 @@ The link will expire within 1 hour.</target> | |||
4395 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4409 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4396 | </target> | 4410 | </target> |
4397 | 4411 | ||
4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4399 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4413 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4400 | <source>Your Twitter username</source> | 4414 | <source>Your Twitter username</source> |
4401 | <target>Váš účet na Twitteru</target> | 4415 | <target>Váš účet na Twitteru</target> |
4402 | 4416 | ||
4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4404 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4418 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4405 | <source>Instance allowed by Twitter</source> | 4419 | <source>Instance allowed by Twitter</source> |
4406 | <target state="new">Instance allowed by Twitter</target> | 4420 | <target state="new">Instance allowed by Twitter</target> |
4407 | 4421 | ||
4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4409 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4423 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4410 | 4424 | ||
4411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4412 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4426 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4413 | <source>LIVE</source><target state="new">LIVE</target> | 4427 | <source>LIVE</source><target state="new">LIVE</target> |
4414 | 4428 | ||
4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4416 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4430 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4417 | 4431 | ||
4418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4419 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4433 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4420 | 4434 | ||
4421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4422 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4436 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4423 | 4437 | ||
4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4425 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4439 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4426 | 4440 | ||
4427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4428 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4442 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4429 | 4443 | ||
4430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4431 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4445 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4432 | <context-group purpose="location"> | 4446 | |
4433 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4434 | <context context-type="linenumber">751</context> | ||
4435 | </context-group> | ||
4436 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4437 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4448 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4438 | 4449 | ||
4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4440 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4451 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4441 | <context-group purpose="location"> | 4452 | |
4442 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4443 | <context context-type="linenumber">759</context> | ||
4444 | </context-group> | ||
4445 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4446 | <source>Max live duration</source><target state="new">Max live duration</target> | 4454 | <source>Max live duration</source><target state="new">Max live duration</target> |
4447 | 4455 | ||
4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4449 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4457 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4450 | 4458 | ||
4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4452 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4460 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4453 | 4461 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4455 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4463 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4456 | 4464 | ||
4457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4458 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4466 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4459 | 4467 | ||
4460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4461 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4469 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4462 | 4470 | ||
4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4464 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4472 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4465 | <context-group purpose="location"> | ||
4466 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4467 | <context context-type="linenumber">793</context> | ||
4468 | </context-group> | ||
4469 | <context-group purpose="location"> | ||
4470 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4471 | <context context-type="linenumber">935</context> | ||
4472 | </context-group> | ||
4473 | </trans-unit> | ||
4474 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4475 | <source>Services</source> | ||
4476 | <target>Služby</target> | ||
4477 | 4473 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4474 | |
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4476 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4479 | <source>Live streaming</source><target state="new">Live streaming</target> | 4477 | <source>Live streaming</source><target state="new">Live streaming</target> |
4480 | 4478 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4482 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4480 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4483 | <source>TRANSCODING</source> | 4481 | <source>TRANSCODING</source> |
4484 | <target state="new">TRANSCODING</target> | 4482 | <target state="new">TRANSCODING</target> |
4485 | 4483 | ||
4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4487 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4485 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4488 | <source> 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. </source> | 4486 | <source> 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. </source> |
4489 | <target state="new"> | 4487 | <target state="new"> |
@@ -4491,55 +4489,53 @@ The link will expire within 1 hour.</target> | |||
4491 | resources, this is a critical part of PeerTube, so tread carefully. | 4489 | resources, this is a critical part of PeerTube, so tread carefully. |
4492 | </target> | 4490 | </target> |
4493 | 4491 | ||
4494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4495 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4493 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4496 | <source>Transcoding enabled</source> | 4494 | <source>Transcoding enabled</source> |
4497 | <target>Překódování povoleno</target> | 4495 | <target>Překódování povoleno</target> |
4498 | 4496 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4500 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4498 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4501 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4499 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4502 | <target>Pokud zakážete překódování, mnoho videí od vašich uživatelů nebude fungovat!</target> | 4500 | <target>Pokud zakážete překódování, mnoho videí od vašich uživatelů nebude fungovat!</target> |
4503 | 4501 | ||
4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4503 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4504 | |||
4505 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4506 | |||
4507 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4508 | <context-group purpose="location"> | ||
4509 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4510 | <context context-type="linenumber">759,763</context> | ||
4511 | </context-group> | ||
4512 | </trans-unit> | ||
4505 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4513 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4506 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4514 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4507 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4515 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4508 | 4516 | ||
4509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4510 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4518 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4511 | <source>Allow additional extensions</source> | 4519 | <source>Allow additional extensions</source> |
4512 | <target>Povolit dodatečné přípony</target> | 4520 | <target>Povolit dodatečné přípony</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4515 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4523 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4516 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4524 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4517 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4525 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4518 | 4526 | ||
4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4520 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 4528 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
4521 | <source>Allow audio files upload</source> | 4529 | <source>Allow audio files upload</source> |
4522 | <target>Umožnit upload audio souborů</target> | 4530 | <target>Umožnit upload audio souborů</target> |
4523 | 4531 | ||
4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4525 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4533 | |
4526 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4527 | <target state="new"> | ||
4528 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4529 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4530 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4531 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4532 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4533 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4534 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4535 | </target> | ||
4536 | |||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4538 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4534 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4539 | <source>WebTorrent support enabled</source> | 4535 | <source>WebTorrent support enabled</source> |
4540 | <target state="new">WebTorrent support enabled</target> | 4536 | <target state="new">WebTorrent support enabled</target> |
4541 | 4537 | ||
4542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4543 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4539 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4544 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4540 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4545 | <target state="new"> | 4541 | <target state="new"> |
@@ -4559,27 +4555,27 @@ The link will expire within 1 hour.</target> | |||
4559 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4555 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4560 | </target> | 4556 | </target> |
4561 | 4557 | ||
4562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4563 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4559 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4564 | <source>HLS with P2P support enabled</source> | 4560 | <source>HLS with P2P support enabled</source> |
4565 | <target state="new">HLS with P2P support enabled</target> | 4561 | <target state="new">HLS with P2P support enabled</target> |
4566 | 4562 | ||
4567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4568 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4564 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4569 | <source>Transcoding threads</source> | 4565 | <source>Transcoding threads</source> |
4570 | <target>Vlákna na překódování</target> | 4566 | <target>Vlákna na překódování</target> |
4571 | 4567 | ||
4572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4573 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4569 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4574 | <source>Resolutions to generate</source> | 4570 | <source>Resolutions to generate</source> |
4575 | <target state="new">Resolutions to generate</target> | 4571 | <target state="new">Resolutions to generate</target> |
4576 | 4572 | ||
4577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4578 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4574 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4579 | <source>CACHE</source> | 4575 | <source>CACHE</source> |
4580 | <target state="new">CACHE</target> | 4576 | <target state="new">CACHE</target> |
4581 | 4577 | ||
4582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4583 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4579 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4584 | <source> | 4580 | <source> |
4585 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4581 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4588,34 +4584,28 @@ The link will expire within 1 hour.</target> | |||
4588 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4584 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4589 | </target> | 4585 | </target> |
4590 | 4586 | ||
4591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4592 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4588 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4593 | <source>Number of previews to keep in cache</source> | 4589 | <source>Number of previews to keep in cache</source> |
4594 | <target state="new">Number of previews to keep in cache</target> | 4590 | <target state="new">Number of previews to keep in cache</target> |
4595 | 4591 | ||
4596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4597 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4593 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4598 | <context-group purpose="location"> | 4594 | |
4599 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4600 | <context context-type="linenumber">986</context> | ||
4601 | </context-group> | ||
4602 | </trans-unit> | ||
4603 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4596 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4604 | <source>Number of video captions to keep in cache</source> | 4597 | <source>Number of video captions to keep in cache</source> |
4605 | <target state="new">Number of video captions to keep in cache</target> | 4598 | <target state="new">Number of video captions to keep in cache</target> |
4606 | 4599 | ||
4607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4608 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4601 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4609 | <context-group purpose="location"> | 4602 | |
4610 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4611 | <context context-type="linenumber">998</context> | ||
4612 | </context-group> | ||
4613 | </trans-unit> | ||
4614 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4604 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4615 | <source>CUSTOMIZATIONS</source> | 4605 | <source>CUSTOMIZATIONS</source> |
4616 | <target state="new">CUSTOMIZATIONS</target> | 4606 | <target state="new">CUSTOMIZATIONS</target> |
4617 | 4607 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4619 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4609 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4620 | <source> | 4610 | <source> |
4621 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4611 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4624,12 +4614,12 @@ The link will expire within 1 hour.</target> | |||
4624 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4614 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4625 | </target> | 4615 | </target> |
4626 | 4616 | ||
4627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4628 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4618 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4629 | <source>JavaScript</source> | 4619 | <source>JavaScript</source> |
4630 | <target>JavaScript</target> | 4620 | <target>JavaScript</target> |
4631 | 4621 | ||
4632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4633 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4623 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4634 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4624 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4635 | <target state="new"> | 4625 | <target state="new"> |
@@ -4639,7 +4629,7 @@ The link will expire within 1 hour.</target> | |||
4639 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4629 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4640 | </target> | 4630 | </target> |
4641 | 4631 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4643 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4633 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4644 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4634 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4645 | color: red; | 4635 | color: red; |
@@ -4671,23 +4661,23 @@ The link will expire within 1 hour.</target> | |||
4671 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4661 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4672 | </target> | 4662 | </target> |
4673 | 4663 | ||
4674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4675 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4665 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4676 | 4666 | ||
4677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4678 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4668 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4679 | 4669 | ||
4680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4681 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4671 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4682 | <source>Advanced configuration</source> | 4672 | <source>Advanced configuration</source> |
4683 | <target>Pokročilá nastavení</target> | 4673 | <target>Pokročilá nastavení</target> |
4684 | 4674 | ||
4685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4686 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4676 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4687 | <source>Update configuration</source> | 4677 | <source>Update configuration</source> |
4688 | <target>Aktualizovat nastavení</target> | 4678 | <target>Aktualizovat nastavení</target> |
4689 | 4679 | ||
4690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4691 | 4681 | ||
4692 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4682 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4693 | <source>VIDEO SETTINGS</source> | 4683 | <source>VIDEO SETTINGS</source> |
@@ -7450,7 +7440,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7450 | <source>any language</source> | 7440 | <source>any language</source> |
7451 | <target state="new">any language</target> | 7441 | <target state="new">any language</target> |
7452 | 7442 | ||
7453 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7443 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7454 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7444 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7455 | 7445 | ||
7456 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7446 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7458,22 +7448,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7458 | <source>hide</source> | 7448 | <source>hide</source> |
7459 | <target state="new">hide</target> | 7449 | <target state="new">hide</target> |
7460 | 7450 | ||
7461 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7451 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7462 | <trans-unit id="8603861867909474404" datatype="html"> | 7452 | <trans-unit id="8603861867909474404" datatype="html"> |
7463 | <source>blur</source> | 7453 | <source>blur</source> |
7464 | <target state="new">blur</target> | 7454 | <target state="new">blur</target> |
7465 | 7455 | ||
7466 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7456 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7467 | <trans-unit id="4534458451100881847" datatype="html"> | 7457 | <trans-unit id="4534458451100881847" datatype="html"> |
7468 | <source>display</source> | 7458 | <source>display</source> |
7469 | <target state="new">display</target> | 7459 | <target state="new">display</target> |
7470 | 7460 | ||
7471 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7461 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7472 | <trans-unit id="4467323362722952678" datatype="html"> | 7462 | <trans-unit id="4467323362722952678" datatype="html"> |
7473 | <source>Unknown</source> | 7463 | <source>Unknown</source> |
7474 | <target state="new">Unknown</target> | 7464 | <target state="new">Unknown</target> |
7475 | 7465 | ||
7476 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7466 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7477 | <trans-unit id="8781423666414310853"> | 7467 | <trans-unit id="8781423666414310853"> |
7478 | <source>Your password has been successfully reset!</source> | 7468 | <source>Your password has been successfully reset!</source> |
7479 | <target>Vaše heslo bylo úspěšně resetováno!</target> | 7469 | <target>Vaše heslo bylo úspěšně resetováno!</target> |
@@ -8485,13 +8475,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8485 | <source>Instance languages</source> | 8475 | <source>Instance languages</source> |
8486 | <target state="new">Instance languages</target> | 8476 | <target state="new">Instance languages</target> |
8487 | 8477 | ||
8488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8489 | <trans-unit id="40119547597591062" datatype="html"> | 8479 | <trans-unit id="40119547597591062" datatype="html"> |
8490 | <source>All languages</source> | 8480 | <source>All languages</source> |
8491 | <target state="new">All languages</target> | 8481 | <target state="new">All languages</target> |
8492 | 8482 | ||
8493 | 8483 | ||
8494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8495 | <trans-unit id="996392855508119363" datatype="html"> | 8485 | <trans-unit id="996392855508119363" datatype="html"> |
8496 | <source>Hidden</source> | 8486 | <source>Hidden</source> |
8497 | <target state="new">Hidden</target> | 8487 | <target state="new">Hidden</target> |
@@ -9261,7 +9251,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9261 | <source>Only users of this instance can see this video</source> | 9251 | <source>Only users of this instance can see this video</source> |
9262 | <target state="new">Only users of this instance can see this video</target> | 9252 | <target state="new">Only users of this instance can see this video</target> |
9263 | 9253 | ||
9264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9254 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9255 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9256 | <context-group purpose="location"> | ||
9257 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9258 | <context context-type="linenumber">211</context> | ||
9259 | </context-group> | ||
9260 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9261 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9262 | <context-group purpose="location"> | ||
9263 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9264 | <context context-type="linenumber">214</context> | ||
9265 | </context-group> | ||
9266 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9265 | <source>Close</source><target state="new">Close</target> | 9267 | <source>Close</source><target state="new">Close</target> |
9266 | 9268 | ||
9267 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9269 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.da-DK.xlf b/client/src/locale/angular.da-DK.xlf index 818a3a0ca..7bb47b703 100644 --- a/client/src/locale/angular.da-DK.xlf +++ b/client/src/locale/angular.da-DK.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Sensitive | 540 | Sensitive |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 546 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1388,13 +1396,7 @@ The link will expire within 1 hour.</target> | |||
1388 | <target state="new">Sensitive:</target> | 1396 | <target state="new">Sensitive:</target> |
1389 | 1397 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1391 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1399 | |
1392 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1393 | <target state="new">Interface: | ||
1394 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1395 | </target> | ||
1396 | |||
1397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1398 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1400 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1399 | <source>Help share videos</source> | 1401 | <source>Help share videos</source> |
1400 | <target state="new">Help share videos</target> | 1402 | <target state="new">Help share videos</target> |
@@ -1470,7 +1472,13 @@ The link will expire within 1 hour.</target> | |||
1470 | <source>Videos</source> | 1472 | <source>Videos</source> |
1471 | <target>Videoer</target> | 1473 | <target>Videoer</target> |
1472 | 1474 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1476 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1479 | <context context-type="linenumber">171</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1474 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1482 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1475 | <source>Playlists</source> | 1483 | <source>Playlists</source> |
1476 | <target>Afspilningslister</target> | 1484 | <target>Afspilningslister</target> |
@@ -2105,12 +2113,12 @@ The link will expire within 1 hour.</target> | |||
2105 | <source>Scheduled</source> | 2113 | <source>Scheduled</source> |
2106 | <target state="new">Scheduled</target> | 2114 | <target state="new">Scheduled</target> |
2107 | 2115 | ||
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2109 | <trans-unit id="1435317307066082710" datatype="html"> | 2117 | <trans-unit id="1435317307066082710" datatype="html"> |
2110 | <source>Hide the video until a specific date</source> | 2118 | <source>Hide the video until a specific date</source> |
2111 | <target state="new">Hide the video until a specific date</target> | 2119 | <target state="new">Hide the video until a specific date</target> |
2112 | 2120 | ||
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2114 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2122 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2115 | <source>Video background image</source> | 2123 | <source>Video background image</source> |
2116 | <target state="new">Video background image</target> | 2124 | <target state="new">Video background image</target> |
@@ -2789,7 +2797,7 @@ The link will expire within 1 hour.</target> | |||
2789 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2797 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2790 | <context context-type="linenumber">8</context> | 2798 | <context context-type="linenumber">8</context> |
2791 | </context-group> | 2799 | </context-group> |
2792 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2800 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2793 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2801 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2794 | <context-group purpose="location"> | 2802 | <context-group purpose="location"> |
2795 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2803 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4432,12 +4440,18 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>Basic configuration</source> | 4440 | <source>Basic configuration</source> |
4433 | <target state="new">Basic configuration</target> | 4441 | <target state="new">Basic configuration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4444 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">700</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4436 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4450 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4437 | <source>TWITTER</source> | 4451 | <source>TWITTER</source> |
4438 | <target state="new">TWITTER</target> | 4452 | <target state="new">TWITTER</target> |
4439 | 4453 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4441 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4455 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4442 | <source> | 4456 | <source> |
4443 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4457 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4446,95 +4460,79 @@ The link will expire within 1 hour.</target> | |||
4446 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4460 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4447 | </target> | 4461 | </target> |
4448 | 4462 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4450 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4464 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4451 | <source>Your Twitter username</source> | 4465 | <source>Your Twitter username</source> |
4452 | <target state="new">Your Twitter username</target> | 4466 | <target state="new">Your Twitter username</target> |
4453 | 4467 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4455 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4469 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4456 | <source>Instance allowed by Twitter</source> | 4470 | <source>Instance allowed by Twitter</source> |
4457 | <target state="new">Instance allowed by Twitter</target> | 4471 | <target state="new">Instance allowed by Twitter</target> |
4458 | 4472 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4460 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4474 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4463 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4477 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4464 | <source>LIVE</source><target state="new">LIVE</target> | 4478 | <source>LIVE</source><target state="new">LIVE</target> |
4465 | 4479 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4467 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4481 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4468 | 4482 | ||
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4470 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4484 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4471 | 4485 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4473 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4487 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4474 | 4488 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4476 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4490 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4477 | 4491 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4479 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4493 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4480 | 4494 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4482 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4496 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4483 | <context-group purpose="location"> | 4497 | |
4484 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4485 | <context context-type="linenumber">751</context> | ||
4486 | </context-group> | ||
4487 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4488 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4499 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4489 | 4500 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4491 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4502 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4492 | <context-group purpose="location"> | 4503 | |
4493 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4494 | <context context-type="linenumber">759</context> | ||
4495 | </context-group> | ||
4496 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4497 | <source>Max live duration</source><target state="new">Max live duration</target> | 4505 | <source>Max live duration</source><target state="new">Max live duration</target> |
4498 | 4506 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4500 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4508 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4503 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4511 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4504 | 4512 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4506 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4514 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4507 | 4515 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4509 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4517 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4512 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4520 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4515 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4523 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">793</context> | ||
4519 | </context-group> | ||
4520 | <context-group purpose="location"> | ||
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4522 | <context context-type="linenumber">935</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4526 | <source>Services</source> | ||
4527 | <target>Tjenester</target> | ||
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4525 | |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4527 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4530 | <source>Live streaming</source><target state="new">Live streaming</target> | 4528 | <source>Live streaming</source><target state="new">Live streaming</target> |
4531 | 4529 | ||
4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4533 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4531 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4534 | <source>TRANSCODING</source> | 4532 | <source>TRANSCODING</source> |
4535 | <target state="new">TRANSCODING</target> | 4533 | <target state="new">TRANSCODING</target> |
4536 | 4534 | ||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4538 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4536 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4539 | <source> 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. </source> | 4537 | <source> 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. </source> |
4540 | <target state="new"> | 4538 | <target state="new"> |
@@ -4542,55 +4540,53 @@ The link will expire within 1 hour.</target> | |||
4542 | resources, this is a critical part of PeerTube, so tread carefully. | 4540 | resources, this is a critical part of PeerTube, so tread carefully. |
4543 | </target> | 4541 | </target> |
4544 | 4542 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4546 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4544 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4547 | <source>Transcoding enabled</source> | 4545 | <source>Transcoding enabled</source> |
4548 | <target>Omkodning aktiveret</target> | 4546 | <target>Omkodning aktiveret</target> |
4549 | 4547 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4551 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4549 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4552 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4550 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4553 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4551 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4554 | 4552 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4554 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4555 | |||
4556 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4557 | |||
4558 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4559 | <context-group purpose="location"> | ||
4560 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4561 | <context context-type="linenumber">759,763</context> | ||
4562 | </context-group> | ||
4563 | </trans-unit> | ||
4556 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4564 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4557 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4565 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4558 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4566 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4559 | 4567 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4561 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4569 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4562 | <source>Allow additional extensions</source> | 4570 | <source>Allow additional extensions</source> |
4563 | <target state="new">Allow additional extensions</target> | 4571 | <target state="new">Allow additional extensions</target> |
4564 | 4572 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4566 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4574 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4567 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4575 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4568 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4576 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4569 | 4577 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4571 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4579 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4572 | <source>Allow audio files upload</source> | 4580 | <source>Allow audio files upload</source> |
4573 | <target state="new">Allow audio files upload</target> | 4581 | <target state="new">Allow audio files upload</target> |
4574 | 4582 | ||
4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4576 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4584 | |
4577 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4578 | <target state="new"> | ||
4579 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4580 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4581 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4582 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4583 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4584 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4585 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4586 | </target> | ||
4587 | |||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4589 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4590 | <source>WebTorrent support enabled</source> | 4586 | <source>WebTorrent support enabled</source> |
4591 | <target state="new">WebTorrent support enabled</target> | 4587 | <target state="new">WebTorrent support enabled</target> |
4592 | 4588 | ||
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4594 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4595 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4596 | <target state="new"> | 4592 | <target state="new"> |
@@ -4610,27 +4606,27 @@ The link will expire within 1 hour.</target> | |||
4610 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4611 | </target> | 4607 | </target> |
4612 | 4608 | ||
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4614 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4615 | <source>HLS with P2P support enabled</source> | 4611 | <source>HLS with P2P support enabled</source> |
4616 | <target state="new">HLS with P2P support enabled</target> | 4612 | <target state="new">HLS with P2P support enabled</target> |
4617 | 4613 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4619 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4620 | <source>Transcoding threads</source> | 4616 | <source>Transcoding threads</source> |
4621 | <target state="new">Transcoding threads</target> | 4617 | <target state="new">Transcoding threads</target> |
4622 | 4618 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4624 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4625 | <source>Resolutions to generate</source> | 4621 | <source>Resolutions to generate</source> |
4626 | <target state="new">Resolutions to generate</target> | 4622 | <target state="new">Resolutions to generate</target> |
4627 | 4623 | ||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4629 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4630 | <source>CACHE</source> | 4626 | <source>CACHE</source> |
4631 | <target state="new">CACHE</target> | 4627 | <target state="new">CACHE</target> |
4632 | 4628 | ||
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4634 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4635 | <source> | 4631 | <source> |
4636 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4632 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4639,34 +4635,28 @@ The link will expire within 1 hour.</target> | |||
4639 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4635 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4640 | </target> | 4636 | </target> |
4641 | 4637 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4643 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4644 | <source>Number of previews to keep in cache</source> | 4640 | <source>Number of previews to keep in cache</source> |
4645 | <target state="new">Number of previews to keep in cache</target> | 4641 | <target state="new">Number of previews to keep in cache</target> |
4646 | 4642 | ||
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4649 | <context-group purpose="location"> | 4645 | |
4650 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4651 | <context context-type="linenumber">986</context> | ||
4652 | </context-group> | ||
4653 | </trans-unit> | ||
4654 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4647 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4655 | <source>Number of video captions to keep in cache</source> | 4648 | <source>Number of video captions to keep in cache</source> |
4656 | <target state="new">Number of video captions to keep in cache</target> | 4649 | <target state="new">Number of video captions to keep in cache</target> |
4657 | 4650 | ||
4658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4659 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4652 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4660 | <context-group purpose="location"> | 4653 | |
4661 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4662 | <context context-type="linenumber">998</context> | ||
4663 | </context-group> | ||
4664 | </trans-unit> | ||
4665 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4655 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4666 | <source>CUSTOMIZATIONS</source> | 4656 | <source>CUSTOMIZATIONS</source> |
4667 | <target state="new">CUSTOMIZATIONS</target> | 4657 | <target state="new">CUSTOMIZATIONS</target> |
4668 | 4658 | ||
4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4670 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4660 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4671 | <source> | 4661 | <source> |
4672 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4662 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4675,12 +4665,12 @@ The link will expire within 1 hour.</target> | |||
4675 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4665 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4676 | </target> | 4666 | </target> |
4677 | 4667 | ||
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4679 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4669 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4680 | <source>JavaScript</source> | 4670 | <source>JavaScript</source> |
4681 | <target>JavaScript</target> | 4671 | <target>JavaScript</target> |
4682 | 4672 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4684 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4674 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4685 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4675 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4686 | <target state="new"> | 4676 | <target state="new"> |
@@ -4690,7 +4680,7 @@ The link will expire within 1 hour.</target> | |||
4690 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4680 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4691 | </target> | 4681 | </target> |
4692 | 4682 | ||
4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4694 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4684 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4695 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4685 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4696 | color: red; | 4686 | color: red; |
@@ -4722,23 +4712,23 @@ The link will expire within 1 hour.</target> | |||
4722 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4712 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4723 | </target> | 4713 | </target> |
4724 | 4714 | ||
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4726 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4716 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4727 | 4717 | ||
4728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4729 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4719 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4730 | 4720 | ||
4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4732 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4722 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4733 | <source>Advanced configuration</source> | 4723 | <source>Advanced configuration</source> |
4734 | <target>Avanceret konfiguration</target> | 4724 | <target>Avanceret konfiguration</target> |
4735 | 4725 | ||
4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4737 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4727 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4738 | <source>Update configuration</source> | 4728 | <source>Update configuration</source> |
4739 | <target state="new">Update configuration</target> | 4729 | <target state="new">Update configuration</target> |
4740 | 4730 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4742 | 4732 | ||
4743 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4733 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4744 | <source>VIDEO SETTINGS</source> | 4734 | <source>VIDEO SETTINGS</source> |
@@ -7515,7 +7505,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7515 | <source>any language</source> | 7505 | <source>any language</source> |
7516 | <target state="new">any language</target> | 7506 | <target state="new">any language</target> |
7517 | 7507 | ||
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7519 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7509 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7523,22 +7513,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7523 | <source>hide</source> | 7513 | <source>hide</source> |
7524 | <target state="new">hide</target> | 7514 | <target state="new">hide</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7527 | <trans-unit id="8603861867909474404" datatype="html"> | 7517 | <trans-unit id="8603861867909474404" datatype="html"> |
7528 | <source>blur</source> | 7518 | <source>blur</source> |
7529 | <target state="new">blur</target> | 7519 | <target state="new">blur</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7532 | <trans-unit id="4534458451100881847" datatype="html"> | 7522 | <trans-unit id="4534458451100881847" datatype="html"> |
7533 | <source>display</source> | 7523 | <source>display</source> |
7534 | <target state="new">display</target> | 7524 | <target state="new">display</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7537 | <trans-unit id="4467323362722952678" datatype="html"> | 7527 | <trans-unit id="4467323362722952678" datatype="html"> |
7538 | <source>Unknown</source> | 7528 | <source>Unknown</source> |
7539 | <target state="new">Unknown</target> | 7529 | <target state="new">Unknown</target> |
7540 | 7530 | ||
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7542 | <trans-unit id="8781423666414310853" datatype="html"> | 7532 | <trans-unit id="8781423666414310853" datatype="html"> |
7543 | <source>Your password has been successfully reset!</source> | 7533 | <source>Your password has been successfully reset!</source> |
7544 | <target state="new">Your password has been successfully reset!</target> | 7534 | <target state="new">Your password has been successfully reset!</target> |
@@ -8549,13 +8539,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8549 | <source>Instance languages</source> | 8539 | <source>Instance languages</source> |
8550 | <target state="new">Instance languages</target> | 8540 | <target state="new">Instance languages</target> |
8551 | 8541 | ||
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8553 | <trans-unit id="40119547597591062" datatype="html"> | 8543 | <trans-unit id="40119547597591062" datatype="html"> |
8554 | <source>All languages</source> | 8544 | <source>All languages</source> |
8555 | <target state="new">All languages</target> | 8545 | <target state="new">All languages</target> |
8556 | 8546 | ||
8557 | 8547 | ||
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8559 | <trans-unit id="996392855508119363" datatype="html"> | 8549 | <trans-unit id="996392855508119363" datatype="html"> |
8560 | <source>Hidden</source> | 8550 | <source>Hidden</source> |
8561 | <target state="new">Hidden</target> | 8551 | <target state="new">Hidden</target> |
@@ -9330,7 +9320,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9330 | <source>Only users of this instance can see this video</source> | 9320 | <source>Only users of this instance can see this video</source> |
9331 | <target state="new">Only users of this instance can see this video</target> | 9321 | <target state="new">Only users of this instance can see this video</target> |
9332 | 9322 | ||
9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9324 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9327 | <context context-type="linenumber">211</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9330 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9333 | <context context-type="linenumber">214</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9334 | <source>Close</source><target state="new">Close</target> | 9336 | <source>Close</source><target state="new">Close</target> |
9335 | 9337 | ||
9336 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index 3d521fed8..005e36d6c 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf | |||
@@ -307,19 +307,27 @@ | |||
307 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 307 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
308 | <target state="translated">{VAR_PLURAL, plural, =1 {1 Aufruf} other {<x id="INTERPOLATION"/> Aufrufe}}</target> | 308 | <target state="translated">{VAR_PLURAL, plural, =1 {1 Aufruf} other {<x id="INTERPOLATION"/> Aufrufe}}</target> |
309 | 309 | ||
310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
311 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
312 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
313 | "/> </target> | ||
314 | <context-group purpose="location"> | ||
315 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
316 | <context context-type="linenumber">32,33</context> | ||
317 | </context-group> | ||
318 | </trans-unit> | ||
311 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 319 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
312 | <source>Blocked</source> | 320 | <source>Blocked</source> |
313 | <target state="translated">Blockiert</target> | 321 | <target state="translated">Blockiert</target> |
314 | 322 | ||
315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
316 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 324 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
317 | <source>Sensitive</source> | 325 | <source>Sensitive</source> |
318 | <target> | 326 | <target> |
319 | Anstößig | 327 | Anstößig |
320 | </target> | 328 | </target> |
321 | 329 | ||
322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
323 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 331 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
324 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 332 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
325 | <target>{VAR_PLURAL, plural, =0 {Keine Videos} =1 {1 Video} other {<x id="INTERPOLATION"/> Videos}}</target> | 333 | <target>{VAR_PLURAL, plural, =0 {Keine Videos} =1 {1 Video} other {<x id="INTERPOLATION"/> Videos}}</target> |
@@ -979,11 +987,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
979 | <target state="translated">Sensible Inhalte:</target> | 987 | <target state="translated">Sensible Inhalte:</target> |
980 | 988 | ||
981 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 989 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
982 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 990 | |
983 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
984 | <target state="translated">Interface: <x id="INTERPOLATION"/></target> | ||
985 | |||
986 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
987 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 991 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
988 | <source>Help share videos</source> | 992 | <source>Help share videos</source> |
989 | <target state="translated">Hilf bei der Weitergabe von Videos</target> | 993 | <target state="translated">Hilf bei der Weitergabe von Videos</target> |
@@ -1067,7 +1071,13 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1067 | <source>Videos</source> | 1071 | <source>Videos</source> |
1068 | <target>Videos</target> | 1072 | <target>Videos</target> |
1069 | 1073 | ||
1070 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1074 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1075 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1076 | <context-group purpose="location"> | ||
1077 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1078 | <context context-type="linenumber">171</context> | ||
1079 | </context-group> | ||
1080 | </trans-unit> | ||
1071 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1081 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1072 | <source>Playlists</source> | 1082 | <source>Playlists</source> |
1073 | <target>Playlists</target> | 1083 | <target>Playlists</target> |
@@ -1610,12 +1620,12 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1610 | <source>Scheduled</source> | 1620 | <source>Scheduled</source> |
1611 | <target>Geplante Veröffentlichung</target> | 1621 | <target>Geplante Veröffentlichung</target> |
1612 | 1622 | ||
1613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1614 | <trans-unit id="1435317307066082710" datatype="html"> | 1624 | <trans-unit id="1435317307066082710" datatype="html"> |
1615 | <source>Hide the video until a specific date</source> | 1625 | <source>Hide the video until a specific date</source> |
1616 | <target state="translated">Video bis zu einem bestimmten Datum verbergen</target> | 1626 | <target state="translated">Video bis zu einem bestimmten Datum verbergen</target> |
1617 | 1627 | ||
1618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1619 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 1629 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
1620 | <source>Video background image</source> | 1630 | <source>Video background image</source> |
1621 | <target>Videohintergrundbild</target> | 1631 | <target>Videohintergrundbild</target> |
@@ -2237,7 +2247,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2237 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2247 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2238 | <context context-type="linenumber">8</context> | 2248 | <context context-type="linenumber">8</context> |
2239 | </context-group> | 2249 | </context-group> |
2240 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2250 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2241 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2251 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2242 | <context-group purpose="location"> | 2252 | <context-group purpose="location"> |
2243 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2253 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3626,222 +3636,212 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3626 | <source>Basic configuration</source> | 3636 | <source>Basic configuration</source> |
3627 | <target>Grundlegende Einstellungen</target> | 3637 | <target>Grundlegende Einstellungen</target> |
3628 | 3638 | ||
3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3640 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3641 | <context-group purpose="location"> | ||
3642 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3643 | <context context-type="linenumber">700</context> | ||
3644 | </context-group> | ||
3645 | </trans-unit> | ||
3630 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3646 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3631 | <source>TWITTER</source> | 3647 | <source>TWITTER</source> |
3632 | <target state="translated">TWITTER</target> | 3648 | <target state="translated">TWITTER</target> |
3633 | 3649 | ||
3634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3635 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3651 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3636 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3652 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3637 | <target state="translated">Optional. Geben Sie, wenn vorhanden, den Twitteraccount, der Ihre Instanz repräsentiert, an, damit die Qualität von Linkvorschauen verbessert wird.</target> | 3653 | <target state="translated">Optional. Geben Sie, wenn vorhanden, den Twitteraccount, der Ihre Instanz repräsentiert, an, damit die Qualität von Linkvorschauen verbessert wird.</target> |
3638 | 3654 | ||
3639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3640 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3656 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3641 | <source>Your Twitter username</source> | 3657 | <source>Your Twitter username</source> |
3642 | <target>Dein Twitter-Benutzername</target> | 3658 | <target>Dein Twitter-Benutzername</target> |
3643 | 3659 | ||
3644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3645 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3661 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3646 | <source>Instance allowed by Twitter</source> | 3662 | <source>Instance allowed by Twitter</source> |
3647 | <target state="translated">Instanz von Twitter zugelassen</target> | 3663 | <target state="translated">Instanz von Twitter zugelassen</target> |
3648 | 3664 | ||
3649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3650 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3666 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3651 | 3667 | ||
3652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3653 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3669 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3654 | <source>LIVE</source><target state="new">LIVE</target> | 3670 | <source>LIVE</source><target state="new">LIVE</target> |
3655 | 3671 | ||
3656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3672 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3657 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 3673 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
3658 | 3674 | ||
3659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3660 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 3676 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3661 | 3677 | ||
3662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3663 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 3679 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
3664 | 3680 | ||
3665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3666 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 3682 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
3667 | 3683 | ||
3668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3669 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 3685 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
3670 | 3686 | ||
3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3672 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3688 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3673 | <context-group purpose="location"> | 3689 | |
3674 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3675 | <context context-type="linenumber">751</context> | ||
3676 | </context-group> | ||
3677 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
3678 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 3691 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
3679 | 3692 | ||
3680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3681 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3694 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3682 | <context-group purpose="location"> | 3695 | |
3683 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3684 | <context context-type="linenumber">759</context> | ||
3685 | </context-group> | ||
3686 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
3687 | <source>Max live duration</source><target state="new">Max live duration</target> | 3697 | <source>Max live duration</source><target state="new">Max live duration</target> |
3688 | 3698 | ||
3689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3690 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 3700 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
3691 | 3701 | ||
3692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3693 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 3703 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
3694 | 3704 | ||
3695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3696 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 3706 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
3697 | 3707 | ||
3698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3699 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 3709 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
3700 | 3710 | ||
3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3702 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 3712 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
3703 | 3713 | ||
3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3705 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3715 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3706 | <context-group purpose="location"> | ||
3707 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3708 | <context context-type="linenumber">793</context> | ||
3709 | </context-group> | ||
3710 | <context-group purpose="location"> | ||
3711 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3712 | <context context-type="linenumber">935</context> | ||
3713 | </context-group> | ||
3714 | </trans-unit> | ||
3715 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
3716 | <source>Services</source> | ||
3717 | <target>Dienste</target> | ||
3718 | 3716 | ||
3719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 3717 | |
3718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
3719 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
3720 | <source>Live streaming</source><target state="new">Live streaming</target> | 3720 | <source>Live streaming</source><target state="new">Live streaming</target> |
3721 | 3721 | ||
3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3723 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3723 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3724 | <source>TRANSCODING</source> | 3724 | <source>TRANSCODING</source> |
3725 | <target state="translated">TRANSKODIERUNG</target> | 3725 | <target state="translated">TRANSKODIERUNG</target> |
3726 | 3726 | ||
3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3728 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3728 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3729 | <source>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.</source> | 3729 | <source>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.</source> |
3730 | <target state="translated">Ein hochgeladenes Video so verarbeiten, dass es in einem für jedes Gerät abspielbaren Format vorliegt. Dies ist zwar ressourcenintensiv, jedoch auch ein wichtiger Teil von PeerTube. Wählen Sie mit Bedacht.</target> | 3730 | <target state="translated">Ein hochgeladenes Video so verarbeiten, dass es in einem für jedes Gerät abspielbaren Format vorliegt. Dies ist zwar ressourcenintensiv, jedoch auch ein wichtiger Teil von PeerTube. Wählen Sie mit Bedacht.</target> |
3731 | 3731 | ||
3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3733 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 3733 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
3734 | <source>Transcoding enabled</source> | 3734 | <source>Transcoding enabled</source> |
3735 | <target>Transkodierung an</target> | 3735 | <target>Transkodierung an</target> |
3736 | 3736 | ||
3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3738 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 3738 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
3739 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3739 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3740 | <target>Wenn du die Transkodierung abschaltest, werden viele Videos nicht laufen!</target> | 3740 | <target>Wenn du die Transkodierung abschaltest, werden viele Videos nicht laufen!</target> |
3741 | 3741 | ||
3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3743 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3744 | |||
3745 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3746 | |||
3747 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3748 | <context-group purpose="location"> | ||
3749 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3750 | <context context-type="linenumber">759,763</context> | ||
3751 | </context-group> | ||
3752 | </trans-unit> | ||
3743 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3753 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3744 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3754 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3745 | <target state="translated">Erlaube Nutzern das Hochladen von Videos als .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf oder .nut Datei.</target> | 3755 | <target state="translated">Erlaube Nutzern das Hochladen von Videos als .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf oder .nut Datei.</target> |
3746 | 3756 | ||
3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3748 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 3758 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
3749 | <source>Allow additional extensions</source> | 3759 | <source>Allow additional extensions</source> |
3750 | <target>Zusätzliche Erweiterungen zulassen</target> | 3760 | <target>Zusätzliche Erweiterungen zulassen</target> |
3751 | 3761 | ||
3752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3753 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3763 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3754 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3764 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3755 | <target state="translated">Erlaube Nutzern, Audiodateien hochzuladen, die als Bild automatisch beim Hochladen das Vorschaubild bekommen.</target> | 3765 | <target state="translated">Erlaube Nutzern, Audiodateien hochzuladen, die als Bild automatisch beim Hochladen das Vorschaubild bekommen.</target> |
3756 | 3766 | ||
3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3758 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 3768 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
3759 | <source>Allow audio files upload</source> | 3769 | <source>Allow audio files upload</source> |
3760 | <target>Das Hochladen von Audiodateien erlauben</target> | 3770 | <target>Das Hochladen von Audiodateien erlauben</target> |
3761 | 3771 | ||
3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3763 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3773 | |
3764 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3765 | <target state="translated"><x id="START_TAG_STRONG"/>Experimental, wir empfehlen, die Unterstützung für Webtorrents vorerst nicht zu deaktivieren <x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Falls sie zusätzlich noch die HLS Unterstützung aktiveiert haben, wird der Speicherverbrauch für Videos verdoppelt<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>Falls es deaktiviert wurde, brechen sie die Föderation mit PeerTube Instanzen < 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
3766 | |||
3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3768 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3774 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3769 | <source>WebTorrent support enabled</source> | 3775 | <source>WebTorrent support enabled</source> |
3770 | <target state="translated">WebTorrent Unterstützung aktiviert</target> | 3776 | <target state="translated">WebTorrent Unterstützung aktiviert</target> |
3771 | 3777 | ||
3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3773 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3779 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3774 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3780 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3775 | <target state="translated"><x id="START_TAG_STRONG"/>Benötigt ffmpeg >=4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Erzeugt HLS-Playlisten und fragmentiert MP4-Dateien, sodass die Wiedergabequalität steigt:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Auflösungswechsel erfolgt flüssiger<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Schnelleres Abspielen insbesondere langer Videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Stabileres Abspielen (weniger Bugs/unendliches Laden)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Wenn WebTorrent-Unterstützung aktiviert wird, wird der Videospeicher mit zwei multipliziert<x id="CLOSE_PARAGRAPH"/></target> | 3781 | <target state="translated"><x id="START_TAG_STRONG"/>Benötigt ffmpeg >=4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Erzeugt HLS-Playlisten und fragmentiert MP4-Dateien, sodass die Wiedergabequalität steigt:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Auflösungswechsel erfolgt flüssiger<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Schnelleres Abspielen insbesondere langer Videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Stabileres Abspielen (weniger Bugs/unendliches Laden)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Wenn WebTorrent-Unterstützung aktiviert wird, wird der Videospeicher mit zwei multipliziert<x id="CLOSE_PARAGRAPH"/></target> |
3776 | 3782 | ||
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3778 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3784 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3779 | <source>HLS with P2P support enabled</source> | 3785 | <source>HLS with P2P support enabled</source> |
3780 | <target state="translated">Aktiviere Unterstützung für HLS mit P2P</target> | 3786 | <target state="translated">Aktiviere Unterstützung für HLS mit P2P</target> |
3781 | 3787 | ||
3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3783 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 3789 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
3784 | <source>Transcoding threads</source> | 3790 | <source>Transcoding threads</source> |
3785 | <target>Transkodierungsthreads</target> | 3791 | <target>Transkodierungsthreads</target> |
3786 | 3792 | ||
3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3788 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3794 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3789 | <source>Resolutions to generate</source> | 3795 | <source>Resolutions to generate</source> |
3790 | <target state="translated">Zu erstellende Auflösungen</target> | 3796 | <target state="translated">Zu erstellende Auflösungen</target> |
3791 | 3797 | ||
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3793 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3799 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3794 | <source>CACHE</source> | 3800 | <source>CACHE</source> |
3795 | <target state="translated">CACHE</target> | 3801 | <target state="translated">CACHE</target> |
3796 | 3802 | ||
3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3798 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3804 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3799 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3805 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3800 | <target state="translated">Manche Dateien werden nicht föderiert sondern geladen, wenn sie benötigt werden. Bestimmen Sie das Cachingvorgehen.</target> | 3806 | <target state="translated">Manche Dateien werden nicht föderiert sondern geladen, wenn sie benötigt werden. Bestimmen Sie das Cachingvorgehen.</target> |
3801 | 3807 | ||
3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3803 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3809 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3804 | <source>Number of previews to keep in cache</source> | 3810 | <source>Number of previews to keep in cache</source> |
3805 | <target state="translated">Anzahl an Previews, die im Cache gehalten werden</target> | 3811 | <target state="translated">Anzahl an Previews, die im Cache gehalten werden</target> |
3806 | 3812 | ||
3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3808 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3814 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3809 | <context-group purpose="location"> | 3815 | |
3810 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3811 | <context context-type="linenumber">986</context> | ||
3812 | </context-group> | ||
3813 | </trans-unit> | ||
3814 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3817 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3815 | <source>Number of video captions to keep in cache</source> | 3818 | <source>Number of video captions to keep in cache</source> |
3816 | <target state="translated">Anzahl der gecacheten Untertitel</target> | 3819 | <target state="translated">Anzahl der gecacheten Untertitel</target> |
3817 | 3820 | ||
3818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3819 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3822 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3820 | <context-group purpose="location"> | 3823 | |
3821 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3822 | <context context-type="linenumber">998</context> | ||
3823 | </context-group> | ||
3824 | </trans-unit> | ||
3825 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3825 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3826 | <source>CUSTOMIZATIONS</source> | 3826 | <source>CUSTOMIZATIONS</source> |
3827 | <target state="translated">ANPASSUNGEN</target> | 3827 | <target state="translated">ANPASSUNGEN</target> |
3828 | 3828 | ||
3829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3830 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3830 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3831 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3831 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3832 | <target state="translated">Kleinere Veränderungen an der PeerTube-Instanz, falls ein Plug-In oder Theme übertrieben wäre.</target> | 3832 | <target state="translated">Kleinere Veränderungen an der PeerTube-Instanz, falls ein Plug-In oder Theme übertrieben wäre.</target> |
3833 | 3833 | ||
3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3835 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 3835 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
3836 | <source>JavaScript</source> | 3836 | <source>JavaScript</source> |
3837 | <target>JavaScript</target> | 3837 | <target>JavaScript</target> |
3838 | 3838 | ||
3839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3840 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3840 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3841 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3841 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3842 | <target state="translated">Direkter JavaScript-Code.<x id="LINE_BREAK"/>Beispiel: <x id="START_TAG_PRE"/>console.log('Meine Instanz ist toll');<x id="CLOSE_TAG_PRE"/></target> | 3842 | <target state="translated">Direkter JavaScript-Code.<x id="LINE_BREAK"/>Beispiel: <x id="START_TAG_PRE"/>console.log('Meine Instanz ist toll');<x id="CLOSE_TAG_PRE"/></target> |
3843 | 3843 | ||
3844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3845 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3845 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3846 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 3846 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3847 | color: red; | 3847 | color: red; |
@@ -3852,23 +3852,23 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3852 | <x id="CLOSE_TAG_PRE"/></source> | 3852 | <x id="CLOSE_TAG_PRE"/></source> |
3853 | <target state="translated">Schreiben sie CSS-Code direkt. Beispiel:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3853 | <target state="translated">Schreiben sie CSS-Code direkt. Beispiel:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3854 | 3854 | ||
3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3856 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 3856 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
3857 | 3857 | ||
3858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3859 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 3859 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
3860 | 3860 | ||
3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3862 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 3862 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
3863 | <source>Advanced configuration</source> | 3863 | <source>Advanced configuration</source> |
3864 | <target>Erweiterte Einstellungen</target> | 3864 | <target>Erweiterte Einstellungen</target> |
3865 | 3865 | ||
3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3867 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 3867 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
3868 | <source>Update configuration</source> | 3868 | <source>Update configuration</source> |
3869 | <target>Einstellungen aktualisieren</target> | 3869 | <target>Einstellungen aktualisieren</target> |
3870 | 3870 | ||
3871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3872 | 3872 | ||
3873 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3873 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3874 | <source>VIDEO SETTINGS</source> | 3874 | <source>VIDEO SETTINGS</source> |
@@ -6332,7 +6332,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6332 | <source>any language</source> | 6332 | <source>any language</source> |
6333 | <target state="translated">jede Sprache</target> | 6333 | <target state="translated">jede Sprache</target> |
6334 | 6334 | ||
6335 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6335 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6336 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6336 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6337 | 6337 | ||
6338 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6338 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6340,22 +6340,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6340 | <source>hide</source> | 6340 | <source>hide</source> |
6341 | <target state="translated">verstecken</target> | 6341 | <target state="translated">verstecken</target> |
6342 | 6342 | ||
6343 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6343 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6344 | <trans-unit id="8603861867909474404" datatype="html"> | 6344 | <trans-unit id="8603861867909474404" datatype="html"> |
6345 | <source>blur</source> | 6345 | <source>blur</source> |
6346 | <target state="translated">verwischen</target> | 6346 | <target state="translated">verwischen</target> |
6347 | 6347 | ||
6348 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6348 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6349 | <trans-unit id="4534458451100881847" datatype="html"> | 6349 | <trans-unit id="4534458451100881847" datatype="html"> |
6350 | <source>display</source> | 6350 | <source>display</source> |
6351 | <target state="translated">anzeigen</target> | 6351 | <target state="translated">anzeigen</target> |
6352 | 6352 | ||
6353 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6353 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6354 | <trans-unit id="4467323362722952678" datatype="html"> | 6354 | <trans-unit id="4467323362722952678" datatype="html"> |
6355 | <source>Unknown</source> | 6355 | <source>Unknown</source> |
6356 | <target state="translated">Unbekannt</target> | 6356 | <target state="translated">Unbekannt</target> |
6357 | 6357 | ||
6358 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6358 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6359 | <trans-unit id="8781423666414310853"> | 6359 | <trans-unit id="8781423666414310853"> |
6360 | <source>Your password has been successfully reset!</source> | 6360 | <source>Your password has been successfully reset!</source> |
6361 | <target>Dein Passwort wurde zurückgesetzt!</target> | 6361 | <target>Dein Passwort wurde zurückgesetzt!</target> |
@@ -7334,12 +7334,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7334 | <source>Instance languages</source> | 7334 | <source>Instance languages</source> |
7335 | <target state="translated">Instanzsprachen</target> | 7335 | <target state="translated">Instanzsprachen</target> |
7336 | 7336 | ||
7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7338 | <trans-unit id="40119547597591062" datatype="html"> | 7338 | <trans-unit id="40119547597591062" datatype="html"> |
7339 | <source>All languages</source> | 7339 | <source>All languages</source> |
7340 | <target state="translated">Alle Sprachen</target> | 7340 | <target state="translated">Alle Sprachen</target> |
7341 | 7341 | ||
7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7343 | <trans-unit id="996392855508119363"> | 7343 | <trans-unit id="996392855508119363"> |
7344 | <source>Hidden</source> | 7344 | <source>Hidden</source> |
7345 | <target>Versteckt</target> | 7345 | <target>Versteckt</target> |
@@ -8055,7 +8055,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8055 | <source>Only users of this instance can see this video</source> | 8055 | <source>Only users of this instance can see this video</source> |
8056 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> | 8056 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> |
8057 | 8057 | ||
8058 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8058 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8059 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8060 | <context-group purpose="location"> | ||
8061 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8062 | <context context-type="linenumber">211</context> | ||
8063 | </context-group> | ||
8064 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8065 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8066 | <context-group purpose="location"> | ||
8067 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8068 | <context context-type="linenumber">214</context> | ||
8069 | </context-group> | ||
8070 | </trans-unit> | ||
8059 | <trans-unit id="ngb.alert.close" datatype="html"> | 8071 | <trans-unit id="ngb.alert.close" datatype="html"> |
8060 | <source>Close</source> | 8072 | <source>Close</source> |
8061 | <target state="translated">Schließen</target> | 8073 | <target state="translated">Schließen</target> |
diff --git a/client/src/locale/angular.el-GR.xlf b/client/src/locale/angular.el-GR.xlf index 28cf8768d..a595f5c02 100644 --- a/client/src/locale/angular.el-GR.xlf +++ b/client/src/locale/angular.el-GR.xlf | |||
@@ -506,19 +506,27 @@ | |||
506 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 506 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
507 | </target> | 507 | </target> |
508 | 508 | ||
509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
510 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
511 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
512 | "/> </target> | ||
513 | <context-group purpose="location"> | ||
514 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
515 | <context context-type="linenumber">32,33</context> | ||
516 | </context-group> | ||
517 | </trans-unit> | ||
510 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 518 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
511 | <source>Blocked</source> | 519 | <source>Blocked</source> |
512 | <target state="new">Blocked</target> | 520 | <target state="new">Blocked</target> |
513 | 521 | ||
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
515 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 523 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
516 | <source>Sensitive</source> | 524 | <source>Sensitive</source> |
517 | <target> | 525 | <target> |
518 | Ευαίσθητο | 526 | Ευαίσθητο |
519 | </target> | 527 | </target> |
520 | 528 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
522 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 530 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
523 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 531 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
524 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 532 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1356,13 +1364,7 @@ The link will expire within 1 hour.</target> | |||
1356 | <target state="new">Sensitive:</target> | 1364 | <target state="new">Sensitive:</target> |
1357 | 1365 | ||
1358 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1359 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1367 | |
1360 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1361 | <target state="new">Interface: | ||
1362 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1363 | </target> | ||
1364 | |||
1365 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1366 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1368 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1367 | <source>Help share videos</source> | 1369 | <source>Help share videos</source> |
1368 | <target state="new">Help share videos</target> | 1370 | <target state="new">Help share videos</target> |
@@ -1438,7 +1440,13 @@ The link will expire within 1 hour.</target> | |||
1438 | <source>Videos</source> | 1440 | <source>Videos</source> |
1439 | <target>Βίντεο</target> | 1441 | <target>Βίντεο</target> |
1440 | 1442 | ||
1441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1443 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1444 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1445 | <context-group purpose="location"> | ||
1446 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1447 | <context context-type="linenumber">171</context> | ||
1448 | </context-group> | ||
1449 | </trans-unit> | ||
1442 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1450 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1443 | <source>Playlists</source> | 1451 | <source>Playlists</source> |
1444 | <target>Λίστες αναπαραγωγής</target> | 1452 | <target>Λίστες αναπαραγωγής</target> |
@@ -2061,12 +2069,12 @@ The link will expire within 1 hour.</target> | |||
2061 | <source>Scheduled</source> | 2069 | <source>Scheduled</source> |
2062 | <target>Προγραμματισμένο</target> | 2070 | <target>Προγραμματισμένο</target> |
2063 | 2071 | ||
2064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2065 | <trans-unit id="1435317307066082710" datatype="html"> | 2073 | <trans-unit id="1435317307066082710" datatype="html"> |
2066 | <source>Hide the video until a specific date</source> | 2074 | <source>Hide the video until a specific date</source> |
2067 | <target state="new">Hide the video until a specific date</target> | 2075 | <target state="new">Hide the video until a specific date</target> |
2068 | 2076 | ||
2069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2070 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 2078 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
2071 | <source>Video background image</source> | 2079 | <source>Video background image</source> |
2072 | <target>Εικόνα φόντου βίντεο</target> | 2080 | <target>Εικόνα φόντου βίντεο</target> |
@@ -2731,7 +2739,7 @@ The link will expire within 1 hour.</target> | |||
2731 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2739 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2732 | <context context-type="linenumber">8</context> | 2740 | <context context-type="linenumber">8</context> |
2733 | </context-group> | 2741 | </context-group> |
2734 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2742 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2735 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2743 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2736 | <context-group purpose="location"> | 2744 | <context-group purpose="location"> |
2737 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2745 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4359,107 +4367,97 @@ The link will expire within 1 hour.</target> | |||
4359 | <source>Basic configuration</source> | 4367 | <source>Basic configuration</source> |
4360 | <target>Βασικές ρυθμίσεις</target> | 4368 | <target>Βασικές ρυθμίσεις</target> |
4361 | 4369 | ||
4362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4371 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4372 | <context-group purpose="location"> | ||
4373 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4374 | <context context-type="linenumber">700</context> | ||
4375 | </context-group> | ||
4376 | </trans-unit> | ||
4363 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4377 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4364 | <source>TWITTER</source> | 4378 | <source>TWITTER</source> |
4365 | <target state="new">TWITTER</target> | 4379 | <target state="new">TWITTER</target> |
4366 | 4380 | ||
4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4368 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4382 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4369 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4383 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4370 | <target state="new"> | 4384 | <target state="new"> |
4371 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4385 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4372 | </target> | 4386 | </target> |
4373 | 4387 | ||
4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4375 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4389 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4376 | <source>Your Twitter username</source> | 4390 | <source>Your Twitter username</source> |
4377 | <target>Το όνομα χρήστη σας στο Twitter</target> | 4391 | <target>Το όνομα χρήστη σας στο Twitter</target> |
4378 | 4392 | ||
4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4380 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4394 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4381 | <source>Instance allowed by Twitter</source> | 4395 | <source>Instance allowed by Twitter</source> |
4382 | <target state="new">Instance allowed by Twitter</target> | 4396 | <target state="new">Instance allowed by Twitter</target> |
4383 | 4397 | ||
4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4385 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4399 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4386 | 4400 | ||
4387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4388 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4402 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4389 | <source>LIVE</source><target state="new">LIVE</target> | 4403 | <source>LIVE</source><target state="new">LIVE</target> |
4390 | 4404 | ||
4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4392 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4406 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4393 | 4407 | ||
4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4395 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4409 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4396 | 4410 | ||
4397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4398 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4412 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4399 | 4413 | ||
4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4401 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4415 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4402 | 4416 | ||
4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4404 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4418 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4405 | 4419 | ||
4406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4407 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4421 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4408 | <context-group purpose="location"> | 4422 | |
4409 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4410 | <context context-type="linenumber">751</context> | ||
4411 | </context-group> | ||
4412 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4413 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4424 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4414 | 4425 | ||
4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4416 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4427 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4417 | <context-group purpose="location"> | 4428 | |
4418 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4419 | <context context-type="linenumber">759</context> | ||
4420 | </context-group> | ||
4421 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4422 | <source>Max live duration</source><target state="new">Max live duration</target> | 4430 | <source>Max live duration</source><target state="new">Max live duration</target> |
4423 | 4431 | ||
4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4425 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4433 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4426 | 4434 | ||
4427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4428 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4436 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4429 | 4437 | ||
4430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4431 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4439 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4432 | 4440 | ||
4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4434 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4442 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4435 | 4443 | ||
4436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4437 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4445 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4438 | 4446 | ||
4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4440 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4448 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4441 | <context-group purpose="location"> | ||
4442 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4443 | <context context-type="linenumber">793</context> | ||
4444 | </context-group> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">935</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4450 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4451 | <source>Services</source> | ||
4452 | <target>Υπηρεσίες</target> | ||
4453 | 4449 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4450 | |
4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4452 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4455 | <source>Live streaming</source><target state="new">Live streaming</target> | 4453 | <source>Live streaming</source><target state="new">Live streaming</target> |
4456 | 4454 | ||
4457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4458 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4456 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4459 | <source>TRANSCODING</source> | 4457 | <source>TRANSCODING</source> |
4460 | <target state="new">TRANSCODING</target> | 4458 | <target state="new">TRANSCODING</target> |
4461 | 4459 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4463 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4461 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4464 | <source> 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. </source> | 4462 | <source> 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. </source> |
4465 | <target state="new"> | 4463 | <target state="new"> |
@@ -4467,55 +4465,53 @@ The link will expire within 1 hour.</target> | |||
4467 | resources, this is a critical part of PeerTube, so tread carefully. | 4465 | resources, this is a critical part of PeerTube, so tread carefully. |
4468 | </target> | 4466 | </target> |
4469 | 4467 | ||
4470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4471 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4469 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4472 | <source>Transcoding enabled</source> | 4470 | <source>Transcoding enabled</source> |
4473 | <target>Επανακωδικοποίηση ενεργή</target> | 4471 | <target>Επανακωδικοποίηση ενεργή</target> |
4474 | 4472 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4476 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4474 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4477 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4475 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4478 | <target>Αν απενεργοποιήσετε την επανακωδικοποίηση, πολλά βίντεο είναι πιθανό να μη λειτουργούν!</target> | 4476 | <target>Αν απενεργοποιήσετε την επανακωδικοποίηση, πολλά βίντεο είναι πιθανό να μη λειτουργούν!</target> |
4479 | 4477 | ||
4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4479 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4480 | |||
4481 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4482 | |||
4483 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4484 | <context-group purpose="location"> | ||
4485 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4486 | <context context-type="linenumber">759,763</context> | ||
4487 | </context-group> | ||
4488 | </trans-unit> | ||
4481 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4489 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4482 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4490 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4483 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4491 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4484 | 4492 | ||
4485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4486 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4494 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4487 | <source>Allow additional extensions</source> | 4495 | <source>Allow additional extensions</source> |
4488 | <target>Επιτρέπονται επιπλέον επεκτάσεις αρχείων</target> | 4496 | <target>Επιτρέπονται επιπλέον επεκτάσεις αρχείων</target> |
4489 | 4497 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4491 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4499 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4492 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4500 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4493 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4501 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4494 | 4502 | ||
4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4496 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 4504 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
4497 | <source>Allow audio files upload</source> | 4505 | <source>Allow audio files upload</source> |
4498 | <target>Να επιτρέπεται το ανέβασμα ηχητικών</target> | 4506 | <target>Να επιτρέπεται το ανέβασμα ηχητικών</target> |
4499 | 4507 | ||
4500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4501 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4509 | |
4502 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4503 | <target state="new"> | ||
4504 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4505 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4506 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4507 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4508 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4509 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4510 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4511 | </target> | ||
4512 | |||
4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4514 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4510 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4515 | <source>WebTorrent support enabled</source> | 4511 | <source>WebTorrent support enabled</source> |
4516 | <target state="new">WebTorrent support enabled</target> | 4512 | <target state="new">WebTorrent support enabled</target> |
4517 | 4513 | ||
4518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4519 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4515 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4520 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4516 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4521 | <target state="new"> | 4517 | <target state="new"> |
@@ -4535,73 +4531,67 @@ The link will expire within 1 hour.</target> | |||
4535 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4531 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4536 | </target> | 4532 | </target> |
4537 | 4533 | ||
4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4539 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4535 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4540 | <source>HLS with P2P support enabled</source> | 4536 | <source>HLS with P2P support enabled</source> |
4541 | <target state="new">HLS with P2P support enabled</target> | 4537 | <target state="new">HLS with P2P support enabled</target> |
4542 | 4538 | ||
4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4544 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4540 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4545 | <source>Transcoding threads</source> | 4541 | <source>Transcoding threads</source> |
4546 | <target>Νήματα επανακωδικοποίησης</target> | 4542 | <target>Νήματα επανακωδικοποίησης</target> |
4547 | 4543 | ||
4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4549 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4545 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4550 | <source>Resolutions to generate</source> | 4546 | <source>Resolutions to generate</source> |
4551 | <target state="new">Resolutions to generate</target> | 4547 | <target state="new">Resolutions to generate</target> |
4552 | 4548 | ||
4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4554 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4550 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4555 | <source>CACHE</source> | 4551 | <source>CACHE</source> |
4556 | <target state="new">CACHE</target> | 4552 | <target state="new">CACHE</target> |
4557 | 4553 | ||
4558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4559 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4555 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4560 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4556 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4561 | <target state="new"> | 4557 | <target state="new"> |
4562 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4558 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4563 | </target> | 4559 | </target> |
4564 | 4560 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4566 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4562 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4567 | <source>Number of previews to keep in cache</source> | 4563 | <source>Number of previews to keep in cache</source> |
4568 | <target state="new">Number of previews to keep in cache</target> | 4564 | <target state="new">Number of previews to keep in cache</target> |
4569 | 4565 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4571 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4567 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4572 | <context-group purpose="location"> | 4568 | |
4573 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4574 | <context context-type="linenumber">986</context> | ||
4575 | </context-group> | ||
4576 | </trans-unit> | ||
4577 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4570 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4578 | <source>Number of video captions to keep in cache</source> | 4571 | <source>Number of video captions to keep in cache</source> |
4579 | <target state="new">Number of video captions to keep in cache</target> | 4572 | <target state="new">Number of video captions to keep in cache</target> |
4580 | 4573 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4582 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4575 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4583 | <context-group purpose="location"> | 4576 | |
4584 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4585 | <context context-type="linenumber">998</context> | ||
4586 | </context-group> | ||
4587 | </trans-unit> | ||
4588 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4578 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4589 | <source>CUSTOMIZATIONS</source> | 4579 | <source>CUSTOMIZATIONS</source> |
4590 | <target state="new">CUSTOMIZATIONS</target> | 4580 | <target state="new">CUSTOMIZATIONS</target> |
4591 | 4581 | ||
4592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4593 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4583 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4594 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4584 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4595 | <target state="new"> | 4585 | <target state="new"> |
4596 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4586 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4597 | </target> | 4587 | </target> |
4598 | 4588 | ||
4599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4600 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4590 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4601 | <source>JavaScript</source> | 4591 | <source>JavaScript</source> |
4602 | <target>JavaScript</target> | 4592 | <target>JavaScript</target> |
4603 | 4593 | ||
4604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4605 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4595 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4606 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4596 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4607 | <target state="new"> | 4597 | <target state="new"> |
@@ -4611,7 +4601,7 @@ The link will expire within 1 hour.</target> | |||
4611 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4601 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4612 | </target> | 4602 | </target> |
4613 | 4603 | ||
4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4615 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4605 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4616 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4606 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4617 | color: red; | 4607 | color: red; |
@@ -4643,23 +4633,23 @@ The link will expire within 1 hour.</target> | |||
4643 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4633 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4644 | </target> | 4634 | </target> |
4645 | 4635 | ||
4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4647 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4637 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4648 | 4638 | ||
4649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4650 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4640 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4651 | 4641 | ||
4652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4653 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4643 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4654 | <source>Advanced configuration</source> | 4644 | <source>Advanced configuration</source> |
4655 | <target>Ρυθμίσεις για προχωρημένους</target> | 4645 | <target>Ρυθμίσεις για προχωρημένους</target> |
4656 | 4646 | ||
4657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4658 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4648 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4659 | <source>Update configuration</source> | 4649 | <source>Update configuration</source> |
4660 | <target>Ενημέρωση ρυθμίσεων</target> | 4650 | <target>Ενημέρωση ρυθμίσεων</target> |
4661 | 4651 | ||
4662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4663 | 4653 | ||
4664 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4654 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4665 | <source>VIDEO SETTINGS</source> | 4655 | <source>VIDEO SETTINGS</source> |
@@ -7400,7 +7390,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7400 | <source>any language</source> | 7390 | <source>any language</source> |
7401 | <target state="new">any language</target> | 7391 | <target state="new">any language</target> |
7402 | 7392 | ||
7403 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7393 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7404 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7394 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7405 | 7395 | ||
7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7396 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7408,22 +7398,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7408 | <source>hide</source> | 7398 | <source>hide</source> |
7409 | <target state="new">hide</target> | 7399 | <target state="new">hide</target> |
7410 | 7400 | ||
7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7401 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7412 | <trans-unit id="8603861867909474404" datatype="html"> | 7402 | <trans-unit id="8603861867909474404" datatype="html"> |
7413 | <source>blur</source> | 7403 | <source>blur</source> |
7414 | <target state="new">blur</target> | 7404 | <target state="new">blur</target> |
7415 | 7405 | ||
7416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7417 | <trans-unit id="4534458451100881847" datatype="html"> | 7407 | <trans-unit id="4534458451100881847" datatype="html"> |
7418 | <source>display</source> | 7408 | <source>display</source> |
7419 | <target state="new">display</target> | 7409 | <target state="new">display</target> |
7420 | 7410 | ||
7421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7422 | <trans-unit id="4467323362722952678" datatype="html"> | 7412 | <trans-unit id="4467323362722952678" datatype="html"> |
7423 | <source>Unknown</source> | 7413 | <source>Unknown</source> |
7424 | <target state="new">Unknown</target> | 7414 | <target state="new">Unknown</target> |
7425 | 7415 | ||
7426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7427 | <trans-unit id="8781423666414310853"> | 7417 | <trans-unit id="8781423666414310853"> |
7428 | <source>Your password has been successfully reset!</source> | 7418 | <source>Your password has been successfully reset!</source> |
7429 | <target>Ο κωδικός σας έχει ανανεωθεί με επιτυχία!</target> | 7419 | <target>Ο κωδικός σας έχει ανανεωθεί με επιτυχία!</target> |
@@ -8435,13 +8425,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8435 | <source>Instance languages</source> | 8425 | <source>Instance languages</source> |
8436 | <target state="new">Instance languages</target> | 8426 | <target state="new">Instance languages</target> |
8437 | 8427 | ||
8438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8439 | <trans-unit id="40119547597591062" datatype="html"> | 8429 | <trans-unit id="40119547597591062" datatype="html"> |
8440 | <source>All languages</source> | 8430 | <source>All languages</source> |
8441 | <target state="new">All languages</target> | 8431 | <target state="new">All languages</target> |
8442 | 8432 | ||
8443 | 8433 | ||
8444 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8445 | <trans-unit id="996392855508119363"> | 8435 | <trans-unit id="996392855508119363"> |
8446 | <source>Hidden</source> | 8436 | <source>Hidden</source> |
8447 | <target>Απόκρυψη</target> | 8437 | <target>Απόκρυψη</target> |
@@ -9211,7 +9201,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9211 | <source>Only users of this instance can see this video</source> | 9201 | <source>Only users of this instance can see this video</source> |
9212 | <target state="new">Only users of this instance can see this video</target> | 9202 | <target state="new">Only users of this instance can see this video</target> |
9213 | 9203 | ||
9214 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9204 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9205 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9206 | <context-group purpose="location"> | ||
9207 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9208 | <context context-type="linenumber">211</context> | ||
9209 | </context-group> | ||
9210 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9211 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9212 | <context-group purpose="location"> | ||
9213 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9214 | <context context-type="linenumber">214</context> | ||
9215 | </context-group> | ||
9216 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9215 | <source>Close</source><target state="new">Close</target> | 9217 | <source>Close</source><target state="new">Close</target> |
9216 | 9218 | ||
9217 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9219 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.en-GB.xlf b/client/src/locale/angular.en-GB.xlf index bcaeb0875..e013298d3 100644 --- a/client/src/locale/angular.en-GB.xlf +++ b/client/src/locale/angular.en-GB.xlf | |||
@@ -508,19 +508,27 @@ | |||
508 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 508 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
509 | </target> | 509 | </target> |
510 | 510 | ||
511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
512 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
513 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
514 | "/> </target> | ||
515 | <context-group purpose="location"> | ||
516 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
517 | <context context-type="linenumber">32,33</context> | ||
518 | </context-group> | ||
519 | </trans-unit> | ||
512 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 520 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
513 | <source>Blocked</source> | 521 | <source>Blocked</source> |
514 | <target state="new">Blocked</target> | 522 | <target state="new">Blocked</target> |
515 | 523 | ||
516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
517 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 525 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
518 | <source>Sensitive</source> | 526 | <source>Sensitive</source> |
519 | <target state="new"> | 527 | <target state="new"> |
520 | Sensitive | 528 | Sensitive |
521 | </target> | 529 | </target> |
522 | 530 | ||
523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 531 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
524 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 532 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
525 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 533 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
526 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 534 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1362,13 +1370,7 @@ The link will expire within 1 hour.</target> | |||
1362 | <target state="new">Sensitive:</target> | 1370 | <target state="new">Sensitive:</target> |
1363 | 1371 | ||
1364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1365 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1373 | |
1366 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1367 | <target state="new">Interface: | ||
1368 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1369 | </target> | ||
1370 | |||
1371 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1372 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1374 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1373 | <source>Help share videos</source> | 1375 | <source>Help share videos</source> |
1374 | <target state="new">Help share videos</target> | 1376 | <target state="new">Help share videos</target> |
@@ -1444,7 +1446,13 @@ The link will expire within 1 hour.</target> | |||
1444 | <source>Videos</source> | 1446 | <source>Videos</source> |
1445 | <target>Videos</target> | 1447 | <target>Videos</target> |
1446 | 1448 | ||
1447 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1450 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1451 | <context-group purpose="location"> | ||
1452 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1453 | <context context-type="linenumber">171</context> | ||
1454 | </context-group> | ||
1455 | </trans-unit> | ||
1448 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1456 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1449 | <source>Playlists</source> | 1457 | <source>Playlists</source> |
1450 | <target state="new">Playlists</target> | 1458 | <target state="new">Playlists</target> |
@@ -2067,12 +2075,12 @@ The link will expire within 1 hour.</target> | |||
2067 | <source>Scheduled</source> | 2075 | <source>Scheduled</source> |
2068 | <target>Scheduled</target> | 2076 | <target>Scheduled</target> |
2069 | 2077 | ||
2070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2071 | <trans-unit id="1435317307066082710" datatype="html"> | 2079 | <trans-unit id="1435317307066082710" datatype="html"> |
2072 | <source>Hide the video until a specific date</source> | 2080 | <source>Hide the video until a specific date</source> |
2073 | <target state="new">Hide the video until a specific date</target> | 2081 | <target state="new">Hide the video until a specific date</target> |
2074 | 2082 | ||
2075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2076 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2084 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2077 | <source>Video background image</source> | 2085 | <source>Video background image</source> |
2078 | <target state="new">Video background image</target> | 2086 | <target state="new">Video background image</target> |
@@ -2731,7 +2739,7 @@ The link will expire within 1 hour.</target> | |||
2731 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2739 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2732 | <context context-type="linenumber">8</context> | 2740 | <context context-type="linenumber">8</context> |
2733 | </context-group> | 2741 | </context-group> |
2734 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2742 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2735 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2743 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2736 | <context-group purpose="location"> | 2744 | <context-group purpose="location"> |
2737 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2745 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4368,12 +4376,18 @@ The link will expire within 1 hour.</target> | |||
4368 | <source>Basic configuration</source> | 4376 | <source>Basic configuration</source> |
4369 | <target>Basic configuration</target> | 4377 | <target>Basic configuration</target> |
4370 | 4378 | ||
4371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4380 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4381 | <context-group purpose="location"> | ||
4382 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4383 | <context context-type="linenumber">700</context> | ||
4384 | </context-group> | ||
4385 | </trans-unit> | ||
4372 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4386 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4373 | <source>TWITTER</source> | 4387 | <source>TWITTER</source> |
4374 | <target state="new">TWITTER</target> | 4388 | <target state="new">TWITTER</target> |
4375 | 4389 | ||
4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4377 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4391 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4378 | <source> | 4392 | <source> |
4379 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4393 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4382,95 +4396,79 @@ The link will expire within 1 hour.</target> | |||
4382 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4396 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4383 | </target> | 4397 | </target> |
4384 | 4398 | ||
4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4386 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4400 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4387 | <source>Your Twitter username</source> | 4401 | <source>Your Twitter username</source> |
4388 | <target>Your Twitter username</target> | 4402 | <target>Your Twitter username</target> |
4389 | 4403 | ||
4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4391 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4405 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4392 | <source>Instance allowed by Twitter</source> | 4406 | <source>Instance allowed by Twitter</source> |
4393 | <target state="new">Instance allowed by Twitter</target> | 4407 | <target state="new">Instance allowed by Twitter</target> |
4394 | 4408 | ||
4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4396 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4410 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4397 | 4411 | ||
4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4399 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4413 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4400 | <source>LIVE</source><target state="new">LIVE</target> | 4414 | <source>LIVE</source><target state="new">LIVE</target> |
4401 | 4415 | ||
4402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4403 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4417 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4404 | 4418 | ||
4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4406 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4420 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4407 | 4421 | ||
4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4409 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4423 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4410 | 4424 | ||
4411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4412 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4426 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4413 | 4427 | ||
4414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4415 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4429 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4416 | 4430 | ||
4417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4418 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4432 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4419 | <context-group purpose="location"> | 4433 | |
4420 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4421 | <context context-type="linenumber">751</context> | ||
4422 | </context-group> | ||
4423 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4424 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4435 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4425 | 4436 | ||
4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4427 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4438 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4428 | <context-group purpose="location"> | 4439 | |
4429 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4430 | <context context-type="linenumber">759</context> | ||
4431 | </context-group> | ||
4432 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4433 | <source>Max live duration</source><target state="new">Max live duration</target> | 4441 | <source>Max live duration</source><target state="new">Max live duration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4436 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4444 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4437 | 4445 | ||
4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4439 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4447 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4440 | 4448 | ||
4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4442 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4450 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4443 | 4451 | ||
4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4445 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4453 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4446 | 4454 | ||
4447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4448 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4456 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4449 | 4457 | ||
4450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4451 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4459 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4452 | <context-group purpose="location"> | ||
4453 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4454 | <context context-type="linenumber">793</context> | ||
4455 | </context-group> | ||
4456 | <context-group purpose="location"> | ||
4457 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4458 | <context context-type="linenumber">935</context> | ||
4459 | </context-group> | ||
4460 | </trans-unit> | ||
4461 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4462 | <source>Services</source> | ||
4463 | <target>Services</target> | ||
4464 | 4460 | ||
4465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4461 | |
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4463 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4466 | <source>Live streaming</source><target state="new">Live streaming</target> | 4464 | <source>Live streaming</source><target state="new">Live streaming</target> |
4467 | 4465 | ||
4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4469 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4467 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4470 | <source>TRANSCODING</source> | 4468 | <source>TRANSCODING</source> |
4471 | <target state="new">TRANSCODING</target> | 4469 | <target state="new">TRANSCODING</target> |
4472 | 4470 | ||
4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4474 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4472 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4475 | <source> 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. </source> | 4473 | <source> 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. </source> |
4476 | <target state="new"> | 4474 | <target state="new"> |
@@ -4478,55 +4476,53 @@ The link will expire within 1 hour.</target> | |||
4478 | resources, this is a critical part of PeerTube, so tread carefully. | 4476 | resources, this is a critical part of PeerTube, so tread carefully. |
4479 | </target> | 4477 | </target> |
4480 | 4478 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4482 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4480 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4483 | <source>Transcoding enabled</source> | 4481 | <source>Transcoding enabled</source> |
4484 | <target>Transcoding enabled</target> | 4482 | <target>Transcoding enabled</target> |
4485 | 4483 | ||
4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4487 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4485 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4488 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4486 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4489 | <target>If you disable transcoding, many videos from your users will not work!</target> | 4487 | <target>If you disable transcoding, many videos from your users will not work!</target> |
4490 | 4488 | ||
4491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4490 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4491 | |||
4492 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4493 | |||
4494 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4495 | <context-group purpose="location"> | ||
4496 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4497 | <context context-type="linenumber">759,763</context> | ||
4498 | </context-group> | ||
4499 | </trans-unit> | ||
4492 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4500 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4493 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4501 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4494 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4502 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4495 | 4503 | ||
4496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4497 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4505 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4498 | <source>Allow additional extensions</source> | 4506 | <source>Allow additional extensions</source> |
4499 | <target>Allow additional extensions</target> | 4507 | <target>Allow additional extensions</target> |
4500 | 4508 | ||
4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4502 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4510 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4503 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4511 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4504 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4512 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4505 | 4513 | ||
4506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4507 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4515 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4508 | <source>Allow audio files upload</source> | 4516 | <source>Allow audio files upload</source> |
4509 | <target state="new">Allow audio files upload</target> | 4517 | <target state="new">Allow audio files upload</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4512 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4520 | |
4513 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4514 | <target state="new"> | ||
4515 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4516 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4517 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4518 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4519 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4520 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4521 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4522 | </target> | ||
4523 | |||
4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4525 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4521 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4526 | <source>WebTorrent support enabled</source> | 4522 | <source>WebTorrent support enabled</source> |
4527 | <target state="new">WebTorrent support enabled</target> | 4523 | <target state="new">WebTorrent support enabled</target> |
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4530 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4526 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4531 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4527 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4532 | <target state="new"> | 4528 | <target state="new"> |
@@ -4546,27 +4542,27 @@ The link will expire within 1 hour.</target> | |||
4546 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4542 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4547 | </target> | 4543 | </target> |
4548 | 4544 | ||
4549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4550 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4546 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4551 | <source>HLS with P2P support enabled</source> | 4547 | <source>HLS with P2P support enabled</source> |
4552 | <target state="new">HLS with P2P support enabled</target> | 4548 | <target state="new">HLS with P2P support enabled</target> |
4553 | 4549 | ||
4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4555 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4551 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4556 | <source>Transcoding threads</source> | 4552 | <source>Transcoding threads</source> |
4557 | <target>Transcoding threads</target> | 4553 | <target>Transcoding threads</target> |
4558 | 4554 | ||
4559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4560 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4556 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4561 | <source>Resolutions to generate</source> | 4557 | <source>Resolutions to generate</source> |
4562 | <target state="new">Resolutions to generate</target> | 4558 | <target state="new">Resolutions to generate</target> |
4563 | 4559 | ||
4564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4565 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4561 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4566 | <source>CACHE</source> | 4562 | <source>CACHE</source> |
4567 | <target state="new">CACHE</target> | 4563 | <target state="new">CACHE</target> |
4568 | 4564 | ||
4569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4570 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4566 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4571 | <source> | 4567 | <source> |
4572 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4568 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4575,34 +4571,28 @@ The link will expire within 1 hour.</target> | |||
4575 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4571 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4576 | </target> | 4572 | </target> |
4577 | 4573 | ||
4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4579 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4575 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4580 | <source>Number of previews to keep in cache</source> | 4576 | <source>Number of previews to keep in cache</source> |
4581 | <target state="new">Number of previews to keep in cache</target> | 4577 | <target state="new">Number of previews to keep in cache</target> |
4582 | 4578 | ||
4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4584 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4580 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4585 | <context-group purpose="location"> | 4581 | |
4586 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4587 | <context context-type="linenumber">986</context> | ||
4588 | </context-group> | ||
4589 | </trans-unit> | ||
4590 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4583 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4591 | <source>Number of video captions to keep in cache</source> | 4584 | <source>Number of video captions to keep in cache</source> |
4592 | <target state="new">Number of video captions to keep in cache</target> | 4585 | <target state="new">Number of video captions to keep in cache</target> |
4593 | 4586 | ||
4594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4595 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4588 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4596 | <context-group purpose="location"> | 4589 | |
4597 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4598 | <context context-type="linenumber">998</context> | ||
4599 | </context-group> | ||
4600 | </trans-unit> | ||
4601 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4591 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4602 | <source>CUSTOMIZATIONS</source> | 4592 | <source>CUSTOMIZATIONS</source> |
4603 | <target state="new">CUSTOMIZATIONS</target> | 4593 | <target state="new">CUSTOMIZATIONS</target> |
4604 | 4594 | ||
4605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4606 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4596 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4607 | <source> | 4597 | <source> |
4608 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4598 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4611,12 +4601,12 @@ The link will expire within 1 hour.</target> | |||
4611 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4601 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4612 | </target> | 4602 | </target> |
4613 | 4603 | ||
4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4615 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4605 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4616 | <source>JavaScript</source> | 4606 | <source>JavaScript</source> |
4617 | <target>JavaScript</target> | 4607 | <target>JavaScript</target> |
4618 | 4608 | ||
4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4620 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4610 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4621 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4611 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4622 | <target state="new"> | 4612 | <target state="new"> |
@@ -4626,7 +4616,7 @@ The link will expire within 1 hour.</target> | |||
4626 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4616 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4627 | </target> | 4617 | </target> |
4628 | 4618 | ||
4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4630 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4620 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4631 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4621 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4632 | color: red; | 4622 | color: red; |
@@ -4658,23 +4648,23 @@ The link will expire within 1 hour.</target> | |||
4658 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4648 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4659 | </target> | 4649 | </target> |
4660 | 4650 | ||
4661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4662 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4652 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4663 | 4653 | ||
4664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4665 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4655 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4666 | 4656 | ||
4667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4668 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4658 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4669 | <source>Advanced configuration</source> | 4659 | <source>Advanced configuration</source> |
4670 | <target>Advanced configuration</target> | 4660 | <target>Advanced configuration</target> |
4671 | 4661 | ||
4672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4673 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4663 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4674 | <source>Update configuration</source> | 4664 | <source>Update configuration</source> |
4675 | <target>Update configuration</target> | 4665 | <target>Update configuration</target> |
4676 | 4666 | ||
4677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4678 | 4668 | ||
4679 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4669 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4680 | <source>VIDEO SETTINGS</source> | 4670 | <source>VIDEO SETTINGS</source> |
@@ -7425,7 +7415,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7425 | <source>any language</source> | 7415 | <source>any language</source> |
7426 | <target state="new">any language</target> | 7416 | <target state="new">any language</target> |
7427 | 7417 | ||
7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7429 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7419 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7430 | 7420 | ||
7431 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7433,22 +7423,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7433 | <source>hide</source> | 7423 | <source>hide</source> |
7434 | <target state="new">hide</target> | 7424 | <target state="new">hide</target> |
7435 | 7425 | ||
7436 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7437 | <trans-unit id="8603861867909474404" datatype="html"> | 7427 | <trans-unit id="8603861867909474404" datatype="html"> |
7438 | <source>blur</source> | 7428 | <source>blur</source> |
7439 | <target state="new">blur</target> | 7429 | <target state="new">blur</target> |
7440 | 7430 | ||
7441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7431 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7442 | <trans-unit id="4534458451100881847" datatype="html"> | 7432 | <trans-unit id="4534458451100881847" datatype="html"> |
7443 | <source>display</source> | 7433 | <source>display</source> |
7444 | <target state="new">display</target> | 7434 | <target state="new">display</target> |
7445 | 7435 | ||
7446 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7436 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7447 | <trans-unit id="4467323362722952678" datatype="html"> | 7437 | <trans-unit id="4467323362722952678" datatype="html"> |
7448 | <source>Unknown</source> | 7438 | <source>Unknown</source> |
7449 | <target state="new">Unknown</target> | 7439 | <target state="new">Unknown</target> |
7450 | 7440 | ||
7451 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7452 | <trans-unit id="8781423666414310853"> | 7442 | <trans-unit id="8781423666414310853"> |
7453 | <source>Your password has been successfully reset!</source> | 7443 | <source>Your password has been successfully reset!</source> |
7454 | <target>Your password has been successfully reset!</target> | 7444 | <target>Your password has been successfully reset!</target> |
@@ -8460,13 +8450,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8460 | <source>Instance languages</source> | 8450 | <source>Instance languages</source> |
8461 | <target state="new">Instance languages</target> | 8451 | <target state="new">Instance languages</target> |
8462 | 8452 | ||
8463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8464 | <trans-unit id="40119547597591062" datatype="html"> | 8454 | <trans-unit id="40119547597591062" datatype="html"> |
8465 | <source>All languages</source> | 8455 | <source>All languages</source> |
8466 | <target state="new">All languages</target> | 8456 | <target state="new">All languages</target> |
8467 | 8457 | ||
8468 | 8458 | ||
8469 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8470 | <trans-unit id="996392855508119363" datatype="html"> | 8460 | <trans-unit id="996392855508119363" datatype="html"> |
8471 | <source>Hidden</source> | 8461 | <source>Hidden</source> |
8472 | <target state="new">Hidden</target> | 8462 | <target state="new">Hidden</target> |
@@ -9236,7 +9226,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9236 | <source>Only users of this instance can see this video</source> | 9226 | <source>Only users of this instance can see this video</source> |
9237 | <target state="new">Only users of this instance can see this video</target> | 9227 | <target state="new">Only users of this instance can see this video</target> |
9238 | 9228 | ||
9239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9230 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9231 | <context-group purpose="location"> | ||
9232 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9233 | <context context-type="linenumber">211</context> | ||
9234 | </context-group> | ||
9235 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9236 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9237 | <context-group purpose="location"> | ||
9238 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9239 | <context context-type="linenumber">214</context> | ||
9240 | </context-group> | ||
9241 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9240 | <source>Close</source><target state="new">Close</target> | 9242 | <source>Close</source><target state="new">Close</target> |
9241 | 9243 | ||
9242 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9244 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.en-US.xlf b/client/src/locale/angular.en-US.xlf index edfcbeab6..cd40b1fef 100644 --- a/client/src/locale/angular.en-US.xlf +++ b/client/src/locale/angular.en-US.xlf | |||
@@ -383,19 +383,27 @@ | |||
383 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 383 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
384 | <target state="final">{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</target> | 384 | <target state="final">{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</target> |
385 | 385 | ||
386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
387 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
388 | "/> </source><target state="final"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
389 | "/> </target> | ||
390 | <context-group purpose="location"> | ||
391 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
392 | <context context-type="linenumber">32,33</context> | ||
393 | </context-group> | ||
394 | </trans-unit> | ||
387 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 395 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
388 | <source>Blocked</source> | 396 | <source>Blocked</source> |
389 | <target state="final">Blocked</target> | 397 | <target state="final">Blocked</target> |
390 | 398 | ||
391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
392 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 400 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
393 | <source>Sensitive</source> | 401 | <source>Sensitive</source> |
394 | <target> | 402 | <target> |
395 | Sensitive | 403 | Sensitive |
396 | </target> | 404 | </target> |
397 | 405 | ||
398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
399 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 407 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
400 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 408 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
401 | <target state="final">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</target> | 409 | <target state="final">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</target> |
@@ -1138,11 +1146,7 @@ The link will expire within 1 hour.</target> | |||
1138 | <target state="final">Sensitive:</target> | 1146 | <target state="final">Sensitive:</target> |
1139 | 1147 | ||
1140 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1148 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1141 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1149 | |
1142 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1143 | <target state="final">Interface: <x id="INTERPOLATION"/></target> | ||
1144 | |||
1145 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1146 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1150 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1147 | <source>Help share videos</source> | 1151 | <source>Help share videos</source> |
1148 | <target state="final">Help share videos</target> | 1152 | <target state="final">Help share videos</target> |
@@ -1218,7 +1222,13 @@ The link will expire within 1 hour.</target> | |||
1218 | <source>Videos</source> | 1222 | <source>Videos</source> |
1219 | <target state="final">Videos</target> | 1223 | <target state="final">Videos</target> |
1220 | 1224 | ||
1221 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1225 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1226 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="final">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1227 | <context-group purpose="location"> | ||
1228 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1229 | <context context-type="linenumber">171</context> | ||
1230 | </context-group> | ||
1231 | </trans-unit> | ||
1222 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1232 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1223 | <source>Playlists</source> | 1233 | <source>Playlists</source> |
1224 | <target state="final">Playlists</target> | 1234 | <target state="final">Playlists</target> |
@@ -1831,12 +1841,12 @@ The link will expire within 1 hour.</target> | |||
1831 | <source>Scheduled</source> | 1841 | <source>Scheduled</source> |
1832 | <target state="final">Scheduled</target> | 1842 | <target state="final">Scheduled</target> |
1833 | 1843 | ||
1834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1835 | <trans-unit id="1435317307066082710" datatype="html"> | 1845 | <trans-unit id="1435317307066082710" datatype="html"> |
1836 | <source>Hide the video until a specific date</source> | 1846 | <source>Hide the video until a specific date</source> |
1837 | <target state="final">Hide the video until a specific date</target> | 1847 | <target state="final">Hide the video until a specific date</target> |
1838 | 1848 | ||
1839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1840 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1850 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1841 | <source>Video background image</source> | 1851 | <source>Video background image</source> |
1842 | <target state="final">Video background image</target> | 1852 | <target state="final">Video background image</target> |
@@ -2453,7 +2463,7 @@ The link will expire within 1 hour.</target> | |||
2453 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2463 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2454 | <context context-type="linenumber">8</context> | 2464 | <context context-type="linenumber">8</context> |
2455 | </context-group> | 2465 | </context-group> |
2456 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2466 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2457 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="final"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2467 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="final"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2458 | <context-group purpose="location"> | 2468 | <context-group purpose="location"> |
2459 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2469 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3959,12 +3969,18 @@ The link will expire within 1 hour.</target> | |||
3959 | <source>Basic configuration</source> | 3969 | <source>Basic configuration</source> |
3960 | <target state="final">Basic configuration</target> | 3970 | <target state="final">Basic configuration</target> |
3961 | 3971 | ||
3962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3973 | <source>Transcoding</source><target state="final">Transcoding</target> | ||
3974 | <context-group purpose="location"> | ||
3975 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3976 | <context context-type="linenumber">700</context> | ||
3977 | </context-group> | ||
3978 | </trans-unit> | ||
3963 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3979 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3964 | <source>TWITTER</source> | 3980 | <source>TWITTER</source> |
3965 | <target state="final">TWITTER</target> | 3981 | <target state="final">TWITTER</target> |
3966 | 3982 | ||
3967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3968 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3984 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3969 | <source> | 3985 | <source> |
3970 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 3986 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -3973,165 +3989,155 @@ The link will expire within 1 hour.</target> | |||
3973 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 3989 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
3974 | </target> | 3990 | </target> |
3975 | 3991 | ||
3976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3977 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 3993 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
3978 | <source>Your Twitter username</source> | 3994 | <source>Your Twitter username</source> |
3979 | <target state="final">Your Twitter username</target> | 3995 | <target state="final">Your Twitter username</target> |
3980 | 3996 | ||
3981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3982 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3998 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3983 | <source>Instance allowed by Twitter</source> | 3999 | <source>Instance allowed by Twitter</source> |
3984 | <target state="final">Instance allowed by Twitter</target> | 4000 | <target state="final">Instance allowed by Twitter</target> |
3985 | 4001 | ||
3986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3987 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="final"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4003 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="final"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3988 | 4004 | ||
3989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3990 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4006 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3991 | <source>LIVE</source><target state="final">LIVE</target> | 4007 | <source>LIVE</source><target state="final">LIVE</target> |
3992 | 4008 | ||
3993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4009 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3994 | <source> Enable users of your instance to stream live. </source><target state="final"> Enable users of your instance to stream live. </target> | 4010 | <source> Enable users of your instance to stream live. </source><target state="final"> Enable users of your instance to stream live. </target> |
3995 | 4011 | ||
3996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3997 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="final"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4013 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="final"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3998 | 4014 | ||
3999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4000 | <source>Allow your users to automatically publish a replay of their live</source><target state="final">Allow your users to automatically publish a replay of their live</target> | 4016 | <source>Allow your users to automatically publish a replay of their live</source><target state="final">Allow your users to automatically publish a replay of their live</target> |
4001 | 4017 | ||
4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4003 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="final"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4019 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="final"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4004 | 4020 | ||
4005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4006 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="final">Max lives created on your instance (-1 for "unlimited")</target> | 4022 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="final">Max lives created on your instance (-1 for "unlimited")</target> |
4007 | 4023 | ||
4008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4009 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="final">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4025 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="final">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4010 | <context-group purpose="location"> | 4026 | |
4011 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4012 | <context context-type="linenumber">751</context> | ||
4013 | </context-group> | ||
4014 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4015 | <source>Max lives created per user (-1 for "unlimited")</source><target state="final">Max lives created per user (-1 for "unlimited")</target> | 4028 | <source>Max lives created per user (-1 for "unlimited")</source><target state="final">Max lives created per user (-1 for "unlimited")</target> |
4016 | 4029 | ||
4017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4018 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="final">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4031 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="final">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4019 | <context-group purpose="location"> | 4032 | |
4020 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4021 | <context context-type="linenumber">759</context> | ||
4022 | </context-group> | ||
4023 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4024 | <source>Max live duration</source><target state="final">Max live duration</target> | 4034 | <source>Max live duration</source><target state="final">Max live duration</target> |
4025 | 4035 | ||
4026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4027 | <source>Enable live transcoding</source><target state="final">Enable live transcoding</target> | 4037 | <source>Enable live transcoding</source><target state="final">Enable live transcoding</target> |
4028 | 4038 | ||
4029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4030 | <source> Requires a lot of CPU! </source><target state="final"> Requires a lot of CPU! </target> | 4040 | <source> Requires a lot of CPU! </source><target state="final"> Requires a lot of CPU! </target> |
4031 | 4041 | ||
4032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4033 | <source>Live transcoding threads</source><target state="final">Live transcoding threads</target> | 4043 | <source>Live transcoding threads</source><target state="final">Live transcoding threads</target> |
4034 | 4044 | ||
4035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4036 | <source>Live resolutions to generate</source><target state="final">Live resolutions to generate</target> | 4046 | <source>Live resolutions to generate</source><target state="final">Live resolutions to generate</target> |
4037 | 4047 | ||
4038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4039 | <source>Allow live streaming</source><target state="final">Allow live streaming</target> | 4049 | <source>Allow live streaming</source><target state="final">Allow live streaming</target> |
4040 | 4050 | ||
4041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4042 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="final">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4052 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="final">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4043 | <context-group purpose="location"> | ||
4044 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4045 | <context context-type="linenumber">793</context> | ||
4046 | </context-group> | ||
4047 | <context-group purpose="location"> | ||
4048 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4049 | <context context-type="linenumber">935</context> | ||
4050 | </context-group> | ||
4051 | </trans-unit> | ||
4052 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4053 | <source>Services</source> | ||
4054 | <target state="final">Services</target> | ||
4055 | 4053 | ||
4056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4054 | |
4055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4056 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4057 | <source>Live streaming</source><target state="final">Live streaming</target> | 4057 | <source>Live streaming</source><target state="final">Live streaming</target> |
4058 | 4058 | ||
4059 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4059 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4060 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4060 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4061 | <source>TRANSCODING</source> | 4061 | <source>TRANSCODING</source> |
4062 | <target state="final">TRANSCODING</target> | 4062 | <target state="final">TRANSCODING</target> |
4063 | 4063 | ||
4064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4065 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4065 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4066 | <source> 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. </source> | 4066 | <source> 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. </source> |
4067 | <target state="final"> 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. </target> | 4067 | <target state="final"> 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. </target> |
4068 | 4068 | ||
4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4070 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4070 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4071 | <source>Transcoding enabled</source> | 4071 | <source>Transcoding enabled</source> |
4072 | <target state="final">Transcoding enabled</target> | 4072 | <target state="final">Transcoding enabled</target> |
4073 | 4073 | ||
4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4075 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4075 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4076 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4076 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4077 | <target state="final">If you disable transcoding, many videos from your users will not work!</target> | 4077 | <target state="final">If you disable transcoding, many videos from your users will not work!</target> |
4078 | 4078 | ||
4079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4080 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4081 | |||
4082 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="final"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4083 | |||
4084 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4085 | <context-group purpose="location"> | ||
4086 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4087 | <context context-type="linenumber">759,763</context> | ||
4088 | </context-group> | ||
4089 | </trans-unit> | ||
4080 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4090 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4081 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4091 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4082 | <target state="final">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4092 | <target state="final">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4083 | 4093 | ||
4084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4085 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4095 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4086 | <source>Allow additional extensions</source> | 4096 | <source>Allow additional extensions</source> |
4087 | <target state="final">Allow additional extensions</target> | 4097 | <target state="final">Allow additional extensions</target> |
4088 | 4098 | ||
4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4090 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4100 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4091 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4101 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4092 | <target state="final">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4102 | <target state="final">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4093 | 4103 | ||
4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4095 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4105 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4096 | <source>Allow audio files upload</source> | 4106 | <source>Allow audio files upload</source> |
4097 | <target state="final">Allow audio files upload</target> | 4107 | <target state="final">Allow audio files upload</target> |
4098 | 4108 | ||
4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4100 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4110 | |
4101 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4102 | <target state="final"><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
4103 | |||
4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4105 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4111 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4106 | <source>WebTorrent support enabled</source> | 4112 | <source>WebTorrent support enabled</source> |
4107 | <target state="final">WebTorrent support enabled</target> | 4113 | <target state="final">WebTorrent support enabled</target> |
4108 | 4114 | ||
4109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4110 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4116 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4111 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4117 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4112 | <target state="final"><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></target> | 4118 | <target state="final"><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></target> |
4113 | 4119 | ||
4114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4115 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4121 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4116 | <source>HLS with P2P support enabled</source> | 4122 | <source>HLS with P2P support enabled</source> |
4117 | <target state="final">HLS with P2P support enabled</target> | 4123 | <target state="final">HLS with P2P support enabled</target> |
4118 | 4124 | ||
4119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4120 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4126 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4121 | <source>Transcoding threads</source> | 4127 | <source>Transcoding threads</source> |
4122 | <target state="final">Transcoding threads</target> | 4128 | <target state="final">Transcoding threads</target> |
4123 | 4129 | ||
4124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4125 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4131 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4126 | <source>Resolutions to generate</source> | 4132 | <source>Resolutions to generate</source> |
4127 | <target state="final">Resolutions to generate</target> | 4133 | <target state="final">Resolutions to generate</target> |
4128 | 4134 | ||
4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4130 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4136 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4131 | <source>CACHE</source> | 4137 | <source>CACHE</source> |
4132 | <target state="final">CACHE</target> | 4138 | <target state="final">CACHE</target> |
4133 | 4139 | ||
4134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4135 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4141 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4136 | <source> | 4142 | <source> |
4137 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4143 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4140,34 +4146,28 @@ The link will expire within 1 hour.</target> | |||
4140 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4146 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4141 | </target> | 4147 | </target> |
4142 | 4148 | ||
4143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4144 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4150 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4145 | <source>Number of previews to keep in cache</source> | 4151 | <source>Number of previews to keep in cache</source> |
4146 | <target state="final">Number of previews to keep in cache</target> | 4152 | <target state="final">Number of previews to keep in cache</target> |
4147 | 4153 | ||
4148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4149 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="final">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4155 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="final">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4150 | <context-group purpose="location"> | 4156 | |
4151 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4152 | <context context-type="linenumber">986</context> | ||
4153 | </context-group> | ||
4154 | </trans-unit> | ||
4155 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4158 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4156 | <source>Number of video captions to keep in cache</source> | 4159 | <source>Number of video captions to keep in cache</source> |
4157 | <target state="final">Number of video captions to keep in cache</target> | 4160 | <target state="final">Number of video captions to keep in cache</target> |
4158 | 4161 | ||
4159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4160 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="final">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4163 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="final">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4161 | <context-group purpose="location"> | 4164 | |
4162 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4163 | <context context-type="linenumber">998</context> | ||
4164 | </context-group> | ||
4165 | </trans-unit> | ||
4166 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4166 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4167 | <source>CUSTOMIZATIONS</source> | 4167 | <source>CUSTOMIZATIONS</source> |
4168 | <target state="final">CUSTOMIZATIONS</target> | 4168 | <target state="final">CUSTOMIZATIONS</target> |
4169 | 4169 | ||
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4171 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4171 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4172 | <source> | 4172 | <source> |
4173 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4173 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4176,17 +4176,17 @@ The link will expire within 1 hour.</target> | |||
4176 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4176 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4177 | </target> | 4177 | </target> |
4178 | 4178 | ||
4179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4180 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4180 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4181 | <source>JavaScript</source> | 4181 | <source>JavaScript</source> |
4182 | <target state="final">JavaScript</target> | 4182 | <target state="final">JavaScript</target> |
4183 | 4183 | ||
4184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4185 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4185 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4186 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4186 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4187 | <target state="final"> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></target> | 4187 | <target state="final"> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></target> |
4188 | 4188 | ||
4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4190 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4190 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4191 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4191 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4192 | color: red; | 4192 | color: red; |
@@ -4203,23 +4203,23 @@ The link will expire within 1 hour.</target> | |||
4203 | <x id="INTERPOLATION_1"/> | 4203 | <x id="INTERPOLATION_1"/> |
4204 | <x id="CLOSE_TAG_PRE"/></target> | 4204 | <x id="CLOSE_TAG_PRE"/></target> |
4205 | 4205 | ||
4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4207 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="final"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4207 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="final"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4208 | 4208 | ||
4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4210 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="final"> You cannot allow live replay if you don't enable transcoding. </target> | 4210 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="final"> You cannot allow live replay if you don't enable transcoding. </target> |
4211 | 4211 | ||
4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4213 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4213 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4214 | <source>Advanced configuration</source> | 4214 | <source>Advanced configuration</source> |
4215 | <target state="final">Advanced configuration</target> | 4215 | <target state="final">Advanced configuration</target> |
4216 | 4216 | ||
4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4218 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4218 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4219 | <source>Update configuration</source> | 4219 | <source>Update configuration</source> |
4220 | <target state="final">Update configuration</target> | 4220 | <target state="final">Update configuration</target> |
4221 | 4221 | ||
4222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4223 | 4223 | ||
4224 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4224 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4225 | <source>VIDEO SETTINGS</source> | 4225 | <source>VIDEO SETTINGS</source> |
@@ -6783,7 +6783,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6783 | <source>any language</source> | 6783 | <source>any language</source> |
6784 | <target state="final">any language</target> | 6784 | <target state="final">any language</target> |
6785 | 6785 | ||
6786 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6786 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6787 | <source>ON <x id="INTERPOLATION"/></source><target state="final">ON <x id="INTERPOLATION"/></target> | 6787 | <source>ON <x id="INTERPOLATION"/></source><target state="final">ON <x id="INTERPOLATION"/></target> |
6788 | 6788 | ||
6789 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6789 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6791,22 +6791,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6791 | <source>hide</source> | 6791 | <source>hide</source> |
6792 | <target state="final">hide</target> | 6792 | <target state="final">hide</target> |
6793 | 6793 | ||
6794 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6794 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6795 | <trans-unit id="8603861867909474404" datatype="html"> | 6795 | <trans-unit id="8603861867909474404" datatype="html"> |
6796 | <source>blur</source> | 6796 | <source>blur</source> |
6797 | <target state="final">blur</target> | 6797 | <target state="final">blur</target> |
6798 | 6798 | ||
6799 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6799 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6800 | <trans-unit id="4534458451100881847" datatype="html"> | 6800 | <trans-unit id="4534458451100881847" datatype="html"> |
6801 | <source>display</source> | 6801 | <source>display</source> |
6802 | <target state="final">display</target> | 6802 | <target state="final">display</target> |
6803 | 6803 | ||
6804 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6804 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6805 | <trans-unit id="4467323362722952678" datatype="html"> | 6805 | <trans-unit id="4467323362722952678" datatype="html"> |
6806 | <source>Unknown</source> | 6806 | <source>Unknown</source> |
6807 | <target state="final">Unknown</target> | 6807 | <target state="final">Unknown</target> |
6808 | 6808 | ||
6809 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6809 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6810 | <trans-unit id="8781423666414310853" datatype="html"> | 6810 | <trans-unit id="8781423666414310853" datatype="html"> |
6811 | <source>Your password has been successfully reset!</source> | 6811 | <source>Your password has been successfully reset!</source> |
6812 | <target state="final">Your password has been successfully reset!</target> | 6812 | <target state="final">Your password has been successfully reset!</target> |
@@ -7818,13 +7818,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7818 | <source>Instance languages</source> | 7818 | <source>Instance languages</source> |
7819 | <target state="final">Instance languages</target> | 7819 | <target state="final">Instance languages</target> |
7820 | 7820 | ||
7821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7822 | <trans-unit id="40119547597591062" datatype="html"> | 7822 | <trans-unit id="40119547597591062" datatype="html"> |
7823 | <source>All languages</source> | 7823 | <source>All languages</source> |
7824 | <target state="final">All languages</target> | 7824 | <target state="final">All languages</target> |
7825 | 7825 | ||
7826 | 7826 | ||
7827 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7827 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7828 | <trans-unit id="996392855508119363" datatype="html"> | 7828 | <trans-unit id="996392855508119363" datatype="html"> |
7829 | <source>Hidden</source> | 7829 | <source>Hidden</source> |
7830 | <target state="final">Hidden</target> | 7830 | <target state="final">Hidden</target> |
@@ -8563,7 +8563,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8563 | <source>Only users of this instance can see this video</source> | 8563 | <source>Only users of this instance can see this video</source> |
8564 | <target state="final">Only users of this instance can see this video</target> | 8564 | <target state="final">Only users of this instance can see this video</target> |
8565 | 8565 | ||
8566 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 8566 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8567 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="final"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8568 | <context-group purpose="location"> | ||
8569 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8570 | <context context-type="linenumber">211</context> | ||
8571 | </context-group> | ||
8572 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8573 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="final"><x id="PH" equiv-text="this.views"/> views</target> | ||
8574 | <context-group purpose="location"> | ||
8575 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8576 | <context context-type="linenumber">214</context> | ||
8577 | </context-group> | ||
8578 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
8567 | <source>Close</source><target state="final">Close</target> | 8579 | <source>Close</source><target state="final">Close</target> |
8568 | 8580 | ||
8569 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 8581 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.eo.xlf b/client/src/locale/angular.eo.xlf index fe0998ad9..73f3113bb 100644 --- a/client/src/locale/angular.eo.xlf +++ b/client/src/locale/angular.eo.xlf | |||
@@ -307,19 +307,27 @@ | |||
307 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 307 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
308 | <target state="translated">{VAR_PLURAL, plural, =1 {1 rigardo} other {<x id="INTERPOLATION"/> rigardoj}}</target> | 308 | <target state="translated">{VAR_PLURAL, plural, =1 {1 rigardo} other {<x id="INTERPOLATION"/> rigardoj}}</target> |
309 | 309 | ||
310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
311 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
312 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
313 | "/> </target> | ||
314 | <context-group purpose="location"> | ||
315 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
316 | <context context-type="linenumber">32,33</context> | ||
317 | </context-group> | ||
318 | </trans-unit> | ||
311 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 319 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
312 | <source>Blocked</source> | 320 | <source>Blocked</source> |
313 | <target state="translated">Blokita</target> | 321 | <target state="translated">Blokita</target> |
314 | 322 | ||
315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
316 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 324 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
317 | <source>Sensitive</source> | 325 | <source>Sensitive</source> |
318 | <target> | 326 | <target> |
319 | Konsterna | 327 | Konsterna |
320 | </target> | 328 | </target> |
321 | 329 | ||
322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
323 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 331 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
324 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 332 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
325 | <target>{VAR_PLURAL, plural, =0 {Neniu filmo} =1 {1 filmo} other {<x id="INTERPOLATION"/> filmoj}}</target> | 333 | <target>{VAR_PLURAL, plural, =0 {Neniu filmo} =1 {1 filmo} other {<x id="INTERPOLATION"/> filmoj}}</target> |
@@ -984,11 +992,7 @@ The link will expire within 1 hour.</source> | |||
984 | <target state="translated">Konsterna:</target> | 992 | <target state="translated">Konsterna:</target> |
985 | 993 | ||
986 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 994 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
987 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 995 | |
988 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
989 | <target state="translated">Fasado: <x id="INTERPOLATION"/></target> | ||
990 | |||
991 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
992 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 996 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
993 | <source>Help share videos</source> | 997 | <source>Help share videos</source> |
994 | <target state="translated">Helpu diskonigi filmojn</target> | 998 | <target state="translated">Helpu diskonigi filmojn</target> |
@@ -1072,7 +1076,13 @@ The link will expire within 1 hour.</source> | |||
1072 | <source>Videos</source> | 1076 | <source>Videos</source> |
1073 | <target>Filmoj</target> | 1077 | <target>Filmoj</target> |
1074 | 1078 | ||
1075 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1079 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1080 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1081 | <context-group purpose="location"> | ||
1082 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1083 | <context context-type="linenumber">171</context> | ||
1084 | </context-group> | ||
1085 | </trans-unit> | ||
1076 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1086 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1077 | <source>Playlists</source> | 1087 | <source>Playlists</source> |
1078 | <target>Ludlistoj</target> | 1088 | <target>Ludlistoj</target> |
@@ -1615,12 +1625,12 @@ The link will expire within 1 hour.</source> | |||
1615 | <source>Scheduled</source> | 1625 | <source>Scheduled</source> |
1616 | <target>Planita</target> | 1626 | <target>Planita</target> |
1617 | 1627 | ||
1618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1619 | <trans-unit id="1435317307066082710" datatype="html"> | 1629 | <trans-unit id="1435317307066082710" datatype="html"> |
1620 | <source>Hide the video until a specific date</source> | 1630 | <source>Hide the video until a specific date</source> |
1621 | <target state="translated">Kaŝi la filmon ĝis la donita dato</target> | 1631 | <target state="translated">Kaŝi la filmon ĝis la donita dato</target> |
1622 | 1632 | ||
1623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1624 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 1634 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
1625 | <source>Video background image</source> | 1635 | <source>Video background image</source> |
1626 | <target>Fonbildo de filmo</target> | 1636 | <target>Fonbildo de filmo</target> |
@@ -2246,7 +2256,7 @@ The link will expire within 1 hour.</source> | |||
2246 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2256 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2247 | <context context-type="linenumber">8</context> | 2257 | <context context-type="linenumber">8</context> |
2248 | </context-group> | 2258 | </context-group> |
2249 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2259 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2250 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2260 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2251 | <context-group purpose="location"> | 2261 | <context-group purpose="location"> |
2252 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2262 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3638,222 +3648,212 @@ The link will expire within 1 hour.</source> | |||
3638 | <source>Basic configuration</source> | 3648 | <source>Basic configuration</source> |
3639 | <target>Baza agordaro</target> | 3649 | <target>Baza agordaro</target> |
3640 | 3650 | ||
3641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3652 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3653 | <context-group purpose="location"> | ||
3654 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3655 | <context context-type="linenumber">700</context> | ||
3656 | </context-group> | ||
3657 | </trans-unit> | ||
3642 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3658 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3643 | <source>TWITTER</source> | 3659 | <source>TWITTER</source> |
3644 | <target state="translated">TVITERO</target> | 3660 | <target state="translated">TVITERO</target> |
3645 | 3661 | ||
3646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3647 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3663 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3648 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3664 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3649 | <target state="translated">Malnepra. Se iu ekzistas, donu vian Tviter-konton reprezentantan vian nodon, por plibonigi ligilajn antaŭrigardojn.</target> | 3665 | <target state="translated">Malnepra. Se iu ekzistas, donu vian Tviter-konton reprezentantan vian nodon, por plibonigi ligilajn antaŭrigardojn.</target> |
3650 | 3666 | ||
3651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3652 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3668 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3653 | <source>Your Twitter username</source> | 3669 | <source>Your Twitter username</source> |
3654 | <target>Via Tvitera salutnomo</target> | 3670 | <target>Via Tvitera salutnomo</target> |
3655 | 3671 | ||
3656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3657 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3673 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3658 | <source>Instance allowed by Twitter</source> | 3674 | <source>Instance allowed by Twitter</source> |
3659 | <target state="translated">Nodoj permesitaj de Tvitero</target> | 3675 | <target state="translated">Nodoj permesitaj de Tvitero</target> |
3660 | 3676 | ||
3661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3662 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3678 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3663 | 3679 | ||
3664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3665 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3681 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3666 | <source>LIVE</source><target state="new">LIVE</target> | 3682 | <source>LIVE</source><target state="new">LIVE</target> |
3667 | 3683 | ||
3668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3684 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3669 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 3685 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
3670 | 3686 | ||
3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3672 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 3688 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3673 | 3689 | ||
3674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3675 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 3691 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
3676 | 3692 | ||
3677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3678 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 3694 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
3679 | 3695 | ||
3680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3681 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 3697 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
3682 | 3698 | ||
3683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3684 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3700 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3685 | <context-group purpose="location"> | 3701 | |
3686 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3687 | <context context-type="linenumber">751</context> | ||
3688 | </context-group> | ||
3689 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
3690 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 3703 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
3691 | 3704 | ||
3692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3693 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3706 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3694 | <context-group purpose="location"> | 3707 | |
3695 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3696 | <context context-type="linenumber">759</context> | ||
3697 | </context-group> | ||
3698 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
3699 | <source>Max live duration</source><target state="new">Max live duration</target> | 3709 | <source>Max live duration</source><target state="new">Max live duration</target> |
3700 | 3710 | ||
3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3702 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 3712 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
3703 | 3713 | ||
3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3705 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 3715 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
3706 | 3716 | ||
3707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3708 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 3718 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
3709 | 3719 | ||
3710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3711 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 3721 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
3712 | 3722 | ||
3713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3714 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 3724 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
3715 | 3725 | ||
3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3717 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3727 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3718 | <context-group purpose="location"> | ||
3719 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3720 | <context context-type="linenumber">793</context> | ||
3721 | </context-group> | ||
3722 | <context-group purpose="location"> | ||
3723 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3724 | <context context-type="linenumber">935</context> | ||
3725 | </context-group> | ||
3726 | </trans-unit> | ||
3727 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
3728 | <source>Services</source> | ||
3729 | <target>Servoj</target> | ||
3730 | 3728 | ||
3731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 3729 | |
3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
3731 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
3732 | <source>Live streaming</source><target state="new">Live streaming</target> | 3732 | <source>Live streaming</source><target state="new">Live streaming</target> |
3733 | 3733 | ||
3734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3735 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3735 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3736 | <source>TRANSCODING</source> | 3736 | <source>TRANSCODING</source> |
3737 | <target state="translated">TRANSKODADO</target> | 3737 | <target state="translated">TRANSKODADO</target> |
3738 | 3738 | ||
3739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3740 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3740 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3741 | <source>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.</source> | 3741 | <source>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.</source> |
3742 | <target state="translated">Prilabori alŝutitajn filmojn tiel, ke ili havu formon ludeblan por ĉiu aparato. Kvankam tio kostas multajn rimedojn, ĝi estas grava parto de PeerTube; priagu atente.</target> | 3742 | <target state="translated">Prilabori alŝutitajn filmojn tiel, ke ili havu formon ludeblan por ĉiu aparato. Kvankam tio kostas multajn rimedojn, ĝi estas grava parto de PeerTube; priagu atente.</target> |
3743 | 3743 | ||
3744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3745 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 3745 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
3746 | <source>Transcoding enabled</source> | 3746 | <source>Transcoding enabled</source> |
3747 | <target>Transkodado ŝaltita</target> | 3747 | <target>Transkodado ŝaltita</target> |
3748 | 3748 | ||
3749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3750 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 3750 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
3751 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3751 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3752 | <target>Se vi malŝaltos transkodadon, multaj filmoj de viaj uzantoj eble ne funkcios!</target> | 3752 | <target>Se vi malŝaltos transkodadon, multaj filmoj de viaj uzantoj eble ne funkcios!</target> |
3753 | 3753 | ||
3754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3755 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3756 | |||
3757 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3758 | |||
3759 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3760 | <context-group purpose="location"> | ||
3761 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3762 | <context context-type="linenumber">759,763</context> | ||
3763 | </context-group> | ||
3764 | </trans-unit> | ||
3755 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3765 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3756 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3766 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3757 | <target state="translated">Permesas al uzantoj alŝutadon de filmoj en la formoj .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut.</target> | 3767 | <target state="translated">Permesas al uzantoj alŝutadon de filmoj en la formoj .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut.</target> |
3758 | 3768 | ||
3759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3760 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 3770 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
3761 | <source>Allow additional extensions</source> | 3771 | <source>Allow additional extensions</source> |
3762 | <target>Permesi aliajn dosiersufiksojn</target> | 3772 | <target>Permesi aliajn dosiersufiksojn</target> |
3763 | 3773 | ||
3764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3765 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3775 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3766 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3776 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3767 | <target state="translated">Permesas alŝutadon de sondosieroj, kiuj kuniĝos kun la antaŭrigrada dosiero je alŝuto.</target> | 3777 | <target state="translated">Permesas alŝutadon de sondosieroj, kiuj kuniĝos kun la antaŭrigrada dosiero je alŝuto.</target> |
3768 | 3778 | ||
3769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3770 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 3780 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
3771 | <source>Allow audio files upload</source> | 3781 | <source>Allow audio files upload</source> |
3772 | <target>Permesi alŝuton de sonaj dosieroj</target> | 3782 | <target>Permesi alŝuton de sonaj dosieroj</target> |
3773 | 3783 | ||
3774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3775 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3785 | |
3776 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3777 | <target state="translated"><x id="START_TAG_STRONG"/>Eksperimenta; ni konsilas, ke vi nun ne malŝaltu subtenon de WebTorrent<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Se vi ankaŭ ŝaltis subtenon de HLS, tio duobligos deponon de filmoj<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>Malŝaltite, ĝi rompas federadon kun nodoj de PeerTube < 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
3778 | |||
3779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3780 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3786 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3781 | <source>WebTorrent support enabled</source> | 3787 | <source>WebTorrent support enabled</source> |
3782 | <target state="translated">Subteno de WebTorrent estas ŝaltita</target> | 3788 | <target state="translated">Subteno de WebTorrent estas ŝaltita</target> |
3783 | 3789 | ||
3784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3785 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3791 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3786 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3792 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3787 | <target state="translated"><x id="START_TAG_STRONG"/>Bezonas ffmpeg ≥ 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Estigi HLS-ludlistojn kaj fragmentigi MP4-dosierojn, kaŭzante pli bonan ludadon kun la nuna norma ludilo:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Ŝanĝo de distingumo pli glatas<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Pli rapida ludado, precipe de longaj filmoj<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Pli dependebla ludado (malpli da eraroj, enlegado)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Se vi ankaŭ ŝaltis subtenon de WebTorrent, ĝi duobligos la deponejon de filmoj<x id="CLOSE_PARAGRAPH"/></target> | 3793 | <target state="translated"><x id="START_TAG_STRONG"/>Bezonas ffmpeg ≥ 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Estigi HLS-ludlistojn kaj fragmentigi MP4-dosierojn, kaŭzante pli bonan ludadon kun la nuna norma ludilo:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Ŝanĝo de distingumo pli glatas<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Pli rapida ludado, precipe de longaj filmoj<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Pli dependebla ludado (malpli da eraroj, enlegado)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Se vi ankaŭ ŝaltis subtenon de WebTorrent, ĝi duobligos la deponejon de filmoj<x id="CLOSE_PARAGRAPH"/></target> |
3788 | 3794 | ||
3789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3790 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3796 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3791 | <source>HLS with P2P support enabled</source> | 3797 | <source>HLS with P2P support enabled</source> |
3792 | <target state="translated">HLS (vivelsendo per HTTP) kun ŝaltita subteno de samtavola teĥnikaro</target> | 3798 | <target state="translated">HLS (vivelsendo per HTTP) kun ŝaltita subteno de samtavola teĥnikaro</target> |
3793 | 3799 | ||
3794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3795 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 3801 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
3796 | <source>Transcoding threads</source> | 3802 | <source>Transcoding threads</source> |
3797 | <target>Fadenoj por transkodado</target> | 3803 | <target>Fadenoj por transkodado</target> |
3798 | 3804 | ||
3799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3800 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3806 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3801 | <source>Resolutions to generate</source> | 3807 | <source>Resolutions to generate</source> |
3802 | <target state="translated">Estigotaj distingumoj</target> | 3808 | <target state="translated">Estigotaj distingumoj</target> |
3803 | 3809 | ||
3804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3805 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3811 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3806 | <source>CACHE</source> | 3812 | <source>CACHE</source> |
3807 | <target state="translated">KAŜMEMORO</target> | 3813 | <target state="translated">KAŜMEMORO</target> |
3808 | 3814 | ||
3809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3810 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3816 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3811 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3817 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3812 | <target state="translated">Iuj dosieroj ne estas federataj, kaj estas laŭbezone elŝutataj. Difinu ilian kaŝmemoran politikon.</target> | 3818 | <target state="translated">Iuj dosieroj ne estas federataj, kaj estas laŭbezone elŝutataj. Difinu ilian kaŝmemoran politikon.</target> |
3813 | 3819 | ||
3814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3815 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3821 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3816 | <source>Number of previews to keep in cache</source> | 3822 | <source>Number of previews to keep in cache</source> |
3817 | <target state="translated">Nombro de kaŝmemorotaj antaŭrigardoj</target> | 3823 | <target state="translated">Nombro de kaŝmemorotaj antaŭrigardoj</target> |
3818 | 3824 | ||
3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3820 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3826 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3821 | <context-group purpose="location"> | 3827 | |
3822 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3823 | <context context-type="linenumber">986</context> | ||
3824 | </context-group> | ||
3825 | </trans-unit> | ||
3826 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3829 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3827 | <source>Number of video captions to keep in cache</source> | 3830 | <source>Number of video captions to keep in cache</source> |
3828 | <target state="translated">Nombro de kaŝmemorotaj filmaj transskriboj</target> | 3831 | <target state="translated">Nombro de kaŝmemorotaj filmaj transskriboj</target> |
3829 | 3832 | ||
3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3831 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3834 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3832 | <context-group purpose="location"> | 3835 | |
3833 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3834 | <context context-type="linenumber">998</context> | ||
3835 | </context-group> | ||
3836 | </trans-unit> | ||
3837 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3837 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3838 | <source>CUSTOMIZATIONS</source> | 3838 | <source>CUSTOMIZATIONS</source> |
3839 | <target state="translated">ADAPTOJ</target> | 3839 | <target state="translated">ADAPTOJ</target> |
3840 | 3840 | ||
3841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3842 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3842 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3843 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3843 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3844 | <target state="translated">Etaj modifoj al via PeerTube-nodo por kiam novaj haŭto aŭ kromprogramo trous.</target> | 3844 | <target state="translated">Etaj modifoj al via PeerTube-nodo por kiam novaj haŭto aŭ kromprogramo trous.</target> |
3845 | 3845 | ||
3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3847 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 3847 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
3848 | <source>JavaScript</source> | 3848 | <source>JavaScript</source> |
3849 | <target>Ĝavoskripto</target> | 3849 | <target>Ĝavoskripto</target> |
3850 | 3850 | ||
3851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3852 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3852 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3853 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3853 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3854 | <target state="translated">Skribu Ĝavoskriptan kodon rekte.<x id="LINE_BREAK"/>Ekzemple:<x id="START_TAG_PRE"/>console.log('mia nodo mojosas');<x id="CLOSE_TAG_PRE"/></target> | 3854 | <target state="translated">Skribu Ĝavoskriptan kodon rekte.<x id="LINE_BREAK"/>Ekzemple:<x id="START_TAG_PRE"/>console.log('mia nodo mojosas');<x id="CLOSE_TAG_PRE"/></target> |
3855 | 3855 | ||
3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3857 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3857 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3858 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 3858 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3859 | color: red; | 3859 | color: red; |
@@ -3864,23 +3864,23 @@ The link will expire within 1 hour.</source> | |||
3864 | <x id="CLOSE_TAG_PRE"/></source> | 3864 | <x id="CLOSE_TAG_PRE"/></source> |
3865 | <target state="translated">Skribu CSS-kodon rekte. Ekzemple:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Antaŭmetu <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> por superforti stilojn. Ekzemple: <x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3865 | <target state="translated">Skribu CSS-kodon rekte. Ekzemple:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Antaŭmetu <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> por superforti stilojn. Ekzemple: <x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3866 | 3866 | ||
3867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3868 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 3868 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
3869 | 3869 | ||
3870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3871 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 3871 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
3872 | 3872 | ||
3873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3874 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 3874 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
3875 | <source>Advanced configuration</source> | 3875 | <source>Advanced configuration</source> |
3876 | <target>Altnivela agordaro</target> | 3876 | <target>Altnivela agordaro</target> |
3877 | 3877 | ||
3878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3879 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 3879 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
3880 | <source>Update configuration</source> | 3880 | <source>Update configuration</source> |
3881 | <target>Efektivigi agordaron</target> | 3881 | <target>Efektivigi agordaron</target> |
3882 | 3882 | ||
3883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3884 | 3884 | ||
3885 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3885 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3886 | <source>VIDEO SETTINGS</source> | 3886 | <source>VIDEO SETTINGS</source> |
@@ -6358,7 +6358,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6358 | <source>any language</source> | 6358 | <source>any language</source> |
6359 | <target state="translated">ajna lingvo</target> | 6359 | <target state="translated">ajna lingvo</target> |
6360 | 6360 | ||
6361 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6361 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6362 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6362 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6363 | 6363 | ||
6364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6366,22 +6366,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6366 | <source>hide</source> | 6366 | <source>hide</source> |
6367 | <target state="translated">kaŝi</target> | 6367 | <target state="translated">kaŝi</target> |
6368 | 6368 | ||
6369 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6369 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6370 | <trans-unit id="8603861867909474404" datatype="html"> | 6370 | <trans-unit id="8603861867909474404" datatype="html"> |
6371 | <source>blur</source> | 6371 | <source>blur</source> |
6372 | <target state="translated">malklarigi</target> | 6372 | <target state="translated">malklarigi</target> |
6373 | 6373 | ||
6374 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6374 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6375 | <trans-unit id="4534458451100881847" datatype="html"> | 6375 | <trans-unit id="4534458451100881847" datatype="html"> |
6376 | <source>display</source> | 6376 | <source>display</source> |
6377 | <target state="translated">montri</target> | 6377 | <target state="translated">montri</target> |
6378 | 6378 | ||
6379 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6379 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6380 | <trans-unit id="4467323362722952678" datatype="html"> | 6380 | <trans-unit id="4467323362722952678" datatype="html"> |
6381 | <source>Unknown</source> | 6381 | <source>Unknown</source> |
6382 | <target state="translated">Nekonata</target> | 6382 | <target state="translated">Nekonata</target> |
6383 | 6383 | ||
6384 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6384 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6385 | <trans-unit id="8781423666414310853"> | 6385 | <trans-unit id="8781423666414310853"> |
6386 | <source>Your password has been successfully reset!</source> | 6386 | <source>Your password has been successfully reset!</source> |
6387 | <target>Via pasvorto estas sukcese restarigita!</target> | 6387 | <target>Via pasvorto estas sukcese restarigita!</target> |
@@ -7364,12 +7364,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7364 | <source>Instance languages</source> | 7364 | <source>Instance languages</source> |
7365 | <target state="translated">Lingvoj de nodo</target> | 7365 | <target state="translated">Lingvoj de nodo</target> |
7366 | 7366 | ||
7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7368 | <trans-unit id="40119547597591062" datatype="html"> | 7368 | <trans-unit id="40119547597591062" datatype="html"> |
7369 | <source>All languages</source> | 7369 | <source>All languages</source> |
7370 | <target state="translated">Ĉiuj lingvoj</target> | 7370 | <target state="translated">Ĉiuj lingvoj</target> |
7371 | 7371 | ||
7372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7373 | <trans-unit id="996392855508119363"> | 7373 | <trans-unit id="996392855508119363"> |
7374 | <source>Hidden</source> | 7374 | <source>Hidden</source> |
7375 | <target>Kaŝita</target> | 7375 | <target>Kaŝita</target> |
@@ -8089,7 +8089,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8089 | <source>Only users of this instance can see this video</source> | 8089 | <source>Only users of this instance can see this video</source> |
8090 | <target state="translated">Nur uzantoj de ĉi tiu nodo povas vidi ĉi tiun filmon</target> | 8090 | <target state="translated">Nur uzantoj de ĉi tiu nodo povas vidi ĉi tiun filmon</target> |
8091 | 8091 | ||
8092 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8092 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8093 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8094 | <context-group purpose="location"> | ||
8095 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8096 | <context context-type="linenumber">211</context> | ||
8097 | </context-group> | ||
8098 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8099 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8100 | <context-group purpose="location"> | ||
8101 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8102 | <context context-type="linenumber">214</context> | ||
8103 | </context-group> | ||
8104 | </trans-unit> | ||
8093 | <trans-unit id="ngb.alert.close" datatype="html"> | 8105 | <trans-unit id="ngb.alert.close" datatype="html"> |
8094 | <source>Close</source> | 8106 | <source>Close</source> |
8095 | <target state="translated">Fermi</target> | 8107 | <target state="translated">Fermi</target> |
diff --git a/client/src/locale/angular.eu-ES.xlf b/client/src/locale/angular.eu-ES.xlf index 811003010..b733b5d5d 100644 --- a/client/src/locale/angular.eu-ES.xlf +++ b/client/src/locale/angular.eu-ES.xlf | |||
@@ -406,17 +406,25 @@ | |||
406 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> bistaratze} } | 406 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> bistaratze} } |
407 | </target> | 407 | </target> |
408 | 408 | ||
409 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 409 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
410 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
411 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
412 | "/> </target> | ||
413 | <context-group purpose="location"> | ||
414 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
415 | <context context-type="linenumber">32,33</context> | ||
416 | </context-group> | ||
417 | </trans-unit> | ||
410 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 418 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
411 | <source>Blocked</source> | 419 | <source>Blocked</source> |
412 | <target state="translated">Blokeatuta</target> | 420 | <target state="translated">Blokeatuta</target> |
413 | 421 | ||
414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
415 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 423 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
416 | <source>Sensitive</source> | 424 | <source>Sensitive</source> |
417 | <target state="translated">Hunkigarria</target> | 425 | <target state="translated">Hunkigarria</target> |
418 | 426 | ||
419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
420 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 428 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
421 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 429 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
422 | <target state="translated">{VAR_PLURAL, plural, =0 {Bideorik ez} =1 {Bideo 1} other { | 430 | <target state="translated">{VAR_PLURAL, plural, =0 {Bideorik ez} =1 {Bideo 1} other { |
@@ -1161,13 +1169,7 @@ The link will expire within 1 hour.</target> | |||
1161 | <target state="new">Sensitive:</target> | 1169 | <target state="new">Sensitive:</target> |
1162 | 1170 | ||
1163 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1171 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1164 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1172 | |
1165 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1166 | <target state="translated">Interfazea: | ||
1167 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1168 | </target> | ||
1169 | |||
1170 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1171 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1173 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1172 | <source>Help share videos</source> | 1174 | <source>Help share videos</source> |
1173 | <target state="new">Help share videos</target> | 1175 | <target state="new">Help share videos</target> |
@@ -1257,7 +1259,13 @@ The link will expire within 1 hour.</target> | |||
1257 | <source>Videos</source> | 1259 | <source>Videos</source> |
1258 | <target>Bideoak</target> | 1260 | <target>Bideoak</target> |
1259 | 1261 | ||
1260 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1262 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1263 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1264 | <context-group purpose="location"> | ||
1265 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1266 | <context context-type="linenumber">171</context> | ||
1267 | </context-group> | ||
1268 | </trans-unit> | ||
1261 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1269 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1262 | <source>Playlists</source> | 1270 | <source>Playlists</source> |
1263 | <target state="new">Playlists</target> | 1271 | <target state="new">Playlists</target> |
@@ -1839,12 +1847,12 @@ The link will expire within 1 hour.</target> | |||
1839 | <source>Scheduled</source> | 1847 | <source>Scheduled</source> |
1840 | <target>Programatuta</target> | 1848 | <target>Programatuta</target> |
1841 | 1849 | ||
1842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1843 | <trans-unit id="1435317307066082710" datatype="html"> | 1851 | <trans-unit id="1435317307066082710" datatype="html"> |
1844 | <source>Hide the video until a specific date</source> | 1852 | <source>Hide the video until a specific date</source> |
1845 | <target state="new">Hide the video until a specific date</target> | 1853 | <target state="new">Hide the video until a specific date</target> |
1846 | 1854 | ||
1847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1848 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1856 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1849 | <source>Video background image</source> | 1857 | <source>Video background image</source> |
1850 | <target state="translated">Bideoaren atzeko irudia</target> | 1858 | <target state="translated">Bideoaren atzeko irudia</target> |
@@ -2527,7 +2535,7 @@ The link will expire within 1 hour.</target> | |||
2527 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2535 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2528 | <context context-type="linenumber">8</context> | 2536 | <context context-type="linenumber">8</context> |
2529 | </context-group> | 2537 | </context-group> |
2530 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2538 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2531 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2539 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2532 | <context-group purpose="location"> | 2540 | <context-group purpose="location"> |
2533 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2541 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4083,187 +4091,175 @@ The link will expire within 1 hour.</target> | |||
4083 | <source>Basic configuration</source> | 4091 | <source>Basic configuration</source> |
4084 | <target>Oinarrizko konfigurazioa</target> | 4092 | <target>Oinarrizko konfigurazioa</target> |
4085 | 4093 | ||
4086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4095 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4096 | <context-group purpose="location"> | ||
4097 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4098 | <context context-type="linenumber">700</context> | ||
4099 | </context-group> | ||
4100 | </trans-unit> | ||
4087 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4101 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4088 | <source>TWITTER</source> | 4102 | <source>TWITTER</source> |
4089 | <target state="new">TWITTER</target> | 4103 | <target state="new">TWITTER</target> |
4090 | 4104 | ||
4091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4092 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4106 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4093 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4107 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4094 | <target state="translated">Aukerakoa. Baldin badago, eman instantzia irudikatzen duen Twitterreko kontua, esteken aurrebistak hobetzeko.</target> | 4108 | <target state="translated">Aukerakoa. Baldin badago, eman instantzia irudikatzen duen Twitterreko kontua, esteken aurrebistak hobetzeko.</target> |
4095 | 4109 | ||
4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4097 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4111 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4098 | <source>Your Twitter username</source> | 4112 | <source>Your Twitter username</source> |
4099 | <target>Zure Twitter erabiltzaile-izena</target> | 4113 | <target>Zure Twitter erabiltzaile-izena</target> |
4100 | 4114 | ||
4101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4102 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4116 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4103 | <source>Instance allowed by Twitter</source> | 4117 | <source>Instance allowed by Twitter</source> |
4104 | <target state="new">Instance allowed by Twitter</target> | 4118 | <target state="new">Instance allowed by Twitter</target> |
4105 | 4119 | ||
4106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit> | 4120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit> |
4107 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4121 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4108 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | 4122 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> |
4109 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4123 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4110 | 4124 | ||
4111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4112 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4126 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4113 | <source>LIVE</source> | 4127 | <source>LIVE</source> |
4114 | <target state="new">LIVE</target> | 4128 | <target state="new">LIVE</target> |
4115 | 4129 | ||
4116 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit> | 4130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit> |
4117 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4131 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4118 | <source>Enable users of your instance to stream live.</source> | 4132 | <source>Enable users of your instance to stream live.</source> |
4119 | <target state="new"> Enable users of your instance to stream live. </target> | 4133 | <target state="new"> Enable users of your instance to stream live. </target> |
4120 | 4134 | ||
4121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit> | 4135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit> |
4122 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4136 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4123 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 4137 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4124 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4138 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4125 | 4139 | ||
4126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit> | 4140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit> |
4127 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4141 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4128 | <source>Allow your users to automatically publish a replay of their live</source> | 4142 | <source>Allow your users to automatically publish a replay of their live</source> |
4129 | <target state="new">Allow your users to automatically publish a replay of their live</target> | 4143 | <target state="new">Allow your users to automatically publish a replay of their live</target> |
4130 | 4144 | ||
4131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit> | 4145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit> |
4132 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4146 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4133 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 4147 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
4134 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4148 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4135 | 4149 | ||
4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit> | 4150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit> |
4137 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4151 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4138 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 4152 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
4139 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4153 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4140 | 4154 | ||
4141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4142 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4156 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4143 | <context-group purpose="location"> | 4157 | |
4144 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit> |
4145 | <context context-type="linenumber">751</context> | ||
4146 | </context-group> | ||
4147 | </trans-unit> | ||
4148 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 4159 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4149 | <source>Max lives created per user (-1 for "unlimited")</source> | 4160 | <source>Max lives created per user (-1 for "unlimited")</source> |
4150 | <target state="new">Max lives created per user (-1 for "unlimited")</target> | 4161 | <target state="new">Max lives created per user (-1 for "unlimited")</target> |
4151 | 4162 | ||
4152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4153 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4164 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4154 | <context-group purpose="location"> | 4165 | |
4155 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit> |
4156 | <context context-type="linenumber">759</context> | ||
4157 | </context-group> | ||
4158 | </trans-unit> | ||
4159 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 4167 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4160 | <source>Max live duration</source> | 4168 | <source>Max live duration</source> |
4161 | <target state="new">Max live duration</target> | 4169 | <target state="new">Max live duration</target> |
4162 | 4170 | ||
4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit> | 4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit> |
4164 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4172 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4165 | <source>Enable live transcoding</source> | 4173 | <source>Enable live transcoding</source> |
4166 | <target state="new">Enable live transcoding</target> | 4174 | <target state="new">Enable live transcoding</target> |
4167 | 4175 | ||
4168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit> | 4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit> |
4169 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4177 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4170 | <source>Requires a lot of CPU!</source> | 4178 | <source>Requires a lot of CPU!</source> |
4171 | <target state="new"> Requires a lot of CPU! </target> | 4179 | <target state="new"> Requires a lot of CPU! </target> |
4172 | 4180 | ||
4173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit> | 4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit> |
4174 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4182 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4175 | <source>Live transcoding threads</source> | 4183 | <source>Live transcoding threads</source> |
4176 | <target state="new">Live transcoding threads</target> | 4184 | <target state="new">Live transcoding threads</target> |
4177 | 4185 | ||
4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit> | 4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit> |
4179 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4187 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4180 | <source>Live resolutions to generate</source> | 4188 | <source>Live resolutions to generate</source> |
4181 | <target state="translated">Sortu behar diren zuzeneko bereizmenak</target> | 4189 | <target state="translated">Sortu behar diren zuzeneko bereizmenak</target> |
4182 | 4190 | ||
4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit> | 4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit> |
4184 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4192 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4185 | <source>Allow live streaming</source> | 4193 | <source>Allow live streaming</source> |
4186 | <target state="new">Allow live streaming</target> | 4194 | <target state="new">Allow live streaming</target> |
4187 | 4195 | ||
4188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4189 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4197 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4190 | <context-group purpose="location"> | ||
4191 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4192 | <context context-type="linenumber">793</context> | ||
4193 | </context-group> | ||
4194 | <context-group purpose="location"> | ||
4195 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4196 | <context context-type="linenumber">935</context> | ||
4197 | </context-group> | ||
4198 | </trans-unit> | ||
4199 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4200 | <source>Services</source> | ||
4201 | <target>Zerbitzuak</target> | ||
4202 | 4198 | ||
4203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> | 4199 | |
4200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4201 | |||
4204 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4202 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
4205 | <source>Live streaming</source> | 4203 | <source>Live streaming</source> |
4206 | <target state="new">Live streaming</target> | 4204 | <target state="new">Live streaming</target> |
4207 | 4205 | ||
4208 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4209 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4207 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4210 | <source>TRANSCODING</source> | 4208 | <source>TRANSCODING</source> |
4211 | <target state="translated">TRANSKODIFIKATZEN</target> | 4209 | <target state="translated">TRANSKODIFIKATZEN</target> |
4212 | 4210 | ||
4213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4214 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4212 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4215 | <source>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.</source> | 4213 | <source>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.</source> |
4216 | <target state="translated">Prozesatu igotako bideoak, edozein gailuk erreproduzitu dezakeen modu streamable batean egon daitezen. Baliabideetan garestia bada ere, PeerTubeko alderdi kritikoa da, beraz, kontuz ibili.</target> | 4214 | <target state="translated">Prozesatu igotako bideoak, edozein gailuk erreproduzitu dezakeen modu streamable batean egon daitezen. Baliabideetan garestia bada ere, PeerTubeko alderdi kritikoa da, beraz, kontuz ibili.</target> |
4217 | 4215 | ||
4218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4219 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4217 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4220 | <source>Transcoding enabled</source> | 4218 | <source>Transcoding enabled</source> |
4221 | <target>Transkodeketa gaituta</target> | 4219 | <target>Transkodeketa gaituta</target> |
4222 | 4220 | ||
4223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4224 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4222 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4225 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4223 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4226 | <target>Transkodeketa desgaitzen baduzu, erabiltzaileen bideo askok ez dute funtzionatuko!</target> | 4224 | <target>Transkodeketa desgaitzen baduzu, erabiltzaileen bideo askok ez dute funtzionatuko!</target> |
4227 | 4225 | ||
4228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4227 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4228 | |||
4229 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4230 | |||
4231 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4232 | <context-group purpose="location"> | ||
4233 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4234 | <context context-type="linenumber">759,763</context> | ||
4235 | </context-group> | ||
4236 | </trans-unit> | ||
4229 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4237 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4230 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4238 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4231 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4239 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4232 | 4240 | ||
4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4234 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4242 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4235 | <source>Allow additional extensions</source> | 4243 | <source>Allow additional extensions</source> |
4236 | <target state="translated">Gaitu hedapen gehigarriak</target> | 4244 | <target state="translated">Gaitu hedapen gehigarriak</target> |
4237 | 4245 | ||
4238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4239 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4247 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4240 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4248 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4241 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4249 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4242 | 4250 | ||
4243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4244 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4252 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4245 | <source>Allow audio files upload</source> | 4253 | <source>Allow audio files upload</source> |
4246 | <target state="translated">Gaitu audio fitxategien igoera</target> | 4254 | <target state="translated">Gaitu audio fitxategien igoera</target> |
4247 | 4255 | ||
4248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4249 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4257 | |
4250 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4251 | <target state="new"> | ||
4252 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4253 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4254 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4255 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4256 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4257 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4258 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4259 | </target> | ||
4260 | |||
4261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4262 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4258 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4263 | <source>WebTorrent support enabled</source> | 4259 | <source>WebTorrent support enabled</source> |
4264 | <target state="translated">WebTorrent gaituta</target> | 4260 | <target state="translated">WebTorrent gaituta</target> |
4265 | 4261 | ||
4266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4267 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4263 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4268 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4264 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4269 | <target state="new"> | 4265 | <target state="new"> |
@@ -4283,71 +4279,65 @@ The link will expire within 1 hour.</target> | |||
4283 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4279 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4284 | </target> | 4280 | </target> |
4285 | 4281 | ||
4286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4287 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4283 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4288 | <source>HLS with P2P support enabled</source> | 4284 | <source>HLS with P2P support enabled</source> |
4289 | <target state="new">HLS with P2P support enabled</target> | 4285 | <target state="new">HLS with P2P support enabled</target> |
4290 | 4286 | ||
4291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4292 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4288 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4293 | <source>Transcoding threads</source> | 4289 | <source>Transcoding threads</source> |
4294 | <target>Transkodetze hariak</target> | 4290 | <target>Transkodetze hariak</target> |
4295 | 4291 | ||
4296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4297 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4293 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4298 | <source>Resolutions to generate</source> | 4294 | <source>Resolutions to generate</source> |
4299 | <target state="translated">Sortu behar diren bereizmenak</target> | 4295 | <target state="translated">Sortu behar diren bereizmenak</target> |
4300 | 4296 | ||
4301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4302 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4298 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4303 | <source>CACHE</source> | 4299 | <source>CACHE</source> |
4304 | <target state="new">CACHE</target> | 4300 | <target state="new">CACHE</target> |
4305 | 4301 | ||
4306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4307 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4303 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4308 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4304 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4309 | <target state="new"> | 4305 | <target state="new"> |
4310 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4306 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4311 | </target> | 4307 | </target> |
4312 | 4308 | ||
4313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4314 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4310 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4315 | <source>Number of previews to keep in cache</source> | 4311 | <source>Number of previews to keep in cache</source> |
4316 | <target state="translated">Cache memorian mantentzeko aurreikuspenen kopurua</target> | 4312 | <target state="translated">Cache memorian mantentzeko aurreikuspenen kopurua</target> |
4317 | 4313 | ||
4318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4319 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4315 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4320 | <context-group purpose="location"> | 4316 | |
4321 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4322 | <context context-type="linenumber">986</context> | ||
4323 | </context-group> | ||
4324 | </trans-unit> | ||
4325 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4318 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4326 | <source>Number of video captions to keep in cache</source> | 4319 | <source>Number of video captions to keep in cache</source> |
4327 | <target state="new">Number of video captions to keep in cache</target> | 4320 | <target state="new">Number of video captions to keep in cache</target> |
4328 | 4321 | ||
4329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4330 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4323 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4331 | <context-group purpose="location"> | 4324 | |
4332 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4333 | <context context-type="linenumber">998</context> | ||
4334 | </context-group> | ||
4335 | </trans-unit> | ||
4336 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4326 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4337 | <source>CUSTOMIZATIONS</source> | 4327 | <source>CUSTOMIZATIONS</source> |
4338 | <target state="translated">PERTSONALIZAZIOAK</target> | 4328 | <target state="translated">PERTSONALIZAZIOAK</target> |
4339 | 4329 | ||
4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4341 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4331 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4342 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4332 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4343 | <target state="translated">Aldaketa txiki batzuk PeerTubeko zure instantzian, plugin edo gai bat sortzea gehiegizkoa denean.</target> | 4333 | <target state="translated">Aldaketa txiki batzuk PeerTubeko zure instantzian, plugin edo gai bat sortzea gehiegizkoa denean.</target> |
4344 | 4334 | ||
4345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4346 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4336 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4347 | <source>JavaScript</source> | 4337 | <source>JavaScript</source> |
4348 | <target>JavaScript</target> | 4338 | <target>JavaScript</target> |
4349 | 4339 | ||
4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4351 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4341 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4352 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4342 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4353 | <target state="translated">Idatzi zuzenean JavaScript kodea. | 4343 | <target state="translated">Idatzi zuzenean JavaScript kodea. |
@@ -4356,7 +4346,7 @@ The link will expire within 1 hour.</target> | |||
4356 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4346 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4357 | </target> | 4347 | </target> |
4358 | 4348 | ||
4359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4360 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4350 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4361 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4351 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
4362 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4352 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
@@ -4392,27 +4382,27 @@ The link will expire within 1 hour.</target> | |||
4392 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4382 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4393 | </target> | 4383 | </target> |
4394 | 4384 | ||
4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit> | 4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit> |
4396 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4386 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4397 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | 4387 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> |
4398 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4388 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4399 | 4389 | ||
4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit> | 4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit> |
4401 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4391 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4402 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 4392 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
4403 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4393 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4404 | 4394 | ||
4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4406 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4396 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4407 | <source>Advanced configuration</source> | 4397 | <source>Advanced configuration</source> |
4408 | <target>Konfigurazio aurreratua</target> | 4398 | <target>Konfigurazio aurreratua</target> |
4409 | 4399 | ||
4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4411 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4401 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4412 | <source>Update configuration</source> | 4402 | <source>Update configuration</source> |
4413 | <target>Eguneratu konfigurazioa</target> | 4403 | <target>Eguneratu konfigurazioa</target> |
4414 | 4404 | ||
4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4416 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4406 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4417 | <source>VIDEO SETTINGS</source> | 4407 | <source>VIDEO SETTINGS</source> |
4418 | <target state="translated">BIDEO EZARPENAK</target> | 4408 | <target state="translated">BIDEO EZARPENAK</target> |
@@ -7123,7 +7113,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7123 | <source>any language</source> | 7113 | <source>any language</source> |
7124 | <target state="new">any language</target> | 7114 | <target state="new">any language</target> |
7125 | 7115 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> | 7116 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> |
7127 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7117 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7128 | <source>ON <x id="INTERPOLATION"/></source> | 7118 | <source>ON <x id="INTERPOLATION"/></source> |
7129 | <target state="new">ON <x id="INTERPOLATION"/></target> | 7119 | <target state="new">ON <x id="INTERPOLATION"/></target> |
@@ -7133,22 +7123,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7133 | <source>hide</source> | 7123 | <source>hide</source> |
7134 | <target state="new">hide</target> | 7124 | <target state="new">hide</target> |
7135 | 7125 | ||
7136 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7126 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7137 | <trans-unit id="8603861867909474404" datatype="html"> | 7127 | <trans-unit id="8603861867909474404" datatype="html"> |
7138 | <source>blur</source> | 7128 | <source>blur</source> |
7139 | <target state="new">blur</target> | 7129 | <target state="new">blur</target> |
7140 | 7130 | ||
7141 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7131 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7142 | <trans-unit id="4534458451100881847" datatype="html"> | 7132 | <trans-unit id="4534458451100881847" datatype="html"> |
7143 | <source>display</source> | 7133 | <source>display</source> |
7144 | <target state="new">display</target> | 7134 | <target state="new">display</target> |
7145 | 7135 | ||
7146 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7136 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7147 | <trans-unit id="4467323362722952678" datatype="html"> | 7137 | <trans-unit id="4467323362722952678" datatype="html"> |
7148 | <source>Unknown</source> | 7138 | <source>Unknown</source> |
7149 | <target state="new">Unknown</target> | 7139 | <target state="new">Unknown</target> |
7150 | 7140 | ||
7151 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7141 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7152 | <trans-unit id="8781423666414310853"> | 7142 | <trans-unit id="8781423666414310853"> |
7153 | <source>Your password has been successfully reset!</source> | 7143 | <source>Your password has been successfully reset!</source> |
7154 | <target>Zure pasahitza ongi berrezarri da!</target> | 7144 | <target>Zure pasahitza ongi berrezarri da!</target> |
@@ -8145,12 +8135,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8145 | <source>Instance languages</source> | 8135 | <source>Instance languages</source> |
8146 | <target state="new">Instance languages</target> | 8136 | <target state="new">Instance languages</target> |
8147 | 8137 | ||
8148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8149 | <trans-unit id="40119547597591062" datatype="html"> | 8139 | <trans-unit id="40119547597591062" datatype="html"> |
8150 | <source>All languages</source> | 8140 | <source>All languages</source> |
8151 | <target state="new">All languages</target> | 8141 | <target state="new">All languages</target> |
8152 | 8142 | ||
8153 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8143 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8154 | <trans-unit id="996392855508119363" datatype="html"> | 8144 | <trans-unit id="996392855508119363" datatype="html"> |
8155 | <source>Hidden</source> | 8145 | <source>Hidden</source> |
8156 | <target state="new">Hidden</target> | 8146 | <target state="new">Hidden</target> |
@@ -8913,7 +8903,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8913 | <source>Only users of this instance can see this video</source> | 8903 | <source>Only users of this instance can see this video</source> |
8914 | <target state="new">Only users of this instance can see this video</target> | 8904 | <target state="new">Only users of this instance can see this video</target> |
8915 | 8905 | ||
8916 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8906 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8907 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8908 | <context-group purpose="location"> | ||
8909 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8910 | <context context-type="linenumber">211</context> | ||
8911 | </context-group> | ||
8912 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8913 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8914 | <context-group purpose="location"> | ||
8915 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8916 | <context context-type="linenumber">214</context> | ||
8917 | </context-group> | ||
8918 | </trans-unit> | ||
8917 | <trans-unit id="ngb.alert.close" datatype="html"> | 8919 | <trans-unit id="ngb.alert.close" datatype="html"> |
8918 | <source>Close</source> | 8920 | <source>Close</source> |
8919 | <target state="new">Close</target> | 8921 | <target state="new">Close</target> |
diff --git a/client/src/locale/angular.fa-IR.xlf b/client/src/locale/angular.fa-IR.xlf index a2b4b242c..0028c2606 100644 --- a/client/src/locale/angular.fa-IR.xlf +++ b/client/src/locale/angular.fa-IR.xlf | |||
@@ -364,19 +364,27 @@ | |||
364 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 364 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
365 | </target> | 365 | </target> |
366 | 366 | ||
367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
368 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
369 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
370 | "/> </target> | ||
371 | <context-group purpose="location"> | ||
372 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
373 | <context context-type="linenumber">32,33</context> | ||
374 | </context-group> | ||
375 | </trans-unit> | ||
368 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 376 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
369 | <source>Blocked</source> | 377 | <source>Blocked</source> |
370 | <target state="new">Blocked</target> | 378 | <target state="new">Blocked</target> |
371 | 379 | ||
372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
373 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 381 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
374 | <source>Sensitive</source> | 382 | <source>Sensitive</source> |
375 | <target state="new"> | 383 | <target state="new"> |
376 | Sensitive | 384 | Sensitive |
377 | </target> | 385 | </target> |
378 | 386 | ||
379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
380 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 388 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
381 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 389 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
382 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 390 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1149,13 +1157,7 @@ The link will expire within 1 hour.</target> | |||
1149 | <target state="new">Sensitive:</target> | 1157 | <target state="new">Sensitive:</target> |
1150 | 1158 | ||
1151 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1159 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1152 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1160 | |
1153 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1154 | <target state="new">Interface: | ||
1155 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1156 | </target> | ||
1157 | |||
1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1159 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1161 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1160 | <source>Help share videos</source> | 1162 | <source>Help share videos</source> |
1161 | <target state="new">Help share videos</target> | 1163 | <target state="new">Help share videos</target> |
@@ -1239,7 +1241,13 @@ The link will expire within 1 hour.</target> | |||
1239 | <source>Videos</source> | 1241 | <source>Videos</source> |
1240 | <target>فیلمها</target> | 1242 | <target>فیلمها</target> |
1241 | 1243 | ||
1242 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1244 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1245 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1246 | <context-group purpose="location"> | ||
1247 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1248 | <context context-type="linenumber">171</context> | ||
1249 | </context-group> | ||
1250 | </trans-unit> | ||
1243 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1251 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1244 | <source>Playlists</source> | 1252 | <source>Playlists</source> |
1245 | <target state="new">Playlists</target> | 1253 | <target state="new">Playlists</target> |
@@ -1811,12 +1819,12 @@ The link will expire within 1 hour.</target> | |||
1811 | <source>Scheduled</source> | 1819 | <source>Scheduled</source> |
1812 | <target state="new">Scheduled</target> | 1820 | <target state="new">Scheduled</target> |
1813 | 1821 | ||
1814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1815 | <trans-unit id="1435317307066082710" datatype="html"> | 1823 | <trans-unit id="1435317307066082710" datatype="html"> |
1816 | <source>Hide the video until a specific date</source> | 1824 | <source>Hide the video until a specific date</source> |
1817 | <target state="new">Hide the video until a specific date</target> | 1825 | <target state="new">Hide the video until a specific date</target> |
1818 | 1826 | ||
1819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1820 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1828 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1821 | <source>Video background image</source> | 1829 | <source>Video background image</source> |
1822 | <target state="new">Video background image</target> | 1830 | <target state="new">Video background image</target> |
@@ -2486,7 +2494,7 @@ The link will expire within 1 hour.</target> | |||
2486 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2494 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2487 | <context context-type="linenumber">8</context> | 2495 | <context context-type="linenumber">8</context> |
2488 | </context-group> | 2496 | </context-group> |
2489 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2497 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2490 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2498 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2491 | <context-group purpose="location"> | 2499 | <context-group purpose="location"> |
2492 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2500 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4020,107 +4028,97 @@ The link will expire within 1 hour.</target> | |||
4020 | <source>Basic configuration</source> | 4028 | <source>Basic configuration</source> |
4021 | <target state="new">Basic configuration</target> | 4029 | <target state="new">Basic configuration</target> |
4022 | 4030 | ||
4023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4032 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4033 | <context-group purpose="location"> | ||
4034 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4035 | <context context-type="linenumber">700</context> | ||
4036 | </context-group> | ||
4037 | </trans-unit> | ||
4024 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4038 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4025 | <source>TWITTER</source> | 4039 | <source>TWITTER</source> |
4026 | <target state="new">TWITTER</target> | 4040 | <target state="new">TWITTER</target> |
4027 | 4041 | ||
4028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4029 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4043 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4030 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4044 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4031 | <target state="new"> | 4045 | <target state="new"> |
4032 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4046 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4033 | </target> | 4047 | </target> |
4034 | 4048 | ||
4035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4036 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4050 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4037 | <source>Your Twitter username</source> | 4051 | <source>Your Twitter username</source> |
4038 | <target>نامکاربری توییتر شما</target> | 4052 | <target>نامکاربری توییتر شما</target> |
4039 | 4053 | ||
4040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4041 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4055 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4042 | <source>Instance allowed by Twitter</source> | 4056 | <source>Instance allowed by Twitter</source> |
4043 | <target state="new">Instance allowed by Twitter</target> | 4057 | <target state="new">Instance allowed by Twitter</target> |
4044 | 4058 | ||
4045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4046 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4060 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4047 | 4061 | ||
4048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4049 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4063 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4050 | <source>LIVE</source><target state="new">LIVE</target> | 4064 | <source>LIVE</source><target state="new">LIVE</target> |
4051 | 4065 | ||
4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4053 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4067 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4054 | 4068 | ||
4055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4056 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4070 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4057 | 4071 | ||
4058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4059 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4073 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4060 | 4074 | ||
4061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4062 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4076 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4063 | 4077 | ||
4064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4065 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4079 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4066 | 4080 | ||
4067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4068 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4082 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4069 | <context-group purpose="location"> | 4083 | |
4070 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4071 | <context context-type="linenumber">751</context> | ||
4072 | </context-group> | ||
4073 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4074 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4085 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4075 | 4086 | ||
4076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4077 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4088 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4078 | <context-group purpose="location"> | 4089 | |
4079 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4080 | <context context-type="linenumber">759</context> | ||
4081 | </context-group> | ||
4082 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4083 | <source>Max live duration</source><target state="new">Max live duration</target> | 4091 | <source>Max live duration</source><target state="new">Max live duration</target> |
4084 | 4092 | ||
4085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4086 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4094 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4087 | 4095 | ||
4088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4089 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4097 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4090 | 4098 | ||
4091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4092 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4100 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4093 | 4101 | ||
4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4095 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4103 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4096 | 4104 | ||
4097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4098 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4106 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4099 | 4107 | ||
4100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4101 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4109 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4102 | <context-group purpose="location"> | ||
4103 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4104 | <context context-type="linenumber">793</context> | ||
4105 | </context-group> | ||
4106 | <context-group purpose="location"> | ||
4107 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4108 | <context context-type="linenumber">935</context> | ||
4109 | </context-group> | ||
4110 | </trans-unit> | ||
4111 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4112 | <source>Services</source> | ||
4113 | <target state="new">Services</target> | ||
4114 | 4110 | ||
4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4111 | |
4112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4113 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4116 | <source>Live streaming</source><target state="new">Live streaming</target> | 4114 | <source>Live streaming</source><target state="new">Live streaming</target> |
4117 | 4115 | ||
4118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4116 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4119 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4117 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4120 | <source>TRANSCODING</source> | 4118 | <source>TRANSCODING</source> |
4121 | <target state="new">TRANSCODING</target> | 4119 | <target state="new">TRANSCODING</target> |
4122 | 4120 | ||
4123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4124 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4122 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4125 | <source>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.</source> | 4123 | <source>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.</source> |
4126 | <target state="new"> | 4124 | <target state="new"> |
@@ -4128,55 +4126,53 @@ The link will expire within 1 hour.</target> | |||
4128 | resources, this is a critical part of PeerTube, so tread carefully. | 4126 | resources, this is a critical part of PeerTube, so tread carefully. |
4129 | </target> | 4127 | </target> |
4130 | 4128 | ||
4131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4132 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4130 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4133 | <source>Transcoding enabled</source> | 4131 | <source>Transcoding enabled</source> |
4134 | <target state="new">Transcoding enabled</target> | 4132 | <target state="new">Transcoding enabled</target> |
4135 | 4133 | ||
4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4137 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4135 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4138 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4136 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4139 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4137 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4140 | 4138 | ||
4141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4140 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4141 | |||
4142 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4143 | |||
4144 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4145 | <context-group purpose="location"> | ||
4146 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4147 | <context context-type="linenumber">759,763</context> | ||
4148 | </context-group> | ||
4149 | </trans-unit> | ||
4142 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4150 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4143 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4151 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4144 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4152 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4145 | 4153 | ||
4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4147 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4155 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4148 | <source>Allow additional extensions</source> | 4156 | <source>Allow additional extensions</source> |
4149 | <target state="new">Allow additional extensions</target> | 4157 | <target state="new">Allow additional extensions</target> |
4150 | 4158 | ||
4151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4152 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4160 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4153 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4161 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4154 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4162 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4155 | 4163 | ||
4156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4157 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4165 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4158 | <source>Allow audio files upload</source> | 4166 | <source>Allow audio files upload</source> |
4159 | <target state="new">Allow audio files upload</target> | 4167 | <target state="new">Allow audio files upload</target> |
4160 | 4168 | ||
4161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4162 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4170 | |
4163 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4164 | <target state="new"> | ||
4165 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4166 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4167 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4168 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4169 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4170 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4171 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4172 | </target> | ||
4173 | |||
4174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4175 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4171 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4176 | <source>WebTorrent support enabled</source> | 4172 | <source>WebTorrent support enabled</source> |
4177 | <target state="new">WebTorrent support enabled</target> | 4173 | <target state="new">WebTorrent support enabled</target> |
4178 | 4174 | ||
4179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4180 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4176 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4181 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4177 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4182 | <target state="new"> | 4178 | <target state="new"> |
@@ -4196,73 +4192,67 @@ The link will expire within 1 hour.</target> | |||
4196 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4192 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4197 | </target> | 4193 | </target> |
4198 | 4194 | ||
4199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4200 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4196 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4201 | <source>HLS with P2P support enabled</source> | 4197 | <source>HLS with P2P support enabled</source> |
4202 | <target state="new">HLS with P2P support enabled</target> | 4198 | <target state="new">HLS with P2P support enabled</target> |
4203 | 4199 | ||
4204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4205 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4201 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4206 | <source>Transcoding threads</source> | 4202 | <source>Transcoding threads</source> |
4207 | <target state="new">Transcoding threads</target> | 4203 | <target state="new">Transcoding threads</target> |
4208 | 4204 | ||
4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4210 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4206 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4211 | <source>Resolutions to generate</source> | 4207 | <source>Resolutions to generate</source> |
4212 | <target state="new">Resolutions to generate</target> | 4208 | <target state="new">Resolutions to generate</target> |
4213 | 4209 | ||
4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4215 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4211 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4216 | <source>CACHE</source> | 4212 | <source>CACHE</source> |
4217 | <target state="new">CACHE</target> | 4213 | <target state="new">CACHE</target> |
4218 | 4214 | ||
4219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4220 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4216 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4221 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4217 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4222 | <target state="new"> | 4218 | <target state="new"> |
4223 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4219 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4224 | </target> | 4220 | </target> |
4225 | 4221 | ||
4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4227 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4223 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4228 | <source>Number of previews to keep in cache</source> | 4224 | <source>Number of previews to keep in cache</source> |
4229 | <target state="new">Number of previews to keep in cache</target> | 4225 | <target state="new">Number of previews to keep in cache</target> |
4230 | 4226 | ||
4231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4232 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4228 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4233 | <context-group purpose="location"> | 4229 | |
4234 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4235 | <context context-type="linenumber">986</context> | ||
4236 | </context-group> | ||
4237 | </trans-unit> | ||
4238 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4231 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4239 | <source>Number of video captions to keep in cache</source> | 4232 | <source>Number of video captions to keep in cache</source> |
4240 | <target state="new">Number of video captions to keep in cache</target> | 4233 | <target state="new">Number of video captions to keep in cache</target> |
4241 | 4234 | ||
4242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4243 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4236 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4244 | <context-group purpose="location"> | 4237 | |
4245 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4246 | <context context-type="linenumber">998</context> | ||
4247 | </context-group> | ||
4248 | </trans-unit> | ||
4249 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4239 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4250 | <source>CUSTOMIZATIONS</source> | 4240 | <source>CUSTOMIZATIONS</source> |
4251 | <target state="new">CUSTOMIZATIONS</target> | 4241 | <target state="new">CUSTOMIZATIONS</target> |
4252 | 4242 | ||
4253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4254 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4244 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4255 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4245 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4256 | <target state="new"> | 4246 | <target state="new"> |
4257 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4247 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4258 | </target> | 4248 | </target> |
4259 | 4249 | ||
4260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4261 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4251 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4262 | <source>JavaScript</source> | 4252 | <source>JavaScript</source> |
4263 | <target>جاوااکسریپت</target> | 4253 | <target>جاوااکسریپت</target> |
4264 | 4254 | ||
4265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4266 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4256 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4267 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4257 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4268 | <target state="new"> | 4258 | <target state="new"> |
@@ -4272,7 +4262,7 @@ The link will expire within 1 hour.</target> | |||
4272 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4262 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4273 | </target> | 4263 | </target> |
4274 | 4264 | ||
4275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4276 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4266 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4277 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4267 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4278 | color: red; | 4268 | color: red; |
@@ -4304,23 +4294,23 @@ The link will expire within 1 hour.</target> | |||
4304 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4294 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4305 | </target> | 4295 | </target> |
4306 | 4296 | ||
4307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4308 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4298 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4309 | 4299 | ||
4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4311 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4301 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4312 | 4302 | ||
4313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4314 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4304 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4315 | <source>Advanced configuration</source> | 4305 | <source>Advanced configuration</source> |
4316 | <target state="new">Advanced configuration</target> | 4306 | <target state="new">Advanced configuration</target> |
4317 | 4307 | ||
4318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4319 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4309 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4320 | <source>Update configuration</source> | 4310 | <source>Update configuration</source> |
4321 | <target state="new">Update configuration</target> | 4311 | <target state="new">Update configuration</target> |
4322 | 4312 | ||
4323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4324 | 4314 | ||
4325 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4315 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4326 | <source>VIDEO SETTINGS</source> | 4316 | <source>VIDEO SETTINGS</source> |
@@ -7032,7 +7022,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7032 | <source>any language</source> | 7022 | <source>any language</source> |
7033 | <target state="new">any language</target> | 7023 | <target state="new">any language</target> |
7034 | 7024 | ||
7035 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7025 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7036 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7026 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7037 | 7027 | ||
7038 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7028 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7040,22 +7030,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7040 | <source>hide</source> | 7030 | <source>hide</source> |
7041 | <target state="new">hide</target> | 7031 | <target state="new">hide</target> |
7042 | 7032 | ||
7043 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7033 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7044 | <trans-unit id="8603861867909474404" datatype="html"> | 7034 | <trans-unit id="8603861867909474404" datatype="html"> |
7045 | <source>blur</source> | 7035 | <source>blur</source> |
7046 | <target state="new">blur</target> | 7036 | <target state="new">blur</target> |
7047 | 7037 | ||
7048 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7038 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7049 | <trans-unit id="4534458451100881847" datatype="html"> | 7039 | <trans-unit id="4534458451100881847" datatype="html"> |
7050 | <source>display</source> | 7040 | <source>display</source> |
7051 | <target state="new">display</target> | 7041 | <target state="new">display</target> |
7052 | 7042 | ||
7053 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7043 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7054 | <trans-unit id="4467323362722952678" datatype="html"> | 7044 | <trans-unit id="4467323362722952678" datatype="html"> |
7055 | <source>Unknown</source> | 7045 | <source>Unknown</source> |
7056 | <target state="new">Unknown</target> | 7046 | <target state="new">Unknown</target> |
7057 | 7047 | ||
7058 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7048 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7059 | <trans-unit id="8781423666414310853" datatype="html"> | 7049 | <trans-unit id="8781423666414310853" datatype="html"> |
7060 | <source>Your password has been successfully reset!</source> | 7050 | <source>Your password has been successfully reset!</source> |
7061 | <target state="new">Your password has been successfully reset!</target> | 7051 | <target state="new">Your password has been successfully reset!</target> |
@@ -8038,12 +8028,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8038 | <source>Instance languages</source> | 8028 | <source>Instance languages</source> |
8039 | <target state="new">Instance languages</target> | 8029 | <target state="new">Instance languages</target> |
8040 | 8030 | ||
8041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8042 | <trans-unit id="40119547597591062" datatype="html"> | 8032 | <trans-unit id="40119547597591062" datatype="html"> |
8043 | <source>All languages</source> | 8033 | <source>All languages</source> |
8044 | <target state="new">All languages</target> | 8034 | <target state="new">All languages</target> |
8045 | 8035 | ||
8046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8036 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8047 | <trans-unit id="996392855508119363" datatype="html"> | 8037 | <trans-unit id="996392855508119363" datatype="html"> |
8048 | <source>Hidden</source> | 8038 | <source>Hidden</source> |
8049 | <target state="new">Hidden</target> | 8039 | <target state="new">Hidden</target> |
@@ -8796,7 +8786,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8796 | <source>Only users of this instance can see this video</source> | 8786 | <source>Only users of this instance can see this video</source> |
8797 | <target state="new">Only users of this instance can see this video</target> | 8787 | <target state="new">Only users of this instance can see this video</target> |
8798 | 8788 | ||
8799 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8790 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8791 | <context-group purpose="location"> | ||
8792 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8793 | <context context-type="linenumber">211</context> | ||
8794 | </context-group> | ||
8795 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8796 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8797 | <context-group purpose="location"> | ||
8798 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8799 | <context context-type="linenumber">214</context> | ||
8800 | </context-group> | ||
8801 | </trans-unit> | ||
8800 | <trans-unit id="ngb.alert.close" datatype="html"> | 8802 | <trans-unit id="ngb.alert.close" datatype="html"> |
8801 | <source>Close</source> | 8803 | <source>Close</source> |
8802 | <target state="new">Close</target> | 8804 | <target state="new">Close</target> |
diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index 3f6571ca7..b9e817632 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf | |||
@@ -514,19 +514,27 @@ | |||
514 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 514 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
515 | </target> | 515 | </target> |
516 | 516 | ||
517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
518 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
519 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
520 | "/> </target> | ||
521 | <context-group purpose="location"> | ||
522 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
523 | <context context-type="linenumber">32,33</context> | ||
524 | </context-group> | ||
525 | </trans-unit> | ||
518 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 526 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
519 | <source>Blocked</source> | 527 | <source>Blocked</source> |
520 | <target state="new">Blocked</target> | 528 | <target state="new">Blocked</target> |
521 | 529 | ||
522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
523 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 531 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
524 | <source>Sensitive</source> | 532 | <source>Sensitive</source> |
525 | <target> | 533 | <target> |
526 | Arkaluonteinen | 534 | Arkaluonteinen |
527 | </target> | 535 | </target> |
528 | 536 | ||
529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 537 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
530 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 538 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
531 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 539 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
532 | <target>{VAR_PLURAL, plural, =0 {Ei videoita} =1 {Yksi video} other { | 540 | <target>{VAR_PLURAL, plural, =0 {Ei videoita} =1 {Yksi video} other { |
@@ -1327,13 +1335,7 @@ The link will expire within 1 hour.</target> | |||
1327 | <target state="new">Sensitive:</target> | 1335 | <target state="new">Sensitive:</target> |
1328 | 1336 | ||
1329 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1337 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1330 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1338 | |
1331 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1332 | <target state="new">Interface: | ||
1333 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1334 | </target> | ||
1335 | |||
1336 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1337 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1339 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1338 | <source>Help share videos</source> | 1340 | <source>Help share videos</source> |
1339 | <target state="new">Help share videos</target> | 1341 | <target state="new">Help share videos</target> |
@@ -1409,7 +1411,13 @@ The link will expire within 1 hour.</target> | |||
1409 | <source>Videos</source> | 1411 | <source>Videos</source> |
1410 | <target>Videot</target> | 1412 | <target>Videot</target> |
1411 | 1413 | ||
1412 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1415 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1416 | <context-group purpose="location"> | ||
1417 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1418 | <context context-type="linenumber">171</context> | ||
1419 | </context-group> | ||
1420 | </trans-unit> | ||
1413 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1421 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1414 | <source>Playlists</source> | 1422 | <source>Playlists</source> |
1415 | <target>Soittolistat</target> | 1423 | <target>Soittolistat</target> |
@@ -2034,12 +2042,12 @@ The link will expire within 1 hour.</target> | |||
2034 | <source>Scheduled</source> | 2042 | <source>Scheduled</source> |
2035 | <target>Ajoitettu</target> | 2043 | <target>Ajoitettu</target> |
2036 | 2044 | ||
2037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2038 | <trans-unit id="1435317307066082710" datatype="html"> | 2046 | <trans-unit id="1435317307066082710" datatype="html"> |
2039 | <source>Hide the video until a specific date</source> | 2047 | <source>Hide the video until a specific date</source> |
2040 | <target state="new">Hide the video until a specific date</target> | 2048 | <target state="new">Hide the video until a specific date</target> |
2041 | 2049 | ||
2042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2043 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 2051 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
2044 | <source>Video background image</source> | 2052 | <source>Video background image</source> |
2045 | <target>Videon taustakuva</target> | 2053 | <target>Videon taustakuva</target> |
@@ -2694,7 +2702,7 @@ The link will expire within 1 hour.</target> | |||
2694 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2702 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2695 | <context context-type="linenumber">8</context> | 2703 | <context context-type="linenumber">8</context> |
2696 | </context-group> | 2704 | </context-group> |
2697 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2705 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2698 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2706 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2699 | <context-group purpose="location"> | 2707 | <context-group purpose="location"> |
2700 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2708 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4328,12 +4336,18 @@ The link will expire within 1 hour.</target> | |||
4328 | <source>Basic configuration</source> | 4336 | <source>Basic configuration</source> |
4329 | <target>Peruskokoonpano</target> | 4337 | <target>Peruskokoonpano</target> |
4330 | 4338 | ||
4331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4340 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4341 | <context-group purpose="location"> | ||
4342 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4343 | <context context-type="linenumber">700</context> | ||
4344 | </context-group> | ||
4345 | </trans-unit> | ||
4332 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4346 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4333 | <source>TWITTER</source> | 4347 | <source>TWITTER</source> |
4334 | <target state="new">TWITTER</target> | 4348 | <target state="new">TWITTER</target> |
4335 | 4349 | ||
4336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4337 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4351 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4338 | <source> | 4352 | <source> |
4339 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4353 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4342,95 +4356,79 @@ The link will expire within 1 hour.</target> | |||
4342 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4356 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4343 | </target> | 4357 | </target> |
4344 | 4358 | ||
4345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4346 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4360 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4347 | <source>Your Twitter username</source> | 4361 | <source>Your Twitter username</source> |
4348 | <target>Sinun Twitter käyttäjänimi</target> | 4362 | <target>Sinun Twitter käyttäjänimi</target> |
4349 | 4363 | ||
4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4351 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4365 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4352 | <source>Instance allowed by Twitter</source> | 4366 | <source>Instance allowed by Twitter</source> |
4353 | <target state="new">Instance allowed by Twitter</target> | 4367 | <target state="new">Instance allowed by Twitter</target> |
4354 | 4368 | ||
4355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4356 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4370 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4357 | 4371 | ||
4358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4359 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4373 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4360 | <source>LIVE</source><target state="new">LIVE</target> | 4374 | <source>LIVE</source><target state="new">LIVE</target> |
4361 | 4375 | ||
4362 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4363 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4377 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4364 | 4378 | ||
4365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4366 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4380 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4367 | 4381 | ||
4368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4369 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4383 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4370 | 4384 | ||
4371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4372 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4386 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4373 | 4387 | ||
4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4375 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4389 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4376 | 4390 | ||
4377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4378 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4392 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4379 | <context-group purpose="location"> | 4393 | |
4380 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4381 | <context context-type="linenumber">751</context> | ||
4382 | </context-group> | ||
4383 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4384 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4395 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4385 | 4396 | ||
4386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4387 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4398 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4388 | <context-group purpose="location"> | 4399 | |
4389 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4390 | <context context-type="linenumber">759</context> | ||
4391 | </context-group> | ||
4392 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4393 | <source>Max live duration</source><target state="new">Max live duration</target> | 4401 | <source>Max live duration</source><target state="new">Max live duration</target> |
4394 | 4402 | ||
4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4396 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4404 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4397 | 4405 | ||
4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4399 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4407 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4400 | 4408 | ||
4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4402 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4410 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4403 | 4411 | ||
4404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4405 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4413 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4406 | 4414 | ||
4407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4408 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4416 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4409 | 4417 | ||
4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4411 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4419 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4412 | <context-group purpose="location"> | ||
4413 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4414 | <context context-type="linenumber">793</context> | ||
4415 | </context-group> | ||
4416 | <context-group purpose="location"> | ||
4417 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4418 | <context context-type="linenumber">935</context> | ||
4419 | </context-group> | ||
4420 | </trans-unit> | ||
4421 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4422 | <source>Services</source> | ||
4423 | <target>Palvelut</target> | ||
4424 | 4420 | ||
4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4421 | |
4422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4423 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4426 | <source>Live streaming</source><target state="new">Live streaming</target> | 4424 | <source>Live streaming</source><target state="new">Live streaming</target> |
4427 | 4425 | ||
4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4429 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4427 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4430 | <source>TRANSCODING</source> | 4428 | <source>TRANSCODING</source> |
4431 | <target state="new">TRANSCODING</target> | 4429 | <target state="new">TRANSCODING</target> |
4432 | 4430 | ||
4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4434 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4432 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4435 | <source> 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. </source> | 4433 | <source> 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. </source> |
4436 | <target state="new"> | 4434 | <target state="new"> |
@@ -4438,55 +4436,53 @@ The link will expire within 1 hour.</target> | |||
4438 | resources, this is a critical part of PeerTube, so tread carefully. | 4436 | resources, this is a critical part of PeerTube, so tread carefully. |
4439 | </target> | 4437 | </target> |
4440 | 4438 | ||
4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4442 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4440 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4443 | <source>Transcoding enabled</source> | 4441 | <source>Transcoding enabled</source> |
4444 | <target>Transkoodaus on päällä</target> | 4442 | <target>Transkoodaus on päällä</target> |
4445 | 4443 | ||
4446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4447 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4445 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4448 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4446 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4449 | <target>Jos poistat transkoodauksen käytöstä, niin moni video käyttäjiltäsi lakkaa toimimasta!</target> | 4447 | <target>Jos poistat transkoodauksen käytöstä, niin moni video käyttäjiltäsi lakkaa toimimasta!</target> |
4450 | 4448 | ||
4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4450 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4451 | |||
4452 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4453 | |||
4454 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4455 | <context-group purpose="location"> | ||
4456 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4457 | <context context-type="linenumber">759,763</context> | ||
4458 | </context-group> | ||
4459 | </trans-unit> | ||
4452 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4460 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4453 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4461 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4454 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4462 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4455 | 4463 | ||
4456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4457 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4465 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4458 | <source>Allow additional extensions</source> | 4466 | <source>Allow additional extensions</source> |
4459 | <target>Salli muita tiedostopäätteitä</target> | 4467 | <target>Salli muita tiedostopäätteitä</target> |
4460 | 4468 | ||
4461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4462 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4470 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4463 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4471 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4464 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4472 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4465 | 4473 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4467 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 4475 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
4468 | <source>Allow audio files upload</source> | 4476 | <source>Allow audio files upload</source> |
4469 | <target>Salli äänitiedostojen lataus</target> | 4477 | <target>Salli äänitiedostojen lataus</target> |
4470 | 4478 | ||
4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4472 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4480 | |
4473 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4474 | <target state="new"> | ||
4475 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4476 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4477 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4478 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4479 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4480 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4481 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4482 | </target> | ||
4483 | |||
4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4485 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4481 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4486 | <source>WebTorrent support enabled</source> | 4482 | <source>WebTorrent support enabled</source> |
4487 | <target state="new">WebTorrent support enabled</target> | 4483 | <target state="new">WebTorrent support enabled</target> |
4488 | 4484 | ||
4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4490 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4486 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4491 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4487 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4492 | <target state="new"> | 4488 | <target state="new"> |
@@ -4506,27 +4502,27 @@ The link will expire within 1 hour.</target> | |||
4506 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4502 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4507 | </target> | 4503 | </target> |
4508 | 4504 | ||
4509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4510 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4506 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4511 | <source>HLS with P2P support enabled</source> | 4507 | <source>HLS with P2P support enabled</source> |
4512 | <target state="new">HLS with P2P support enabled</target> | 4508 | <target state="new">HLS with P2P support enabled</target> |
4513 | 4509 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4515 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4511 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4516 | <source>Transcoding threads</source> | 4512 | <source>Transcoding threads</source> |
4517 | <target>Transkoodaussäiteet</target> | 4513 | <target>Transkoodaussäiteet</target> |
4518 | 4514 | ||
4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4520 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4516 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4521 | <source>Resolutions to generate</source> | 4517 | <source>Resolutions to generate</source> |
4522 | <target state="new">Resolutions to generate</target> | 4518 | <target state="new">Resolutions to generate</target> |
4523 | 4519 | ||
4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4525 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4521 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4526 | <source>CACHE</source> | 4522 | <source>CACHE</source> |
4527 | <target state="new">CACHE</target> | 4523 | <target state="new">CACHE</target> |
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4530 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4526 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4531 | <source> | 4527 | <source> |
4532 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4528 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4535,34 +4531,28 @@ The link will expire within 1 hour.</target> | |||
4535 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4531 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4536 | </target> | 4532 | </target> |
4537 | 4533 | ||
4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4539 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4535 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4540 | <source>Number of previews to keep in cache</source> | 4536 | <source>Number of previews to keep in cache</source> |
4541 | <target state="new">Number of previews to keep in cache</target> | 4537 | <target state="new">Number of previews to keep in cache</target> |
4542 | 4538 | ||
4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4544 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4540 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4545 | <context-group purpose="location"> | 4541 | |
4546 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4547 | <context context-type="linenumber">986</context> | ||
4548 | </context-group> | ||
4549 | </trans-unit> | ||
4550 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4543 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4551 | <source>Number of video captions to keep in cache</source> | 4544 | <source>Number of video captions to keep in cache</source> |
4552 | <target state="new">Number of video captions to keep in cache</target> | 4545 | <target state="new">Number of video captions to keep in cache</target> |
4553 | 4546 | ||
4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4555 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4548 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4556 | <context-group purpose="location"> | 4549 | |
4557 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4558 | <context context-type="linenumber">998</context> | ||
4559 | </context-group> | ||
4560 | </trans-unit> | ||
4561 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4551 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4562 | <source>CUSTOMIZATIONS</source> | 4552 | <source>CUSTOMIZATIONS</source> |
4563 | <target state="new">CUSTOMIZATIONS</target> | 4553 | <target state="new">CUSTOMIZATIONS</target> |
4564 | 4554 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4566 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4556 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4567 | <source> | 4557 | <source> |
4568 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4558 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4571,12 +4561,12 @@ The link will expire within 1 hour.</target> | |||
4571 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4561 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4572 | </target> | 4562 | </target> |
4573 | 4563 | ||
4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4575 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4565 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4576 | <source>JavaScript</source> | 4566 | <source>JavaScript</source> |
4577 | <target>JavaScript</target> | 4567 | <target>JavaScript</target> |
4578 | 4568 | ||
4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4580 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4570 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4581 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4571 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4582 | <target state="new"> | 4572 | <target state="new"> |
@@ -4586,7 +4576,7 @@ The link will expire within 1 hour.</target> | |||
4586 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4576 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4587 | </target> | 4577 | </target> |
4588 | 4578 | ||
4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4590 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4580 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4591 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4581 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4592 | color: red; | 4582 | color: red; |
@@ -4618,23 +4608,23 @@ The link will expire within 1 hour.</target> | |||
4618 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4608 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4619 | </target> | 4609 | </target> |
4620 | 4610 | ||
4621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4622 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4612 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4623 | 4613 | ||
4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4625 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4615 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4626 | 4616 | ||
4627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4628 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4618 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4629 | <source>Advanced configuration</source> | 4619 | <source>Advanced configuration</source> |
4630 | <target>Lisäasetukset</target> | 4620 | <target>Lisäasetukset</target> |
4631 | 4621 | ||
4632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4633 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4623 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4634 | <source>Update configuration</source> | 4624 | <source>Update configuration</source> |
4635 | <target>Päivitä konfiguraatio</target> | 4625 | <target>Päivitä konfiguraatio</target> |
4636 | 4626 | ||
4637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4638 | 4628 | ||
4639 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4629 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4640 | <source>VIDEO SETTINGS</source> | 4630 | <source>VIDEO SETTINGS</source> |
@@ -7371,7 +7361,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7371 | <source>any language</source> | 7361 | <source>any language</source> |
7372 | <target state="new">any language</target> | 7362 | <target state="new">any language</target> |
7373 | 7363 | ||
7374 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7375 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7365 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7376 | 7366 | ||
7377 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7379,22 +7369,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7379 | <source>hide</source> | 7369 | <source>hide</source> |
7380 | <target state="new">hide</target> | 7370 | <target state="new">hide</target> |
7381 | 7371 | ||
7382 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7372 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7383 | <trans-unit id="8603861867909474404" datatype="html"> | 7373 | <trans-unit id="8603861867909474404" datatype="html"> |
7384 | <source>blur</source> | 7374 | <source>blur</source> |
7385 | <target state="new">blur</target> | 7375 | <target state="new">blur</target> |
7386 | 7376 | ||
7387 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7377 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7388 | <trans-unit id="4534458451100881847" datatype="html"> | 7378 | <trans-unit id="4534458451100881847" datatype="html"> |
7389 | <source>display</source> | 7379 | <source>display</source> |
7390 | <target state="new">display</target> | 7380 | <target state="new">display</target> |
7391 | 7381 | ||
7392 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7382 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7393 | <trans-unit id="4467323362722952678" datatype="html"> | 7383 | <trans-unit id="4467323362722952678" datatype="html"> |
7394 | <source>Unknown</source> | 7384 | <source>Unknown</source> |
7395 | <target state="new">Unknown</target> | 7385 | <target state="new">Unknown</target> |
7396 | 7386 | ||
7397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7387 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7398 | <trans-unit id="8781423666414310853" datatype="html"> | 7388 | <trans-unit id="8781423666414310853" datatype="html"> |
7399 | <source>Your password has been successfully reset!</source> | 7389 | <source>Your password has been successfully reset!</source> |
7400 | <target state="new">Your password has been successfully reset!</target> | 7390 | <target state="new">Your password has been successfully reset!</target> |
@@ -8406,13 +8396,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8406 | <source>Instance languages</source> | 8396 | <source>Instance languages</source> |
8407 | <target state="new">Instance languages</target> | 8397 | <target state="new">Instance languages</target> |
8408 | 8398 | ||
8409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8410 | <trans-unit id="40119547597591062" datatype="html"> | 8400 | <trans-unit id="40119547597591062" datatype="html"> |
8411 | <source>All languages</source> | 8401 | <source>All languages</source> |
8412 | <target state="new">All languages</target> | 8402 | <target state="new">All languages</target> |
8413 | 8403 | ||
8414 | 8404 | ||
8415 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8416 | <trans-unit id="996392855508119363"> | 8406 | <trans-unit id="996392855508119363"> |
8417 | <source>Hidden</source> | 8407 | <source>Hidden</source> |
8418 | <target>Piilotettu</target> | 8408 | <target>Piilotettu</target> |
@@ -9182,7 +9172,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9182 | <source>Only users of this instance can see this video</source> | 9172 | <source>Only users of this instance can see this video</source> |
9183 | <target state="new">Only users of this instance can see this video</target> | 9173 | <target state="new">Only users of this instance can see this video</target> |
9184 | 9174 | ||
9185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9176 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9177 | <context-group purpose="location"> | ||
9178 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9179 | <context context-type="linenumber">211</context> | ||
9180 | </context-group> | ||
9181 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9182 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9183 | <context-group purpose="location"> | ||
9184 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9185 | <context context-type="linenumber">214</context> | ||
9186 | </context-group> | ||
9187 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9186 | <source>Close</source><target state="new">Close</target> | 9188 | <source>Close</source><target state="new">Close</target> |
9187 | 9189 | ||
9188 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9190 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.gd.xlf b/client/src/locale/angular.gd.xlf index d748396cf..698844664 100644 --- a/client/src/locale/angular.gd.xlf +++ b/client/src/locale/angular.gd.xlf | |||
@@ -501,17 +501,25 @@ | |||
501 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 501 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
502 | </target> | 502 | </target> |
503 | 503 | ||
504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
505 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
506 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
507 | "/> </target> | ||
508 | <context-group purpose="location"> | ||
509 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
510 | <context context-type="linenumber">32,33</context> | ||
511 | </context-group> | ||
512 | </trans-unit> | ||
505 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 513 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
506 | <source>Blocked</source> | 514 | <source>Blocked</source> |
507 | <target state="new">Blocked</target> | 515 | <target state="new">Blocked</target> |
508 | 516 | ||
509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
510 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 518 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
511 | <source>Sensitive</source> | 519 | <source>Sensitive</source> |
512 | <target state="translated">Dìomhair</target> | 520 | <target state="translated">Dìomhair</target> |
513 | 521 | ||
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
515 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 523 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
516 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 524 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
517 | <target state="translated">{VAR_PLURAL, plural, =0 {Gun video} =1 {1 video} one { | 525 | <target state="translated">{VAR_PLURAL, plural, =0 {Gun video} =1 {1 video} one { |
@@ -1325,13 +1333,7 @@ The link will expire within 1 hour.</target> | |||
1325 | <target state="new">Sensitive:</target> | 1333 | <target state="new">Sensitive:</target> |
1326 | 1334 | ||
1327 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1328 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1336 | |
1329 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1330 | <target state="new">Interface: | ||
1331 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1332 | </target> | ||
1333 | |||
1334 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1335 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1337 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1336 | <source>Help share videos</source> | 1338 | <source>Help share videos</source> |
1337 | <target state="new">Help share videos</target> | 1339 | <target state="new">Help share videos</target> |
@@ -1407,7 +1409,13 @@ The link will expire within 1 hour.</target> | |||
1407 | <source>Videos</source> | 1409 | <source>Videos</source> |
1408 | <target state="translated">Videothan</target> | 1410 | <target state="translated">Videothan</target> |
1409 | 1411 | ||
1410 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1412 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1413 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1414 | <context-group purpose="location"> | ||
1415 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1416 | <context context-type="linenumber">171</context> | ||
1417 | </context-group> | ||
1418 | </trans-unit> | ||
1411 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1419 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1412 | <source>Playlists</source> | 1420 | <source>Playlists</source> |
1413 | <target state="translated">Liostaichean-cluich</target> | 1421 | <target state="translated">Liostaichean-cluich</target> |
@@ -2022,12 +2030,12 @@ The link will expire within 1 hour.</target> | |||
2022 | <source>Scheduled</source> | 2030 | <source>Scheduled</source> |
2023 | <target state="translated">Sgeidealaichte</target> | 2031 | <target state="translated">Sgeidealaichte</target> |
2024 | 2032 | ||
2025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2026 | <trans-unit id="1435317307066082710" datatype="html"> | 2034 | <trans-unit id="1435317307066082710" datatype="html"> |
2027 | <source>Hide the video until a specific date</source> | 2035 | <source>Hide the video until a specific date</source> |
2028 | <target state="new">Hide the video until a specific date</target> | 2036 | <target state="new">Hide the video until a specific date</target> |
2029 | 2037 | ||
2030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2031 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2039 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2032 | <source>Video background image</source> | 2040 | <source>Video background image</source> |
2033 | <target state="translated">Dealbh cùlaibh video</target> | 2041 | <target state="translated">Dealbh cùlaibh video</target> |
@@ -2664,7 +2672,7 @@ The link will expire within 1 hour.</target> | |||
2664 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2672 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2665 | <context context-type="linenumber">8</context> | 2673 | <context context-type="linenumber">8</context> |
2666 | </context-group> | 2674 | </context-group> |
2667 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2675 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2668 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2676 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2669 | <context-group purpose="location"> | 2677 | <context-group purpose="location"> |
2670 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2678 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4292,12 +4300,18 @@ The link will expire within 1 hour.</target> | |||
4292 | <source>Basic configuration</source> | 4300 | <source>Basic configuration</source> |
4293 | <target state="translated">Rèiteachadh bunasach</target> | 4301 | <target state="translated">Rèiteachadh bunasach</target> |
4294 | 4302 | ||
4295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4304 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4305 | <context-group purpose="location"> | ||
4306 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4307 | <context context-type="linenumber">700</context> | ||
4308 | </context-group> | ||
4309 | </trans-unit> | ||
4296 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4310 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4297 | <source>TWITTER</source> | 4311 | <source>TWITTER</source> |
4298 | <target state="new">TWITTER</target> | 4312 | <target state="new">TWITTER</target> |
4299 | 4313 | ||
4300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4301 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4315 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4302 | <source> | 4316 | <source> |
4303 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4317 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4306,95 +4320,79 @@ The link will expire within 1 hour.</target> | |||
4306 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4320 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4307 | </target> | 4321 | </target> |
4308 | 4322 | ||
4309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4310 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4324 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4311 | <source>Your Twitter username</source> | 4325 | <source>Your Twitter username</source> |
4312 | <target state="translated">An t-ainm-cleachdaiche Twitter agad</target> | 4326 | <target state="translated">An t-ainm-cleachdaiche Twitter agad</target> |
4313 | 4327 | ||
4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4315 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4329 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4316 | <source>Instance allowed by Twitter</source> | 4330 | <source>Instance allowed by Twitter</source> |
4317 | <target state="new">Instance allowed by Twitter</target> | 4331 | <target state="new">Instance allowed by Twitter</target> |
4318 | 4332 | ||
4319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4320 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4334 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4321 | 4335 | ||
4322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4323 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4337 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4324 | <source>LIVE</source><target state="new">LIVE</target> | 4338 | <source>LIVE</source><target state="new">LIVE</target> |
4325 | 4339 | ||
4326 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4327 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4341 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4328 | 4342 | ||
4329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4330 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4344 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4331 | 4345 | ||
4332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4333 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4347 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4334 | 4348 | ||
4335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4336 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4350 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4337 | 4351 | ||
4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4339 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4353 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4340 | 4354 | ||
4341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4342 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4356 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4343 | <context-group purpose="location"> | 4357 | |
4344 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4345 | <context context-type="linenumber">751</context> | ||
4346 | </context-group> | ||
4347 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4348 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4359 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4349 | 4360 | ||
4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4351 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4362 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4352 | <context-group purpose="location"> | 4363 | |
4353 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4354 | <context context-type="linenumber">759</context> | ||
4355 | </context-group> | ||
4356 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4357 | <source>Max live duration</source><target state="new">Max live duration</target> | 4365 | <source>Max live duration</source><target state="new">Max live duration</target> |
4358 | 4366 | ||
4359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4360 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4368 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4361 | 4369 | ||
4362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4363 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4371 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4364 | 4372 | ||
4365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4366 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4374 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4367 | 4375 | ||
4368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4369 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4377 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4370 | 4378 | ||
4371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4372 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4380 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4373 | 4381 | ||
4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4375 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4383 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4376 | <context-group purpose="location"> | ||
4377 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4378 | <context context-type="linenumber">793</context> | ||
4379 | </context-group> | ||
4380 | <context-group purpose="location"> | ||
4381 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4382 | <context context-type="linenumber">935</context> | ||
4383 | </context-group> | ||
4384 | </trans-unit> | ||
4385 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4386 | <source>Services</source> | ||
4387 | <target state="translated">Seirbheisean</target> | ||
4388 | 4384 | ||
4389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4385 | |
4386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4387 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4390 | <source>Live streaming</source><target state="new">Live streaming</target> | 4388 | <source>Live streaming</source><target state="new">Live streaming</target> |
4391 | 4389 | ||
4392 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4393 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4391 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4394 | <source>TRANSCODING</source> | 4392 | <source>TRANSCODING</source> |
4395 | <target state="new">TRANSCODING</target> | 4393 | <target state="new">TRANSCODING</target> |
4396 | 4394 | ||
4397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4398 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4396 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4399 | <source> 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. </source> | 4397 | <source> 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. </source> |
4400 | <target state="new"> | 4398 | <target state="new"> |
@@ -4402,55 +4400,53 @@ The link will expire within 1 hour.</target> | |||
4402 | resources, this is a critical part of PeerTube, so tread carefully. | 4400 | resources, this is a critical part of PeerTube, so tread carefully. |
4403 | </target> | 4401 | </target> |
4404 | 4402 | ||
4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4406 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4404 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4407 | <source>Transcoding enabled</source> | 4405 | <source>Transcoding enabled</source> |
4408 | <target state="translated">Tha tar-chòdachadh an comas</target> | 4406 | <target state="translated">Tha tar-chòdachadh an comas</target> |
4409 | 4407 | ||
4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4411 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4409 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4412 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4410 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4413 | <target state="translated">Ma chuireas tu an tar-chòdachadh à comas, feumaidh gum bi mòran videothan aig na cleachdaichean agad nach obraich!</target> | 4411 | <target state="translated">Ma chuireas tu an tar-chòdachadh à comas, feumaidh gum bi mòran videothan aig na cleachdaichean agad nach obraich!</target> |
4414 | 4412 | ||
4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4414 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4415 | |||
4416 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4417 | |||
4418 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4419 | <context-group purpose="location"> | ||
4420 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4421 | <context context-type="linenumber">759,763</context> | ||
4422 | </context-group> | ||
4423 | </trans-unit> | ||
4416 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4424 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4417 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4425 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4418 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4426 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4419 | 4427 | ||
4420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4421 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4429 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4422 | <source>Allow additional extensions</source> | 4430 | <source>Allow additional extensions</source> |
4423 | <target state="translated">Ceadaich leudachain a bharrachd</target> | 4431 | <target state="translated">Ceadaich leudachain a bharrachd</target> |
4424 | 4432 | ||
4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4426 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4434 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4427 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4435 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4428 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4436 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4429 | 4437 | ||
4430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4431 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4439 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4432 | <source>Allow audio files upload</source> | 4440 | <source>Allow audio files upload</source> |
4433 | <target state="translated">Ceadaich luchdadh suas faidhlichean fuaime</target> | 4441 | <target state="translated">Ceadaich luchdadh suas faidhlichean fuaime</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4436 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4444 | |
4437 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4438 | <target state="new"> | ||
4439 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4440 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4441 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4442 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4443 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4444 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4445 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4446 | </target> | ||
4447 | |||
4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4449 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4445 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4450 | <source>WebTorrent support enabled</source> | 4446 | <source>WebTorrent support enabled</source> |
4451 | <target state="new">WebTorrent support enabled</target> | 4447 | <target state="new">WebTorrent support enabled</target> |
4452 | 4448 | ||
4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4454 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4450 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4455 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4451 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4456 | <target state="new"> | 4452 | <target state="new"> |
@@ -4470,27 +4466,27 @@ The link will expire within 1 hour.</target> | |||
4470 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4466 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4471 | </target> | 4467 | </target> |
4472 | 4468 | ||
4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4474 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4470 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4475 | <source>HLS with P2P support enabled</source> | 4471 | <source>HLS with P2P support enabled</source> |
4476 | <target state="new">HLS with P2P support enabled</target> | 4472 | <target state="new">HLS with P2P support enabled</target> |
4477 | 4473 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4479 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4475 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4480 | <source>Transcoding threads</source> | 4476 | <source>Transcoding threads</source> |
4481 | <target state="translated">Snàithleanan tar-chòdachaidh</target> | 4477 | <target state="translated">Snàithleanan tar-chòdachaidh</target> |
4482 | 4478 | ||
4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4484 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4480 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4485 | <source>Resolutions to generate</source> | 4481 | <source>Resolutions to generate</source> |
4486 | <target state="new">Resolutions to generate</target> | 4482 | <target state="new">Resolutions to generate</target> |
4487 | 4483 | ||
4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4489 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4485 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4490 | <source>CACHE</source> | 4486 | <source>CACHE</source> |
4491 | <target state="new">CACHE</target> | 4487 | <target state="new">CACHE</target> |
4492 | 4488 | ||
4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4494 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4490 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4495 | <source> | 4491 | <source> |
4496 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4492 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4499,34 +4495,28 @@ The link will expire within 1 hour.</target> | |||
4499 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4495 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4500 | </target> | 4496 | </target> |
4501 | 4497 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4503 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4499 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4504 | <source>Number of previews to keep in cache</source> | 4500 | <source>Number of previews to keep in cache</source> |
4505 | <target state="new">Number of previews to keep in cache</target> | 4501 | <target state="new">Number of previews to keep in cache</target> |
4506 | 4502 | ||
4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4508 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4504 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4509 | <context-group purpose="location"> | 4505 | |
4510 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4511 | <context context-type="linenumber">986</context> | ||
4512 | </context-group> | ||
4513 | </trans-unit> | ||
4514 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4507 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4515 | <source>Number of video captions to keep in cache</source> | 4508 | <source>Number of video captions to keep in cache</source> |
4516 | <target state="new">Number of video captions to keep in cache</target> | 4509 | <target state="new">Number of video captions to keep in cache</target> |
4517 | 4510 | ||
4518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4519 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4512 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4520 | <context-group purpose="location"> | 4513 | |
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4522 | <context context-type="linenumber">998</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4515 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4526 | <source>CUSTOMIZATIONS</source> | 4516 | <source>CUSTOMIZATIONS</source> |
4527 | <target state="new">CUSTOMIZATIONS</target> | 4517 | <target state="new">CUSTOMIZATIONS</target> |
4528 | 4518 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4530 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4520 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4531 | <source> | 4521 | <source> |
4532 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4522 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4535,12 +4525,12 @@ The link will expire within 1 hour.</target> | |||
4535 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4525 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4536 | </target> | 4526 | </target> |
4537 | 4527 | ||
4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4539 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4529 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4540 | <source>JavaScript</source> | 4530 | <source>JavaScript</source> |
4541 | <target state="translated">JavaScript</target> | 4531 | <target state="translated">JavaScript</target> |
4542 | 4532 | ||
4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4544 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4534 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4545 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4535 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4546 | <target state="new"> | 4536 | <target state="new"> |
@@ -4550,7 +4540,7 @@ The link will expire within 1 hour.</target> | |||
4550 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4540 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4551 | </target> | 4541 | </target> |
4552 | 4542 | ||
4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4554 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4544 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4555 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4545 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4556 | color: red; | 4546 | color: red; |
@@ -4582,23 +4572,23 @@ The link will expire within 1 hour.</target> | |||
4582 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4572 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4583 | </target> | 4573 | </target> |
4584 | 4574 | ||
4585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4586 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4576 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4587 | 4577 | ||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4589 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4579 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4590 | 4580 | ||
4591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4592 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4582 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4593 | <source>Advanced configuration</source> | 4583 | <source>Advanced configuration</source> |
4594 | <target state="translated">Rèiteachadh adhartach</target> | 4584 | <target state="translated">Rèiteachadh adhartach</target> |
4595 | 4585 | ||
4596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4597 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4587 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4598 | <source>Update configuration</source> | 4588 | <source>Update configuration</source> |
4599 | <target state="translated">Ùraich an rèiteachadh</target> | 4589 | <target state="translated">Ùraich an rèiteachadh</target> |
4600 | 4590 | ||
4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4602 | 4592 | ||
4603 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4593 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4604 | <source>VIDEO SETTINGS</source> | 4594 | <source>VIDEO SETTINGS</source> |
@@ -7331,7 +7321,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7331 | <source>any language</source> | 7321 | <source>any language</source> |
7332 | <target state="new">any language</target> | 7322 | <target state="new">any language</target> |
7333 | 7323 | ||
7334 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7324 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7335 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7325 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7336 | 7326 | ||
7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7327 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7339,22 +7329,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7339 | <source>hide</source> | 7329 | <source>hide</source> |
7340 | <target state="new">hide</target> | 7330 | <target state="new">hide</target> |
7341 | 7331 | ||
7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7343 | <trans-unit id="8603861867909474404" datatype="html"> | 7333 | <trans-unit id="8603861867909474404" datatype="html"> |
7344 | <source>blur</source> | 7334 | <source>blur</source> |
7345 | <target state="new">blur</target> | 7335 | <target state="new">blur</target> |
7346 | 7336 | ||
7347 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7348 | <trans-unit id="4534458451100881847" datatype="html"> | 7338 | <trans-unit id="4534458451100881847" datatype="html"> |
7349 | <source>display</source> | 7339 | <source>display</source> |
7350 | <target state="new">display</target> | 7340 | <target state="new">display</target> |
7351 | 7341 | ||
7352 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7353 | <trans-unit id="4467323362722952678" datatype="html"> | 7343 | <trans-unit id="4467323362722952678" datatype="html"> |
7354 | <source>Unknown</source> | 7344 | <source>Unknown</source> |
7355 | <target state="new">Unknown</target> | 7345 | <target state="new">Unknown</target> |
7356 | 7346 | ||
7357 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7347 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7358 | <trans-unit id="8781423666414310853" datatype="html"> | 7348 | <trans-unit id="8781423666414310853" datatype="html"> |
7359 | <source>Your password has been successfully reset!</source> | 7349 | <source>Your password has been successfully reset!</source> |
7360 | <target state="new">Your password has been successfully reset!</target> | 7350 | <target state="new">Your password has been successfully reset!</target> |
@@ -8366,13 +8356,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8366 | <source>Instance languages</source> | 8356 | <source>Instance languages</source> |
8367 | <target state="new">Instance languages</target> | 8357 | <target state="new">Instance languages</target> |
8368 | 8358 | ||
8369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8370 | <trans-unit id="40119547597591062" datatype="html"> | 8360 | <trans-unit id="40119547597591062" datatype="html"> |
8371 | <source>All languages</source> | 8361 | <source>All languages</source> |
8372 | <target state="new">All languages</target> | 8362 | <target state="new">All languages</target> |
8373 | 8363 | ||
8374 | 8364 | ||
8375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8365 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8376 | <trans-unit id="996392855508119363" datatype="html"> | 8366 | <trans-unit id="996392855508119363" datatype="html"> |
8377 | <source>Hidden</source> | 8367 | <source>Hidden</source> |
8378 | <target state="new">Hidden</target> | 8368 | <target state="new">Hidden</target> |
@@ -9142,7 +9132,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9142 | <source>Only users of this instance can see this video</source> | 9132 | <source>Only users of this instance can see this video</source> |
9143 | <target state="new">Only users of this instance can see this video</target> | 9133 | <target state="new">Only users of this instance can see this video</target> |
9144 | 9134 | ||
9145 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9135 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9136 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9137 | <context-group purpose="location"> | ||
9138 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9139 | <context context-type="linenumber">211</context> | ||
9140 | </context-group> | ||
9141 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9142 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9143 | <context-group purpose="location"> | ||
9144 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9145 | <context context-type="linenumber">214</context> | ||
9146 | </context-group> | ||
9147 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9146 | <source>Close</source><target state="new">Close</target> | 9148 | <source>Close</source><target state="new">Close</target> |
9147 | 9149 | ||
9148 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9150 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.hu-HU.xlf b/client/src/locale/angular.hu-HU.xlf index 271ec149b..8f4605869 100644 --- a/client/src/locale/angular.hu-HU.xlf +++ b/client/src/locale/angular.hu-HU.xlf | |||
@@ -306,17 +306,25 @@ | |||
306 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 306 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
307 | <target state="translated">{VAR_PLURAL, plural, =1 {1 megtekintés} other { <x id="INTERPOLATION"/> megtekintés} }</target> | 307 | <target state="translated">{VAR_PLURAL, plural, =1 {1 megtekintés} other { <x id="INTERPOLATION"/> megtekintés} }</target> |
308 | 308 | ||
309 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 309 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
310 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
311 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
312 | "/> </target> | ||
313 | <context-group purpose="location"> | ||
314 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
315 | <context context-type="linenumber">32,33</context> | ||
316 | </context-group> | ||
317 | </trans-unit> | ||
310 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 318 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
311 | <source>Blocked</source> | 319 | <source>Blocked</source> |
312 | <target state="translated">Letiltva</target> | 320 | <target state="translated">Letiltva</target> |
313 | 321 | ||
314 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
315 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 323 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
316 | <source>Sensitive</source> | 324 | <source>Sensitive</source> |
317 | <target state="translated">Érzékeny</target> | 325 | <target state="translated">Érzékeny</target> |
318 | 326 | ||
319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
320 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 328 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
321 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 329 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
322 | <target>{VAR_PLURAL, plural, =0 {Nincs videó} =1 {1 videó} other { <x id="INTERPOLATION"/> videó} }</target> | 330 | <target>{VAR_PLURAL, plural, =0 {Nincs videó} =1 {1 videó} other { <x id="INTERPOLATION"/> videó} }</target> |
@@ -994,11 +1002,7 @@ The link will expire within 1 hour.</source> | |||
994 | <target state="translated">Érzékeny:</target> | 1002 | <target state="translated">Érzékeny:</target> |
995 | 1003 | ||
996 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1004 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
997 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1005 | |
998 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
999 | <target state="translated">Felület: <x id="INTERPOLATION"/></target> | ||
1000 | |||
1001 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1002 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1006 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1003 | <source>Help share videos</source> | 1007 | <source>Help share videos</source> |
1004 | <target state="translated">Segítség videók megosztásában</target> | 1008 | <target state="translated">Segítség videók megosztásában</target> |
@@ -1082,7 +1086,13 @@ The link will expire within 1 hour.</source> | |||
1082 | <source>Videos</source> | 1086 | <source>Videos</source> |
1083 | <target>Videók</target> | 1087 | <target>Videók</target> |
1084 | 1088 | ||
1085 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1089 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1090 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1091 | <context-group purpose="location"> | ||
1092 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1093 | <context context-type="linenumber">171</context> | ||
1094 | </context-group> | ||
1095 | </trans-unit> | ||
1086 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1096 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1087 | <source>Playlists</source> | 1097 | <source>Playlists</source> |
1088 | <target>Lejátszási listák</target> | 1098 | <target>Lejátszási listák</target> |
@@ -1628,12 +1638,12 @@ The link will expire within 1 hour.</source> | |||
1628 | <source>Scheduled</source> | 1638 | <source>Scheduled</source> |
1629 | <target>Ütemezett</target> | 1639 | <target>Ütemezett</target> |
1630 | 1640 | ||
1631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1632 | <trans-unit id="1435317307066082710" datatype="html"> | 1642 | <trans-unit id="1435317307066082710" datatype="html"> |
1633 | <source>Hide the video until a specific date</source> | 1643 | <source>Hide the video until a specific date</source> |
1634 | <target state="translated">A videó elrejtése egy megadott dátumig</target> | 1644 | <target state="translated">A videó elrejtése egy megadott dátumig</target> |
1635 | 1645 | ||
1636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1637 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1647 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1638 | <source>Video background image</source> | 1648 | <source>Video background image</source> |
1639 | <target state="translated">Videó háttérképe</target> | 1649 | <target state="translated">Videó háttérképe</target> |
@@ -2257,7 +2267,7 @@ The link will expire within 1 hour.</source> | |||
2257 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2267 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2258 | <context context-type="linenumber">8</context> | 2268 | <context context-type="linenumber">8</context> |
2259 | </context-group> | 2269 | </context-group> |
2260 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2270 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2261 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2271 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2262 | <context-group purpose="location"> | 2272 | <context-group purpose="location"> |
2263 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2273 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3647,251 +3657,241 @@ The link will expire within 1 hour.</source> | |||
3647 | <source>Basic configuration</source> | 3657 | <source>Basic configuration</source> |
3648 | <target>Alapvető beállítás</target> | 3658 | <target>Alapvető beállítás</target> |
3649 | 3659 | ||
3650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3661 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3662 | <context-group purpose="location"> | ||
3663 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3664 | <context context-type="linenumber">700</context> | ||
3665 | </context-group> | ||
3666 | </trans-unit> | ||
3651 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3667 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3652 | <source>TWITTER</source> | 3668 | <source>TWITTER</source> |
3653 | <target state="translated">TWITTER</target> | 3669 | <target state="translated">TWITTER</target> |
3654 | 3670 | ||
3655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3656 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3672 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3657 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3673 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3658 | <target state="translated">Nem kötelező. Ha meg van adva, akkor adja meg az Ön példányát bemutató Twitter-fiókot a hivatkozás előnézeteinek feljavításához.</target> | 3674 | <target state="translated">Nem kötelező. Ha meg van adva, akkor adja meg az Ön példányát bemutató Twitter-fiókot a hivatkozás előnézeteinek feljavításához.</target> |
3659 | 3675 | ||
3660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3661 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3677 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3662 | <source>Your Twitter username</source> | 3678 | <source>Your Twitter username</source> |
3663 | <target>A Twitter felhasználóneve</target> | 3679 | <target>A Twitter felhasználóneve</target> |
3664 | 3680 | ||
3665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3666 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3682 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3667 | <source>Instance allowed by Twitter</source> | 3683 | <source>Instance allowed by Twitter</source> |
3668 | <target state="translated">Példány Twitter által engedélyezve</target> | 3684 | <target state="translated">Példány Twitter által engedélyezve</target> |
3669 | 3685 | ||
3670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit> | 3686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit> |
3671 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3687 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3672 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | 3688 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> |
3673 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3689 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3674 | 3690 | ||
3675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3676 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3692 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3677 | <source>LIVE</source> | 3693 | <source>LIVE</source> |
3678 | <target state="new">LIVE</target> | 3694 | <target state="new">LIVE</target> |
3679 | 3695 | ||
3680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit> | 3696 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit> |
3681 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3697 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3682 | <source>Enable users of your instance to stream live.</source> | 3698 | <source>Enable users of your instance to stream live.</source> |
3683 | <target state="new"> Enable users of your instance to stream live. </target> | 3699 | <target state="new"> Enable users of your instance to stream live. </target> |
3684 | 3700 | ||
3685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit> | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit> |
3686 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3702 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3687 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 3703 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
3688 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 3704 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3689 | 3705 | ||
3690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit> | 3706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit> |
3691 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3707 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3692 | <source>Allow your users to automatically publish a replay of their live</source> | 3708 | <source>Allow your users to automatically publish a replay of their live</source> |
3693 | <target state="new">Allow your users to automatically publish a replay of their live</target> | 3709 | <target state="new">Allow your users to automatically publish a replay of their live</target> |
3694 | 3710 | ||
3695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit> | 3711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit> |
3696 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3712 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3697 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 3713 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
3698 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 3714 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
3699 | 3715 | ||
3700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit> | 3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit> |
3701 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3717 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3702 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 3718 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
3703 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 3719 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
3704 | 3720 | ||
3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3706 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3722 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3707 | <context-group purpose="location"> | 3723 | |
3708 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit> |
3709 | <context context-type="linenumber">751</context> | ||
3710 | </context-group> | ||
3711 | </trans-unit> | ||
3712 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 3725 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3713 | <source>Max lives created per user (-1 for "unlimited")</source> | 3726 | <source>Max lives created per user (-1 for "unlimited")</source> |
3714 | <target state="new">Max lives created per user (-1 for "unlimited")</target> | 3727 | <target state="new">Max lives created per user (-1 for "unlimited")</target> |
3715 | 3728 | ||
3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3717 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3730 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3718 | <context-group purpose="location"> | 3731 | |
3719 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit> |
3720 | <context context-type="linenumber">759</context> | ||
3721 | </context-group> | ||
3722 | </trans-unit> | ||
3723 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 3733 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3724 | <source>Max live duration</source> | 3734 | <source>Max live duration</source> |
3725 | <target state="new">Max live duration</target> | 3735 | <target state="new">Max live duration</target> |
3726 | 3736 | ||
3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit> | 3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit> |
3728 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3738 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3729 | <source>Enable live transcoding</source> | 3739 | <source>Enable live transcoding</source> |
3730 | <target state="new">Enable live transcoding</target> | 3740 | <target state="new">Enable live transcoding</target> |
3731 | 3741 | ||
3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit> | 3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit> |
3733 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3743 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3734 | <source>Requires a lot of CPU!</source> | 3744 | <source>Requires a lot of CPU!</source> |
3735 | <target state="new"> Requires a lot of CPU! </target> | 3745 | <target state="new"> Requires a lot of CPU! </target> |
3736 | 3746 | ||
3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit> | 3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit> |
3738 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3748 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3739 | <source>Live transcoding threads</source> | 3749 | <source>Live transcoding threads</source> |
3740 | <target state="new">Live transcoding threads</target> | 3750 | <target state="new">Live transcoding threads</target> |
3741 | 3751 | ||
3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit> | 3752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit> |
3743 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3753 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3744 | <source>Live resolutions to generate</source> | 3754 | <source>Live resolutions to generate</source> |
3745 | <target state="new">Live resolutions to generate</target> | 3755 | <target state="new">Live resolutions to generate</target> |
3746 | 3756 | ||
3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit> | 3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit> |
3748 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3758 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3749 | <source>Allow live streaming</source> | 3759 | <source>Allow live streaming</source> |
3750 | <target state="new">Allow live streaming</target> | 3760 | <target state="new">Allow live streaming</target> |
3751 | 3761 | ||
3752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3753 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3763 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3754 | <context-group purpose="location"> | ||
3755 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3756 | <context context-type="linenumber">793</context> | ||
3757 | </context-group> | ||
3758 | <context-group purpose="location"> | ||
3759 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3760 | <context context-type="linenumber">935</context> | ||
3761 | </context-group> | ||
3762 | </trans-unit> | ||
3763 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
3764 | <source>Services</source> | ||
3765 | <target>Szolgáltatások</target> | ||
3766 | 3764 | ||
3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> | 3765 | |
3766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
3767 | |||
3768 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 3768 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
3769 | <source>Live streaming</source> | 3769 | <source>Live streaming</source> |
3770 | <target state="new">Live streaming</target> | 3770 | <target state="new">Live streaming</target> |
3771 | 3771 | ||
3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3773 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3773 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3774 | <source>TRANSCODING</source> | 3774 | <source>TRANSCODING</source> |
3775 | <target state="translated">ÁTKÓDOLÁS</target> | 3775 | <target state="translated">ÁTKÓDOLÁS</target> |
3776 | 3776 | ||
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3778 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3778 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3779 | <source>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.</source> | 3779 | <source>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.</source> |
3780 | <target state="translated">A feltöltött videók feldolgozása, hogy azok olyan műsorszórható formában legyenek, amit bármely eszköz képes lejátszani. Bár ez drága erőforrásokat igényel, de ez a PeerTube kritikus része, szóval gondosan járjon el.</target> | 3780 | <target state="translated">A feltöltött videók feldolgozása, hogy azok olyan műsorszórható formában legyenek, amit bármely eszköz képes lejátszani. Bár ez drága erőforrásokat igényel, de ez a PeerTube kritikus része, szóval gondosan járjon el.</target> |
3781 | 3781 | ||
3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3783 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 3783 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
3784 | <source>Transcoding enabled</source> | 3784 | <source>Transcoding enabled</source> |
3785 | <target>Átkódolás engedélyezve</target> | 3785 | <target>Átkódolás engedélyezve</target> |
3786 | 3786 | ||
3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3788 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 3788 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
3789 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3789 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3790 | <target>Ha letiltja az átkódolást, akkor a felhasználók számos videói nem fognak működni!</target> | 3790 | <target>Ha letiltja az átkódolást, akkor a felhasználók számos videói nem fognak működni!</target> |
3791 | 3791 | ||
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3793 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3794 | |||
3795 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3796 | |||
3797 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3798 | <context-group purpose="location"> | ||
3799 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3800 | <context context-type="linenumber">759,763</context> | ||
3801 | </context-group> | ||
3802 | </trans-unit> | ||
3793 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3803 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3794 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3804 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3795 | <target state="translated">Lehetővé teszi a felhasználóknak, hogy .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videókat töltsenek fel.</target> | 3805 | <target state="translated">Lehetővé teszi a felhasználóknak, hogy .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videókat töltsenek fel.</target> |
3796 | 3806 | ||
3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3798 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 3808 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
3799 | <source>Allow additional extensions</source> | 3809 | <source>Allow additional extensions</source> |
3800 | <target>További kiterjesztések engedélyezése</target> | 3810 | <target>További kiterjesztések engedélyezése</target> |
3801 | 3811 | ||
3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3803 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3813 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3804 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3814 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3805 | <target state="translated">Lehetővé teszi a felhasználóknak, hogy olyan hangfájlokat töltsenek fel, amelyek feltöltéskor egyesítve lesznek az előnézeti fájllal.</target> | 3815 | <target state="translated">Lehetővé teszi a felhasználóknak, hogy olyan hangfájlokat töltsenek fel, amelyek feltöltéskor egyesítve lesznek az előnézeti fájllal.</target> |
3806 | 3816 | ||
3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3808 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 3818 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
3809 | <source>Allow audio files upload</source> | 3819 | <source>Allow audio files upload</source> |
3810 | <target state="translated">Hangfájlok feltöltésének engedélyezése</target> | 3820 | <target state="translated">Hangfájlok feltöltésének engedélyezése</target> |
3811 | 3821 | ||
3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3813 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3823 | |
3814 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3815 | <target state="translated"><x id="START_TAG_STRONG"/>Kísérleti, azt ajánljuk, hogy most ne tiltsa le a webtorrentet <x id="CLOSE_TAG_STRONG"/> <x id="START_PARAGRAPH"/>Ha engedélyezte a HLS támogatást is, akkor az a duplájára fogja növelni a videók tárolási igényét <x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>Ha le van tiltva, akkor tönkre teszi a 2.1-es verziónál régebbi PeerTube példányok föderációját<x id="CLOSE_TAG_STRONG"/></target> | ||
3816 | |||
3817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3818 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3824 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3819 | <source>WebTorrent support enabled</source> | 3825 | <source>WebTorrent support enabled</source> |
3820 | <target state="translated">WebTorrent támogatás engedélyezve</target> | 3826 | <target state="translated">WebTorrent támogatás engedélyezve</target> |
3821 | 3827 | ||
3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3823 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3829 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3824 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3830 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3825 | <target state="translated"><x id="START_TAG_STRONG"/>Az ffmpeg >= 4.1 szükséges <x id="CLOSE_TAG_STRONG"/> <x id="START_PARAGRAPH"/>A HLS lejátszási listák és a tördelt MP4 fájlok előállítása jobb lejátszást eredményez mint a jelenlegi alapértelmezett lejátszó: <x id="CLOSE_PARAGRAPH"/> <x id="START_UNORDERED_LIST"/> <x id="START_LIST_ITEM"/>A felbontás megváltoztatása simább <x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Gyorsabb lejátszás, különösen hosszú videóknál <x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Stabilabb lejátszás (kevesebb hiba vagy végtelen betöltés) <x id="CLOSE_LIST_ITEM"/> <x id="CLOSE_UNORDERED_LIST"/> <x id="START_PARAGRAPH"/>Ha engedélyezte a WebTorrent támogatást is, akkor az a duplájára növeli a videó tárolási szükségletét <x id="CLOSE_PARAGRAPH"/></target> | 3831 | <target state="translated"><x id="START_TAG_STRONG"/>Az ffmpeg >= 4.1 szükséges <x id="CLOSE_TAG_STRONG"/> <x id="START_PARAGRAPH"/>A HLS lejátszási listák és a tördelt MP4 fájlok előállítása jobb lejátszást eredményez mint a jelenlegi alapértelmezett lejátszó: <x id="CLOSE_PARAGRAPH"/> <x id="START_UNORDERED_LIST"/> <x id="START_LIST_ITEM"/>A felbontás megváltoztatása simább <x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Gyorsabb lejátszás, különösen hosszú videóknál <x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Stabilabb lejátszás (kevesebb hiba vagy végtelen betöltés) <x id="CLOSE_LIST_ITEM"/> <x id="CLOSE_UNORDERED_LIST"/> <x id="START_PARAGRAPH"/>Ha engedélyezte a WebTorrent támogatást is, akkor az a duplájára növeli a videó tárolási szükségletét <x id="CLOSE_PARAGRAPH"/></target> |
3826 | 3832 | ||
3827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3828 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3834 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3829 | <source>HLS with P2P support enabled</source> | 3835 | <source>HLS with P2P support enabled</source> |
3830 | <target state="translated">HLS P2P támogatással</target> | 3836 | <target state="translated">HLS P2P támogatással</target> |
3831 | 3837 | ||
3832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3833 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 3839 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
3834 | <source>Transcoding threads</source> | 3840 | <source>Transcoding threads</source> |
3835 | <target>Átkódolási szálak</target> | 3841 | <target>Átkódolási szálak</target> |
3836 | 3842 | ||
3837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3838 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3844 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3839 | <source>Resolutions to generate</source> | 3845 | <source>Resolutions to generate</source> |
3840 | <target state="translated">Előállítandó felbontások</target> | 3846 | <target state="translated">Előállítandó felbontások</target> |
3841 | 3847 | ||
3842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3843 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3849 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3844 | <source>CACHE</source> | 3850 | <source>CACHE</source> |
3845 | <target state="translated">GYORSÍTÓTÁR</target> | 3851 | <target state="translated">GYORSÍTÓTÁR</target> |
3846 | 3852 | ||
3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3848 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3854 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3849 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3855 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3850 | <target state="translated">Néhány fájl nincs föderálva, és akkor lesz letöltve, ha szükséges. Határozza meg a gyorsítótárazási irányelveiket.</target> | 3856 | <target state="translated">Néhány fájl nincs föderálva, és akkor lesz letöltve, ha szükséges. Határozza meg a gyorsítótárazási irányelveiket.</target> |
3851 | 3857 | ||
3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3853 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3859 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3854 | <source>Number of previews to keep in cache</source> | 3860 | <source>Number of previews to keep in cache</source> |
3855 | <target state="translated">A gyorsítótárban tartandó előnézetek száma</target> | 3861 | <target state="translated">A gyorsítótárban tartandó előnézetek száma</target> |
3856 | 3862 | ||
3857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3858 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3864 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3859 | <context-group purpose="location"> | 3865 | |
3860 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3861 | <context context-type="linenumber">986</context> | ||
3862 | </context-group> | ||
3863 | </trans-unit> | ||
3864 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3867 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3865 | <source>Number of video captions to keep in cache</source> | 3868 | <source>Number of video captions to keep in cache</source> |
3866 | <target state="translated">A gyorsítótárban tartandó video-képaláírások száma</target> | 3869 | <target state="translated">A gyorsítótárban tartandó video-képaláírások száma</target> |
3867 | 3870 | ||
3868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3869 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3872 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3870 | <context-group purpose="location"> | 3873 | |
3871 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3872 | <context context-type="linenumber">998</context> | ||
3873 | </context-group> | ||
3874 | </trans-unit> | ||
3875 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3875 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3876 | <source>CUSTOMIZATIONS</source> | 3876 | <source>CUSTOMIZATIONS</source> |
3877 | <target state="translated">SZEMÉLYRE SZABÁSOK</target> | 3877 | <target state="translated">SZEMÉLYRE SZABÁSOK</target> |
3878 | 3878 | ||
3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3880 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3880 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3881 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3881 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3882 | <target state="translated">Apró módosítások az Ön PeerTube példányán, amikor egy bővítmény vagy egy téma létrehozás túlzás.</target> | 3882 | <target state="translated">Apró módosítások az Ön PeerTube példányán, amikor egy bővítmény vagy egy téma létrehozás túlzás.</target> |
3883 | 3883 | ||
3884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3885 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 3885 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
3886 | <source>JavaScript</source> | 3886 | <source>JavaScript</source> |
3887 | <target>JavaScript</target> | 3887 | <target>JavaScript</target> |
3888 | 3888 | ||
3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3890 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3890 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3891 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3891 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3892 | <target state="translated">JavaScript kód közvetlen írása. <x id="LINE_BREAK"/>Példa: <x id="START_TAG_PRE"/>console.log('az én példányom csodálatos'); <x id="CLOSE_TAG_PRE"/></target> | 3892 | <target state="translated">JavaScript kód közvetlen írása. <x id="LINE_BREAK"/>Példa: <x id="START_TAG_PRE"/>console.log('az én példányom csodálatos'); <x id="CLOSE_TAG_PRE"/></target> |
3893 | 3893 | ||
3894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3895 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3895 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3896 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 3896 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3897 | color: red; | 3897 | color: red; |
@@ -3902,27 +3902,27 @@ The link will expire within 1 hour.</source> | |||
3902 | <x id="CLOSE_TAG_PRE"/></source> | 3902 | <x id="CLOSE_TAG_PRE"/></source> |
3903 | <target state="translated">A CSS kód közvetlen írása. Példa: <x id="LINE_BREAK"/> <x id="LINE_BREAK"/> <x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Tegye elé a <x id="START_EMPHASISED_TEXT"/>#custom-css <x id="CLOSE_EMPHASISED_TEXT"/> azonosítót a stílusok felülírásához. Példa: <x id="LINE_BREAK"/> <x id="LINE_BREAK"/> <x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3903 | <target state="translated">A CSS kód közvetlen írása. Példa: <x id="LINE_BREAK"/> <x id="LINE_BREAK"/> <x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Tegye elé a <x id="START_EMPHASISED_TEXT"/>#custom-css <x id="CLOSE_EMPHASISED_TEXT"/> azonosítót a stílusok felülírásához. Példa: <x id="LINE_BREAK"/> <x id="LINE_BREAK"/> <x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3904 | 3904 | ||
3905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit> | 3905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit> |
3906 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3906 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3907 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | 3907 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> |
3908 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 3908 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
3909 | 3909 | ||
3910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit> | 3910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit> |
3911 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3911 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3912 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 3912 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
3913 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 3913 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
3914 | 3914 | ||
3915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3916 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 3916 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
3917 | <source>Advanced configuration</source> | 3917 | <source>Advanced configuration</source> |
3918 | <target>Speciális beállítás</target> | 3918 | <target>Speciális beállítás</target> |
3919 | 3919 | ||
3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3921 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 3921 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
3922 | <source>Update configuration</source> | 3922 | <source>Update configuration</source> |
3923 | <target>Beállítás frissítése</target> | 3923 | <target>Beállítás frissítése</target> |
3924 | 3924 | ||
3925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3926 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3926 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3927 | <source>VIDEO SETTINGS</source> | 3927 | <source>VIDEO SETTINGS</source> |
3928 | <target state="translated">VIDEOBEÁLLÍTÁSOK</target> | 3928 | <target state="translated">VIDEOBEÁLLÍTÁSOK</target> |
@@ -6415,7 +6415,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6415 | <source>any language</source> | 6415 | <source>any language</source> |
6416 | <target state="translated">bármely nyelv</target> | 6416 | <target state="translated">bármely nyelv</target> |
6417 | 6417 | ||
6418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6419 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6419 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6420 | 6420 | ||
6421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6423,22 +6423,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6423 | <source>hide</source> | 6423 | <source>hide</source> |
6424 | <target state="translated">elrejtés</target> | 6424 | <target state="translated">elrejtés</target> |
6425 | 6425 | ||
6426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6427 | <trans-unit id="8603861867909474404" datatype="html"> | 6427 | <trans-unit id="8603861867909474404" datatype="html"> |
6428 | <source>blur</source> | 6428 | <source>blur</source> |
6429 | <target state="translated">homályosítás</target> | 6429 | <target state="translated">homályosítás</target> |
6430 | 6430 | ||
6431 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6431 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6432 | <trans-unit id="4534458451100881847" datatype="html"> | 6432 | <trans-unit id="4534458451100881847" datatype="html"> |
6433 | <source>display</source> | 6433 | <source>display</source> |
6434 | <target state="translated">megjelenítés</target> | 6434 | <target state="translated">megjelenítés</target> |
6435 | 6435 | ||
6436 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6436 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6437 | <trans-unit id="4467323362722952678" datatype="html"> | 6437 | <trans-unit id="4467323362722952678" datatype="html"> |
6438 | <source>Unknown</source> | 6438 | <source>Unknown</source> |
6439 | <target state="translated">Ismeretlen</target> | 6439 | <target state="translated">Ismeretlen</target> |
6440 | 6440 | ||
6441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6442 | <trans-unit id="8781423666414310853" datatype="html"> | 6442 | <trans-unit id="8781423666414310853" datatype="html"> |
6443 | <source>Your password has been successfully reset!</source> | 6443 | <source>Your password has been successfully reset!</source> |
6444 | <target state="translated">A jelszava sikeresen vissza lett állítva!</target> | 6444 | <target state="translated">A jelszava sikeresen vissza lett állítva!</target> |
@@ -7427,12 +7427,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7427 | <source>Instance languages</source> | 7427 | <source>Instance languages</source> |
7428 | <target state="translated">Példány nyelvei</target> | 7428 | <target state="translated">Példány nyelvei</target> |
7429 | 7429 | ||
7430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7431 | <trans-unit id="40119547597591062" datatype="html"> | 7431 | <trans-unit id="40119547597591062" datatype="html"> |
7432 | <source>All languages</source> | 7432 | <source>All languages</source> |
7433 | <target state="translated">Összes nyelv</target> | 7433 | <target state="translated">Összes nyelv</target> |
7434 | 7434 | ||
7435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7436 | <trans-unit id="996392855508119363" datatype="html"> | 7436 | <trans-unit id="996392855508119363" datatype="html"> |
7437 | <source>Hidden</source> | 7437 | <source>Hidden</source> |
7438 | <target state="translated">Rejtett</target> | 7438 | <target state="translated">Rejtett</target> |
@@ -8162,7 +8162,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8162 | <source>Only users of this instance can see this video</source> | 8162 | <source>Only users of this instance can see this video</source> |
8163 | <target state="translated">Csak a példány felhasználói nézhetik meg ezt a videót</target> | 8163 | <target state="translated">Csak a példány felhasználói nézhetik meg ezt a videót</target> |
8164 | 8164 | ||
8165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8166 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8167 | <context-group purpose="location"> | ||
8168 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8169 | <context context-type="linenumber">211</context> | ||
8170 | </context-group> | ||
8171 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8172 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8173 | <context-group purpose="location"> | ||
8174 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8175 | <context context-type="linenumber">214</context> | ||
8176 | </context-group> | ||
8177 | </trans-unit> | ||
8166 | <trans-unit id="ngb.alert.close" datatype="html"> | 8178 | <trans-unit id="ngb.alert.close" datatype="html"> |
8167 | <source>Close</source> | 8179 | <source>Close</source> |
8168 | <target state="translated">Bezárás</target> | 8180 | <target state="translated">Bezárás</target> |
diff --git a/client/src/locale/angular.it-IT.xlf b/client/src/locale/angular.it-IT.xlf index 03e7480b3..583e14f44 100644 --- a/client/src/locale/angular.it-IT.xlf +++ b/client/src/locale/angular.it-IT.xlf | |||
@@ -306,19 +306,27 @@ | |||
306 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 306 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
307 | <target state="translated">{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> visualizzazioni}}</target> | 307 | <target state="translated">{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> visualizzazioni}}</target> |
308 | 308 | ||
309 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 309 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
310 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
311 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
312 | "/> </target> | ||
313 | <context-group purpose="location"> | ||
314 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
315 | <context context-type="linenumber">32,33</context> | ||
316 | </context-group> | ||
317 | </trans-unit> | ||
310 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 318 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
311 | <source>Blocked</source> | 319 | <source>Blocked</source> |
312 | <target state="translated">Bloccato</target> | 320 | <target state="translated">Bloccato</target> |
313 | 321 | ||
314 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
315 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 323 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
316 | <source>Sensitive</source> | 324 | <source>Sensitive</source> |
317 | <target> | 325 | <target> |
318 | Sensibile | 326 | Sensibile |
319 | </target> | 327 | </target> |
320 | 328 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 329 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
322 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 330 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
323 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 331 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
324 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> video}}</target> | 332 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> video}}</target> |
@@ -1000,11 +1008,7 @@ The link will expire within 1 hour.</source> | |||
1000 | <target state="translated">Sensibile:</target> | 1008 | <target state="translated">Sensibile:</target> |
1001 | 1009 | ||
1002 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1010 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1003 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1011 | |
1004 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1005 | <target state="translated">Interfaccia: <x id="INTERPOLATION"/></target> | ||
1006 | |||
1007 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1008 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1012 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1009 | <source>Help share videos</source> | 1013 | <source>Help share videos</source> |
1010 | <target state="translated">Aiuta a condividere i video</target> | 1014 | <target state="translated">Aiuta a condividere i video</target> |
@@ -1094,7 +1098,13 @@ The link will expire within 1 hour.</source> | |||
1094 | <source>Videos</source> | 1098 | <source>Videos</source> |
1095 | <target>Video</target> | 1099 | <target>Video</target> |
1096 | 1100 | ||
1097 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1101 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1102 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1103 | <context-group purpose="location"> | ||
1104 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1105 | <context context-type="linenumber">171</context> | ||
1106 | </context-group> | ||
1107 | </trans-unit> | ||
1098 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1108 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1099 | <source>Playlists</source> | 1109 | <source>Playlists</source> |
1100 | <target>Playlist</target> | 1110 | <target>Playlist</target> |
@@ -1649,12 +1659,12 @@ The link will expire within 1 hour.</source> | |||
1649 | <source>Scheduled</source> | 1659 | <source>Scheduled</source> |
1650 | <target>Programmato</target> | 1660 | <target>Programmato</target> |
1651 | 1661 | ||
1652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1653 | <trans-unit id="1435317307066082710" datatype="html"> | 1663 | <trans-unit id="1435317307066082710" datatype="html"> |
1654 | <source>Hide the video until a specific date</source> | 1664 | <source>Hide the video until a specific date</source> |
1655 | <target state="translated">Nascondi il video fino ad una data specifica</target> | 1665 | <target state="translated">Nascondi il video fino ad una data specifica</target> |
1656 | 1666 | ||
1657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1658 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1668 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1659 | <source>Video background image</source> | 1669 | <source>Video background image</source> |
1660 | <target state="translated">Immagine di sfondo del video</target> | 1670 | <target state="translated">Immagine di sfondo del video</target> |
@@ -2292,7 +2302,7 @@ The link will expire within 1 hour.</source> | |||
2292 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2302 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2293 | <context context-type="linenumber">8</context> | 2303 | <context context-type="linenumber">8</context> |
2294 | </context-group> | 2304 | </context-group> |
2295 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2305 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2296 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2306 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2297 | <context-group purpose="location"> | 2307 | <context-group purpose="location"> |
2298 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2308 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3712,251 +3722,241 @@ The link will expire within 1 hour.</source> | |||
3712 | <source>Basic configuration</source> | 3722 | <source>Basic configuration</source> |
3713 | <target>Configurazione di base</target> | 3723 | <target>Configurazione di base</target> |
3714 | 3724 | ||
3715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3726 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3727 | <context-group purpose="location"> | ||
3728 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3729 | <context context-type="linenumber">700</context> | ||
3730 | </context-group> | ||
3731 | </trans-unit> | ||
3716 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3732 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3717 | <source>TWITTER</source> | 3733 | <source>TWITTER</source> |
3718 | <target state="translated">TWITTER</target> | 3734 | <target state="translated">TWITTER</target> |
3719 | 3735 | ||
3720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3721 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3737 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3722 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3738 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3723 | <target state="translated">Opzionale. Se presente, fornisci l'account Twitter che rappresenta la tua istanza per migliorare le anteprime dei collegamenti.</target> | 3739 | <target state="translated">Opzionale. Se presente, fornisci l'account Twitter che rappresenta la tua istanza per migliorare le anteprime dei collegamenti.</target> |
3724 | 3740 | ||
3725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3726 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3742 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3727 | <source>Your Twitter username</source> | 3743 | <source>Your Twitter username</source> |
3728 | <target>Il tuo username Twitter</target> | 3744 | <target>Il tuo username Twitter</target> |
3729 | 3745 | ||
3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3731 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3747 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3732 | <source>Instance allowed by Twitter</source> | 3748 | <source>Instance allowed by Twitter</source> |
3733 | <target state="translated">Istanza consentita da Twitter</target> | 3749 | <target state="translated">Istanza consentita da Twitter</target> |
3734 | 3750 | ||
3735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit> | 3751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit> |
3736 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3752 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3737 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | 3753 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> |
3738 | <target state="translated">Se la tua istanza è esplicitamente consentita da Twitter, un lettore video verrà incorporato nel feed Twitter sulla condivisione video di PeerTube. <x id="LINE_BREAK"/>Se l'istanza non lo è, utilizziamo una scheda di collegamento immagine che reindirizzerà al tuo Istanza PeerTube.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Seleziona questa casella di controllo, salva la configurazione e prova con un URL video della tua istanza (https://example.com/videos/watch/blabla) su <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> per vedere se la tua istanza è consentita. </target> | 3754 | <target state="translated">Se la tua istanza è esplicitamente consentita da Twitter, un lettore video verrà incorporato nel feed Twitter sulla condivisione video di PeerTube. <x id="LINE_BREAK"/>Se l'istanza non lo è, utilizziamo una scheda di collegamento immagine che reindirizzerà al tuo Istanza PeerTube.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Seleziona questa casella di controllo, salva la configurazione e prova con un URL video della tua istanza (https://example.com/videos/watch/blabla) su <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> per vedere se la tua istanza è consentita. </target> |
3739 | 3755 | ||
3740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3741 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3757 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3742 | <source>LIVE</source> | 3758 | <source>LIVE</source> |
3743 | <target state="translated">DIRETTA</target> | 3759 | <target state="translated">DIRETTA</target> |
3744 | 3760 | ||
3745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit> | 3761 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit> |
3746 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3762 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3747 | <source>Enable users of your instance to stream live.</source> | 3763 | <source>Enable users of your instance to stream live.</source> |
3748 | <target state="translated">Consenti agli utenti della tua istanza di trasmettere in streaming dal vivo.</target> | 3764 | <target state="translated">Consenti agli utenti della tua istanza di trasmettere in streaming dal vivo.</target> |
3749 | 3765 | ||
3750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit> | 3766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit> |
3751 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3767 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3752 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 3768 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
3753 | <target state="translated">⚠️ L'abilitazione delle dirette streaming richiede fiducia nei tuoi utenti e un lavoro di moderazione extra</target> | 3769 | <target state="translated">⚠️ L'abilitazione delle dirette streaming richiede fiducia nei tuoi utenti e un lavoro di moderazione extra</target> |
3754 | 3770 | ||
3755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit> | 3771 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit> |
3756 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3772 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3757 | <source>Allow your users to automatically publish a replay of their live</source> | 3773 | <source>Allow your users to automatically publish a replay of their live</source> |
3758 | <target state="translated">Consenti ai tuoi utenti di pubblicare automaticamente un replay della loro diretta</target> | 3774 | <target state="translated">Consenti ai tuoi utenti di pubblicare automaticamente un replay della loro diretta</target> |
3759 | 3775 | ||
3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit> | 3776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit> |
3761 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3777 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3762 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 3778 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
3763 | <target state="translated">Se viene raggiunta la quota utente, PeerTube interromperà automaticamente la diretta streaming</target> | 3779 | <target state="translated">Se viene raggiunta la quota utente, PeerTube interromperà automaticamente la diretta streaming</target> |
3764 | 3780 | ||
3765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit> | 3781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit> |
3766 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3782 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3767 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 3783 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
3768 | <target state="translated">Numero massimo di dirette create nella tua istanza (-1 for "unlimited")</target> | 3784 | <target state="translated">Numero massimo di dirette create nella tua istanza (-1 for "unlimited")</target> |
3769 | 3785 | ||
3770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3771 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3787 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3772 | <context-group purpose="location"> | 3788 | |
3773 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit> |
3774 | <context context-type="linenumber">751</context> | ||
3775 | </context-group> | ||
3776 | </trans-unit> | ||
3777 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 3790 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3778 | <source>Max lives created per user (-1 for "unlimited")</source> | 3791 | <source>Max lives created per user (-1 for "unlimited")</source> |
3779 | <target state="translated">Numero massimo di dirette create per utente (-1 for "unlimited")</target> | 3792 | <target state="translated">Numero massimo di dirette create per utente (-1 for "unlimited")</target> |
3780 | 3793 | ||
3781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3782 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3795 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3783 | <context-group purpose="location"> | 3796 | |
3784 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit> |
3785 | <context context-type="linenumber">759</context> | ||
3786 | </context-group> | ||
3787 | </trans-unit> | ||
3788 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 3798 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3789 | <source>Max live duration</source> | 3799 | <source>Max live duration</source> |
3790 | <target state="translated">Durata massima della diretta</target> | 3800 | <target state="translated">Durata massima della diretta</target> |
3791 | 3801 | ||
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit> | 3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit> |
3793 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3803 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3794 | <source>Enable live transcoding</source> | 3804 | <source>Enable live transcoding</source> |
3795 | <target state="translated">Abilita la transcodifica della diretta</target> | 3805 | <target state="translated">Abilita la transcodifica della diretta</target> |
3796 | 3806 | ||
3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit> | 3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit> |
3798 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3808 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3799 | <source>Requires a lot of CPU!</source> | 3809 | <source>Requires a lot of CPU!</source> |
3800 | <target state="translated">Richiede molta CPU!</target> | 3810 | <target state="translated">Richiede molta CPU!</target> |
3801 | 3811 | ||
3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit> | 3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit> |
3803 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3813 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3804 | <source>Live transcoding threads</source> | 3814 | <source>Live transcoding threads</source> |
3805 | <target state="translated">Thread di transcodifica della diretta</target> | 3815 | <target state="translated">Thread di transcodifica della diretta</target> |
3806 | 3816 | ||
3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit> | 3817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit> |
3808 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3818 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3809 | <source>Live resolutions to generate</source> | 3819 | <source>Live resolutions to generate</source> |
3810 | <target state="translated">Risoluzioni della diretta da generare</target> | 3820 | <target state="translated">Risoluzioni della diretta da generare</target> |
3811 | 3821 | ||
3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit> | 3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit> |
3813 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3823 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3814 | <source>Allow live streaming</source> | 3824 | <source>Allow live streaming</source> |
3815 | <target state="translated">Permetti diretta streaming</target> | 3825 | <target state="translated">Permetti diretta streaming</target> |
3816 | 3826 | ||
3817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3818 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3828 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3819 | <context-group purpose="location"> | ||
3820 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3821 | <context context-type="linenumber">793</context> | ||
3822 | </context-group> | ||
3823 | <context-group purpose="location"> | ||
3824 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3825 | <context context-type="linenumber">935</context> | ||
3826 | </context-group> | ||
3827 | </trans-unit> | ||
3828 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
3829 | <source>Services</source> | ||
3830 | <target>Servizi</target> | ||
3831 | 3829 | ||
3832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> | 3830 | |
3831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
3832 | |||
3833 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 3833 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
3834 | <source>Live streaming</source> | 3834 | <source>Live streaming</source> |
3835 | <target state="translated">Diretta streaming</target> | 3835 | <target state="translated">Diretta streaming</target> |
3836 | 3836 | ||
3837 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3837 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3838 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3838 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3839 | <source>TRANSCODING</source> | 3839 | <source>TRANSCODING</source> |
3840 | <target state="translated">TRANSCODIFICA</target> | 3840 | <target state="translated">TRANSCODIFICA</target> |
3841 | 3841 | ||
3842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3843 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3843 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3844 | <source>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.</source> | 3844 | <source>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.</source> |
3845 | <target state="translated">Elabora i video caricati in modo che siano in una forma riproducibile in streaming che può essere riprodotta da qualsiasi dispositivo. Sebbene costosa in termini di risorse, questa è una parte fondamentale di PeerTube, quindi procedi con cautela.</target> | 3845 | <target state="translated">Elabora i video caricati in modo che siano in una forma riproducibile in streaming che può essere riprodotta da qualsiasi dispositivo. Sebbene costosa in termini di risorse, questa è una parte fondamentale di PeerTube, quindi procedi con cautela.</target> |
3846 | 3846 | ||
3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3848 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 3848 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
3849 | <source>Transcoding enabled</source> | 3849 | <source>Transcoding enabled</source> |
3850 | <target>Trascodifca attivata</target> | 3850 | <target>Trascodifca attivata</target> |
3851 | 3851 | ||
3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3853 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 3853 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
3854 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3854 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3855 | <target>Se si disattiva la transcodifica, molti video degli utenti non funzioneranno!</target> | 3855 | <target>Se si disattiva la transcodifica, molti video degli utenti non funzioneranno!</target> |
3856 | 3856 | ||
3857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3858 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3859 | |||
3860 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3861 | |||
3862 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3863 | <context-group purpose="location"> | ||
3864 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3865 | <context context-type="linenumber">759,763</context> | ||
3866 | </context-group> | ||
3867 | </trans-unit> | ||
3858 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3868 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3859 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3869 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3860 | <target state="translated">Consente agli utenti di caricare video .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut.</target> | 3870 | <target state="translated">Consente agli utenti di caricare video .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut.</target> |
3861 | 3871 | ||
3862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3863 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 3873 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
3864 | <source>Allow additional extensions</source> | 3874 | <source>Allow additional extensions</source> |
3865 | <target>Permettere estensioni aggiuntive</target> | 3875 | <target>Permettere estensioni aggiuntive</target> |
3866 | 3876 | ||
3867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3868 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3878 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3869 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3879 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3870 | <target state="translated">Consente agli utenti di caricare file audio che verranno uniti al file di anteprima al momento del caricamento.</target> | 3880 | <target state="translated">Consente agli utenti di caricare file audio che verranno uniti al file di anteprima al momento del caricamento.</target> |
3871 | 3881 | ||
3872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3873 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 3883 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
3874 | <source>Allow audio files upload</source> | 3884 | <source>Allow audio files upload</source> |
3875 | <target state="translated">Permetti il caricamento di file audio</target> | 3885 | <target state="translated">Permetti il caricamento di file audio</target> |
3876 | 3886 | ||
3877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3878 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3888 | |
3879 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3880 | <target state="translated"><x id="START_TAG_STRONG"/>Sperimentale, ti suggeriamo di non disabilitare il supporto di webtorrent per ora<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Se hai anche abilitato il supporto HLS, moltiplicherà l'archiviazione dei video per 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>Se disabilitato, interrompe la federazione con le istanze di PeerTube < 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
3881 | |||
3882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3883 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3889 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3884 | <source>WebTorrent support enabled</source> | 3890 | <source>WebTorrent support enabled</source> |
3885 | <target state="translated">Supporto a WebTorrent abilitato</target> | 3891 | <target state="translated">Supporto a WebTorrent abilitato</target> |
3886 | 3892 | ||
3887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3888 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3894 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3889 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3895 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3890 | <target state="translated"><x id="START_TAG_STRONG"/>Richiede ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Genera playlist HLS e file MP4 frammentati con conseguente migliore riproduzione rispetto al lettore predefinito corrente:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>La modifica della risoluzione è più fluida<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Riproduzione più veloce in particolare con video lunghi<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Riproduzione più stabile (meno bug/caricamento infinito)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Se hai anche abilitato il supporto WebTorrent, moltiplicherà l'archiviazione dei video per 2<x id="CLOSE_PARAGRAPH"/></target> | 3896 | <target state="translated"><x id="START_TAG_STRONG"/>Richiede ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Genera playlist HLS e file MP4 frammentati con conseguente migliore riproduzione rispetto al lettore predefinito corrente:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>La modifica della risoluzione è più fluida<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Riproduzione più veloce in particolare con video lunghi<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Riproduzione più stabile (meno bug/caricamento infinito)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Se hai anche abilitato il supporto WebTorrent, moltiplicherà l'archiviazione dei video per 2<x id="CLOSE_PARAGRAPH"/></target> |
3891 | 3897 | ||
3892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3893 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3899 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3894 | <source>HLS with P2P support enabled</source> | 3900 | <source>HLS with P2P support enabled</source> |
3895 | <target state="translated">HLS con supporto P2P abilitato</target> | 3901 | <target state="translated">HLS con supporto P2P abilitato</target> |
3896 | 3902 | ||
3897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3898 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 3904 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
3899 | <source>Transcoding threads</source> | 3905 | <source>Transcoding threads</source> |
3900 | <target>Numero thread di trascodifica</target> | 3906 | <target>Numero thread di trascodifica</target> |
3901 | 3907 | ||
3902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3903 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3909 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3904 | <source>Resolutions to generate</source> | 3910 | <source>Resolutions to generate</source> |
3905 | <target state="translated">Risoluzioni da generare</target> | 3911 | <target state="translated">Risoluzioni da generare</target> |
3906 | 3912 | ||
3907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3908 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3914 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3909 | <source>CACHE</source> | 3915 | <source>CACHE</source> |
3910 | <target state="translated">CACHE</target> | 3916 | <target state="translated">CACHE</target> |
3911 | 3917 | ||
3912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3913 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3919 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3914 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3920 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3915 | <target state="translated">Alcuni file non sono federati e vengono recuperati quando necessario. Definisci le loro politiche di memorizzazione nella cache.</target> | 3921 | <target state="translated">Alcuni file non sono federati e vengono recuperati quando necessario. Definisci le loro politiche di memorizzazione nella cache.</target> |
3916 | 3922 | ||
3917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3918 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3924 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3919 | <source>Number of previews to keep in cache</source> | 3925 | <source>Number of previews to keep in cache</source> |
3920 | <target state="translated">Numero di anteprime da conservare nella cache</target> | 3926 | <target state="translated">Numero di anteprime da conservare nella cache</target> |
3921 | 3927 | ||
3922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3923 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3929 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3924 | <context-group purpose="location"> | 3930 | |
3925 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3926 | <context context-type="linenumber">986</context> | ||
3927 | </context-group> | ||
3928 | </trans-unit> | ||
3929 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3932 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3930 | <source>Number of video captions to keep in cache</source> | 3933 | <source>Number of video captions to keep in cache</source> |
3931 | <target state="translated">Numero di sottotitoli video da conservare nella cache</target> | 3934 | <target state="translated">Numero di sottotitoli video da conservare nella cache</target> |
3932 | 3935 | ||
3933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3934 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3937 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3935 | <context-group purpose="location"> | 3938 | |
3936 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3937 | <context context-type="linenumber">998</context> | ||
3938 | </context-group> | ||
3939 | </trans-unit> | ||
3940 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3940 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3941 | <source>CUSTOMIZATIONS</source> | 3941 | <source>CUSTOMIZATIONS</source> |
3942 | <target state="translated">PERSONALIZZAZIONI</target> | 3942 | <target state="translated">PERSONALIZZAZIONI</target> |
3943 | 3943 | ||
3944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3945 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3945 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3946 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3946 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3947 | <target state="translated">Lievi modifiche all'istanza di PeerTube per la creazione di un plug-in o di un tema sono eccessive.</target> | 3947 | <target state="translated">Lievi modifiche all'istanza di PeerTube per la creazione di un plug-in o di un tema sono eccessive.</target> |
3948 | 3948 | ||
3949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3950 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 3950 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
3951 | <source>JavaScript</source> | 3951 | <source>JavaScript</source> |
3952 | <target>JavaScript</target> | 3952 | <target>JavaScript</target> |
3953 | 3953 | ||
3954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3955 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3955 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3956 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3956 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3957 | <target state="translated">Scrivi direttamente il codice JavaScript.<x id="LINE_BREAK"/>Esempio: <x id="START_TAG_PRE"/>console.log('la mia istanza è sorprendente');<x id="CLOSE_TAG_PRE"/></target> | 3957 | <target state="translated">Scrivi direttamente il codice JavaScript.<x id="LINE_BREAK"/>Esempio: <x id="START_TAG_PRE"/>console.log('la mia istanza è sorprendente');<x id="CLOSE_TAG_PRE"/></target> |
3958 | 3958 | ||
3959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3960 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3960 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3961 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 3961 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
3962 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 3962 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
@@ -3971,27 +3971,27 @@ The link will expire within 1 hour.</source> | |||
3971 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | 3971 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
3972 | <target state="translated">Scrivi direttamente il codice CSS. Esempio:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> colore: rosso <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Anteponi con <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> per sovrascrivere gli stili. Esempio:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> colore: rosso; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3972 | <target state="translated">Scrivi direttamente il codice CSS. Esempio:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> colore: rosso <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Anteponi con <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> per sovrascrivere gli stili. Esempio:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> colore: rosso; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3973 | 3973 | ||
3974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit> | 3974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit> |
3975 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3975 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3976 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | 3976 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> |
3977 | <target state="translated">Sembra che la configurazione non sia valida. Si prega di cercare potenziali errori nelle diverse schede.</target> | 3977 | <target state="translated">Sembra che la configurazione non sia valida. Si prega di cercare potenziali errori nelle diverse schede.</target> |
3978 | 3978 | ||
3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit> | 3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit> |
3980 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3980 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3981 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 3981 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
3982 | <target state="translated">Non puoi consentire la riproduzione dal vivo se non abiliti la transcodifica.</target> | 3982 | <target state="translated">Non puoi consentire la riproduzione dal vivo se non abiliti la transcodifica.</target> |
3983 | 3983 | ||
3984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3985 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 3985 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
3986 | <source>Advanced configuration</source> | 3986 | <source>Advanced configuration</source> |
3987 | <target>Configurazione avanzata</target> | 3987 | <target>Configurazione avanzata</target> |
3988 | 3988 | ||
3989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3990 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 3990 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
3991 | <source>Update configuration</source> | 3991 | <source>Update configuration</source> |
3992 | <target>Aggiorna configurazione</target> | 3992 | <target>Aggiorna configurazione</target> |
3993 | 3993 | ||
3994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3995 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3995 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3996 | <source>VIDEO SETTINGS</source> | 3996 | <source>VIDEO SETTINGS</source> |
3997 | <target state="translated">IMPOSTAZIONI VIDEO</target> | 3997 | <target state="translated">IMPOSTAZIONI VIDEO</target> |
@@ -6479,7 +6479,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6479 | <source>any language</source> | 6479 | <source>any language</source> |
6480 | <target state="translated">qualsiasi lingua</target> | 6480 | <target state="translated">qualsiasi lingua</target> |
6481 | 6481 | ||
6482 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> | 6482 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> |
6483 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6483 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6484 | <source>ON <x id="INTERPOLATION"/></source> | 6484 | <source>ON <x id="INTERPOLATION"/></source> |
6485 | <target state="translated">SU <x id="INTERPOLATION"/></target> | 6485 | <target state="translated">SU <x id="INTERPOLATION"/></target> |
@@ -6489,22 +6489,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6489 | <source>hide</source> | 6489 | <source>hide</source> |
6490 | <target state="translated">nascondi</target> | 6490 | <target state="translated">nascondi</target> |
6491 | 6491 | ||
6492 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6492 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6493 | <trans-unit id="8603861867909474404" datatype="html"> | 6493 | <trans-unit id="8603861867909474404" datatype="html"> |
6494 | <source>blur</source> | 6494 | <source>blur</source> |
6495 | <target state="translated">sfocatura</target> | 6495 | <target state="translated">sfocatura</target> |
6496 | 6496 | ||
6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6498 | <trans-unit id="4534458451100881847" datatype="html"> | 6498 | <trans-unit id="4534458451100881847" datatype="html"> |
6499 | <source>display</source> | 6499 | <source>display</source> |
6500 | <target state="translated">schermo</target> | 6500 | <target state="translated">schermo</target> |
6501 | 6501 | ||
6502 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6502 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6503 | <trans-unit id="4467323362722952678" datatype="html"> | 6503 | <trans-unit id="4467323362722952678" datatype="html"> |
6504 | <source>Unknown</source> | 6504 | <source>Unknown</source> |
6505 | <target state="translated">Sconosciuto</target> | 6505 | <target state="translated">Sconosciuto</target> |
6506 | 6506 | ||
6507 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6507 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6508 | <trans-unit id="8781423666414310853"> | 6508 | <trans-unit id="8781423666414310853"> |
6509 | <source>Your password has been successfully reset!</source> | 6509 | <source>Your password has been successfully reset!</source> |
6510 | <target>La tua password è stata reimpostata con successo!</target> | 6510 | <target>La tua password è stata reimpostata con successo!</target> |
@@ -7497,12 +7497,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7497 | <source>Instance languages</source> | 7497 | <source>Instance languages</source> |
7498 | <target state="translated">Lingue istanza</target> | 7498 | <target state="translated">Lingue istanza</target> |
7499 | 7499 | ||
7500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7501 | <trans-unit id="40119547597591062" datatype="html"> | 7501 | <trans-unit id="40119547597591062" datatype="html"> |
7502 | <source>All languages</source> | 7502 | <source>All languages</source> |
7503 | <target state="translated">Tutte le lingue</target> | 7503 | <target state="translated">Tutte le lingue</target> |
7504 | 7504 | ||
7505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7506 | <trans-unit id="996392855508119363"> | 7506 | <trans-unit id="996392855508119363"> |
7507 | <source>Hidden</source> | 7507 | <source>Hidden</source> |
7508 | <target>Nascosto</target> | 7508 | <target>Nascosto</target> |
@@ -8222,7 +8222,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8222 | <source>Only users of this instance can see this video</source> | 8222 | <source>Only users of this instance can see this video</source> |
8223 | <target state="translated">Solo gli utenti di questa istanza possono vedere questo video</target> | 8223 | <target state="translated">Solo gli utenti di questa istanza possono vedere questo video</target> |
8224 | 8224 | ||
8225 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8225 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8226 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8227 | <context-group purpose="location"> | ||
8228 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8229 | <context context-type="linenumber">211</context> | ||
8230 | </context-group> | ||
8231 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8232 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8233 | <context-group purpose="location"> | ||
8234 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8235 | <context context-type="linenumber">214</context> | ||
8236 | </context-group> | ||
8237 | </trans-unit> | ||
8226 | <trans-unit id="ngb.alert.close" datatype="html"> | 8238 | <trans-unit id="ngb.alert.close" datatype="html"> |
8227 | <source>Close</source> | 8239 | <source>Close</source> |
8228 | <target state="translated">Chiuso</target> | 8240 | <target state="translated">Chiuso</target> |
diff --git a/client/src/locale/angular.ja-JP.xlf b/client/src/locale/angular.ja-JP.xlf index 684a1ee3a..7752ba7b7 100644 --- a/client/src/locale/angular.ja-JP.xlf +++ b/client/src/locale/angular.ja-JP.xlf | |||
@@ -427,17 +427,25 @@ | |||
427 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 427 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
428 | <target state="translated">{VAR_PLURAL, plural, =1 {1回視聴} other { <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> 回視聴} }</target> | 428 | <target state="translated">{VAR_PLURAL, plural, =1 {1回視聴} other { <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> 回視聴} }</target> |
429 | 429 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 430 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
431 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
432 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
433 | "/> </target> | ||
434 | <context-group purpose="location"> | ||
435 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
436 | <context context-type="linenumber">32,33</context> | ||
437 | </context-group> | ||
438 | </trans-unit> | ||
431 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 439 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
432 | <source>Blocked</source> | 440 | <source>Blocked</source> |
433 | <target state="new">Blocked</target> | 441 | <target state="new">Blocked</target> |
434 | 442 | ||
435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
436 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 444 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
437 | <source>Sensitive</source> | 445 | <source>Sensitive</source> |
438 | <target state="translated">センシティブ</target> | 446 | <target state="translated">センシティブ</target> |
439 | 447 | ||
440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
441 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 449 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
442 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 450 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
443 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 451 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1224,13 +1232,7 @@ The link will expire within 1 hour.</target> | |||
1224 | <target state="translated">センシティブ:</target> | 1232 | <target state="translated">センシティブ:</target> |
1225 | 1233 | ||
1226 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1234 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1227 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1235 | |
1228 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1229 | <target state="new">Interface: | ||
1230 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1231 | </target> | ||
1232 | |||
1233 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1234 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1236 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1235 | <source>Help share videos</source> | 1237 | <source>Help share videos</source> |
1236 | <target state="translated">動画を拡散しましょう</target> | 1238 | <target state="translated">動画を拡散しましょう</target> |
@@ -1314,7 +1316,13 @@ The link will expire within 1 hour.</target> | |||
1314 | <source>Videos</source> | 1316 | <source>Videos</source> |
1315 | <target>動画</target> | 1317 | <target>動画</target> |
1316 | 1318 | ||
1317 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1319 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1320 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1321 | <context-group purpose="location"> | ||
1322 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1323 | <context context-type="linenumber">171</context> | ||
1324 | </context-group> | ||
1325 | </trans-unit> | ||
1318 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1326 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1319 | <source>Playlists</source> | 1327 | <source>Playlists</source> |
1320 | <target>再生リスト</target> | 1328 | <target>再生リスト</target> |
@@ -1893,12 +1901,12 @@ The link will expire within 1 hour.</target> | |||
1893 | <source>Scheduled</source> | 1901 | <source>Scheduled</source> |
1894 | <target>スケジュールされました</target> | 1902 | <target>スケジュールされました</target> |
1895 | 1903 | ||
1896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1897 | <trans-unit id="1435317307066082710" datatype="html"> | 1905 | <trans-unit id="1435317307066082710" datatype="html"> |
1898 | <source>Hide the video until a specific date</source> | 1906 | <source>Hide the video until a specific date</source> |
1899 | <target state="new">Hide the video until a specific date</target> | 1907 | <target state="new">Hide the video until a specific date</target> |
1900 | 1908 | ||
1901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1902 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1910 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1903 | <source>Video background image</source> | 1911 | <source>Video background image</source> |
1904 | <target state="new">Video background image</target> | 1912 | <target state="new">Video background image</target> |
@@ -2570,7 +2578,7 @@ The link will expire within 1 hour.</target> | |||
2570 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2578 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2571 | <context context-type="linenumber">8</context> | 2579 | <context context-type="linenumber">8</context> |
2572 | </context-group> | 2580 | </context-group> |
2573 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2581 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2574 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2582 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2575 | <context-group purpose="location"> | 2583 | <context-group purpose="location"> |
2576 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2584 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4107,136 +4115,126 @@ The link will expire within 1 hour.</target> | |||
4107 | <source>Basic configuration</source> | 4115 | <source>Basic configuration</source> |
4108 | <target>基本設定</target> | 4116 | <target>基本設定</target> |
4109 | 4117 | ||
4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4119 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4120 | <context-group purpose="location"> | ||
4121 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4122 | <context context-type="linenumber">700</context> | ||
4123 | </context-group> | ||
4124 | </trans-unit> | ||
4111 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4125 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4112 | <source>TWITTER</source> | 4126 | <source>TWITTER</source> |
4113 | <target state="new">TWITTER</target> | 4127 | <target state="new">TWITTER</target> |
4114 | 4128 | ||
4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4116 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4130 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4117 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4131 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4118 | <target state="new"> | 4132 | <target state="new"> |
4119 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4133 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4120 | </target> | 4134 | </target> |
4121 | 4135 | ||
4122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4123 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4137 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4124 | <source>Your Twitter username</source> | 4138 | <source>Your Twitter username</source> |
4125 | <target>Twitterユーザー名</target> | 4139 | <target>Twitterユーザー名</target> |
4126 | 4140 | ||
4127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4128 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4142 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4129 | <source>Instance allowed by Twitter</source> | 4143 | <source>Instance allowed by Twitter</source> |
4130 | <target state="new">Instance allowed by Twitter</target> | 4144 | <target state="new">Instance allowed by Twitter</target> |
4131 | 4145 | ||
4132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit> | 4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit> |
4133 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4147 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4134 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | 4148 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> |
4135 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4149 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4136 | 4150 | ||
4137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4138 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4152 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4139 | <source>LIVE</source> | 4153 | <source>LIVE</source> |
4140 | <target state="new">LIVE</target> | 4154 | <target state="new">LIVE</target> |
4141 | 4155 | ||
4142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit> | 4156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit> |
4143 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4157 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4144 | <source>Enable users of your instance to stream live.</source> | 4158 | <source>Enable users of your instance to stream live.</source> |
4145 | <target state="new"> Enable users of your instance to stream live. </target> | 4159 | <target state="new"> Enable users of your instance to stream live. </target> |
4146 | 4160 | ||
4147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit> | 4161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit> |
4148 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4162 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4149 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 4163 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4150 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4164 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4151 | 4165 | ||
4152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit> | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit> |
4153 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4167 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4154 | <source>Allow your users to automatically publish a replay of their live</source> | 4168 | <source>Allow your users to automatically publish a replay of their live</source> |
4155 | <target state="new">Allow your users to automatically publish a replay of their live</target> | 4169 | <target state="new">Allow your users to automatically publish a replay of their live</target> |
4156 | 4170 | ||
4157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit> | 4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit> |
4158 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4172 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4159 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 4173 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
4160 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4174 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4161 | 4175 | ||
4162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit> | 4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit> |
4163 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4177 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4164 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 4178 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
4165 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4179 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4166 | 4180 | ||
4167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4168 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4182 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4169 | <context-group purpose="location"> | 4183 | |
4170 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit> |
4171 | <context context-type="linenumber">751</context> | ||
4172 | </context-group> | ||
4173 | </trans-unit> | ||
4174 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 4185 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4175 | <source>Max lives created per user (-1 for "unlimited")</source> | 4186 | <source>Max lives created per user (-1 for "unlimited")</source> |
4176 | <target state="new">Max lives created per user (-1 for "unlimited")</target> | 4187 | <target state="new">Max lives created per user (-1 for "unlimited")</target> |
4177 | 4188 | ||
4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4179 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4190 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4180 | <context-group purpose="location"> | 4191 | |
4181 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit> |
4182 | <context context-type="linenumber">759</context> | ||
4183 | </context-group> | ||
4184 | </trans-unit> | ||
4185 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 4193 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4186 | <source>Max live duration</source> | 4194 | <source>Max live duration</source> |
4187 | <target state="new">Max live duration</target> | 4195 | <target state="new">Max live duration</target> |
4188 | 4196 | ||
4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit> | 4197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit> |
4190 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4198 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4191 | <source>Enable live transcoding</source> | 4199 | <source>Enable live transcoding</source> |
4192 | <target state="new">Enable live transcoding</target> | 4200 | <target state="new">Enable live transcoding</target> |
4193 | 4201 | ||
4194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit> | 4202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit> |
4195 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4203 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4196 | <source>Requires a lot of CPU!</source> | 4204 | <source>Requires a lot of CPU!</source> |
4197 | <target state="new"> Requires a lot of CPU! </target> | 4205 | <target state="new"> Requires a lot of CPU! </target> |
4198 | 4206 | ||
4199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit> | 4207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit> |
4200 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4208 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4201 | <source>Live transcoding threads</source> | 4209 | <source>Live transcoding threads</source> |
4202 | <target state="new">Live transcoding threads</target> | 4210 | <target state="new">Live transcoding threads</target> |
4203 | 4211 | ||
4204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit> | 4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit> |
4205 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4213 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4206 | <source>Live resolutions to generate</source> | 4214 | <source>Live resolutions to generate</source> |
4207 | <target state="new">Live resolutions to generate</target> | 4215 | <target state="new">Live resolutions to generate</target> |
4208 | 4216 | ||
4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit> | 4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit> |
4210 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4218 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4211 | <source>Allow live streaming</source> | 4219 | <source>Allow live streaming</source> |
4212 | <target state="new">Allow live streaming</target> | 4220 | <target state="new">Allow live streaming</target> |
4213 | 4221 | ||
4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4215 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4223 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4216 | <context-group purpose="location"> | ||
4217 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4218 | <context context-type="linenumber">793</context> | ||
4219 | </context-group> | ||
4220 | <context-group purpose="location"> | ||
4221 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4222 | <context context-type="linenumber">935</context> | ||
4223 | </context-group> | ||
4224 | </trans-unit> | ||
4225 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4226 | <source>Services</source> | ||
4227 | <target>サービス</target> | ||
4228 | 4224 | ||
4229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> | 4225 | |
4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4227 | |||
4230 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4228 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
4231 | <source>Live streaming</source> | 4229 | <source>Live streaming</source> |
4232 | <target state="new">Live streaming</target> | 4230 | <target state="new">Live streaming</target> |
4233 | 4231 | ||
4234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4235 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4233 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4236 | <source>TRANSCODING</source> | 4234 | <source>TRANSCODING</source> |
4237 | <target state="translated">トランスコーディング</target> | 4235 | <target state="translated">トランスコーディング</target> |
4238 | 4236 | ||
4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4240 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4238 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4241 | <source>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.</source> | 4239 | <source>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.</source> |
4242 | <target state="new"> | 4240 | <target state="new"> |
@@ -4244,55 +4242,53 @@ The link will expire within 1 hour.</target> | |||
4244 | resources, this is a critical part of PeerTube, so tread carefully. | 4242 | resources, this is a critical part of PeerTube, so tread carefully. |
4245 | </target> | 4243 | </target> |
4246 | 4244 | ||
4247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4248 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4246 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4249 | <source>Transcoding enabled</source> | 4247 | <source>Transcoding enabled</source> |
4250 | <target>トランスコーディングを有効にする</target> | 4248 | <target>トランスコーディングを有効にする</target> |
4251 | 4249 | ||
4252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4253 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4251 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4254 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4252 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4255 | <target>トランスコーディングを無効にすると、ユーザーからの動画の多くが再生できなくなる可能性があります。</target> | 4253 | <target>トランスコーディングを無効にすると、ユーザーからの動画の多くが再生できなくなる可能性があります。</target> |
4256 | 4254 | ||
4257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4256 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4257 | |||
4258 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4259 | |||
4260 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4261 | <context-group purpose="location"> | ||
4262 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4263 | <context context-type="linenumber">759,763</context> | ||
4264 | </context-group> | ||
4265 | </trans-unit> | ||
4258 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4266 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4259 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4267 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4260 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4268 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4261 | 4269 | ||
4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4263 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4271 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4264 | <source>Allow additional extensions</source> | 4272 | <source>Allow additional extensions</source> |
4265 | <target>追加の拡張子を許可する</target> | 4273 | <target>追加の拡張子を許可する</target> |
4266 | 4274 | ||
4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4268 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4276 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4269 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4277 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4270 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4278 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4271 | 4279 | ||
4272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4273 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4281 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4274 | <source>Allow audio files upload</source> | 4282 | <source>Allow audio files upload</source> |
4275 | <target state="new">Allow audio files upload</target> | 4283 | <target state="new">Allow audio files upload</target> |
4276 | 4284 | ||
4277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4278 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4286 | |
4279 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4280 | <target state="new"> | ||
4281 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4282 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4283 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4284 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4285 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4286 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4287 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4288 | </target> | ||
4289 | |||
4290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4291 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4287 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4292 | <source>WebTorrent support enabled</source> | 4288 | <source>WebTorrent support enabled</source> |
4293 | <target state="new">WebTorrent support enabled</target> | 4289 | <target state="new">WebTorrent support enabled</target> |
4294 | 4290 | ||
4295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4296 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4292 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4297 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4293 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4298 | <target state="new"> | 4294 | <target state="new"> |
@@ -4312,73 +4308,67 @@ The link will expire within 1 hour.</target> | |||
4312 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4308 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4313 | </target> | 4309 | </target> |
4314 | 4310 | ||
4315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4316 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4312 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4317 | <source>HLS with P2P support enabled</source> | 4313 | <source>HLS with P2P support enabled</source> |
4318 | <target state="new">HLS with P2P support enabled</target> | 4314 | <target state="new">HLS with P2P support enabled</target> |
4319 | 4315 | ||
4320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4321 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4317 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4322 | <source>Transcoding threads</source> | 4318 | <source>Transcoding threads</source> |
4323 | <target>トランスコードスレッド</target> | 4319 | <target>トランスコードスレッド</target> |
4324 | 4320 | ||
4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4326 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4322 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4327 | <source>Resolutions to generate</source> | 4323 | <source>Resolutions to generate</source> |
4328 | <target state="new">Resolutions to generate</target> | 4324 | <target state="new">Resolutions to generate</target> |
4329 | 4325 | ||
4330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4331 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4327 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4332 | <source>CACHE</source> | 4328 | <source>CACHE</source> |
4333 | <target state="translated">キャッシュ</target> | 4329 | <target state="translated">キャッシュ</target> |
4334 | 4330 | ||
4335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4336 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4332 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4337 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4333 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4338 | <target state="new"> | 4334 | <target state="new"> |
4339 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4335 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4340 | </target> | 4336 | </target> |
4341 | 4337 | ||
4342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4343 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4339 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4344 | <source>Number of previews to keep in cache</source> | 4340 | <source>Number of previews to keep in cache</source> |
4345 | <target state="new">Number of previews to keep in cache</target> | 4341 | <target state="new">Number of previews to keep in cache</target> |
4346 | 4342 | ||
4347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4348 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4344 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4349 | <context-group purpose="location"> | 4345 | |
4350 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4351 | <context context-type="linenumber">986</context> | ||
4352 | </context-group> | ||
4353 | </trans-unit> | ||
4354 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4347 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4355 | <source>Number of video captions to keep in cache</source> | 4348 | <source>Number of video captions to keep in cache</source> |
4356 | <target state="new">Number of video captions to keep in cache</target> | 4349 | <target state="new">Number of video captions to keep in cache</target> |
4357 | 4350 | ||
4358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4359 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4352 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4360 | <context-group purpose="location"> | 4353 | |
4361 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4362 | <context context-type="linenumber">998</context> | ||
4363 | </context-group> | ||
4364 | </trans-unit> | ||
4365 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4355 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4366 | <source>CUSTOMIZATIONS</source> | 4356 | <source>CUSTOMIZATIONS</source> |
4367 | <target state="translated">カストマイズ</target> | 4357 | <target state="translated">カストマイズ</target> |
4368 | 4358 | ||
4369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4370 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4360 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4371 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4361 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4372 | <target state="new"> | 4362 | <target state="new"> |
4373 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4363 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4374 | </target> | 4364 | </target> |
4375 | 4365 | ||
4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4377 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4367 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4378 | <source>JavaScript</source> | 4368 | <source>JavaScript</source> |
4379 | <target>JavaScript</target> | 4369 | <target>JavaScript</target> |
4380 | 4370 | ||
4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4382 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4372 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4383 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4373 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4384 | <target state="new"> | 4374 | <target state="new"> |
@@ -4388,7 +4378,7 @@ The link will expire within 1 hour.</target> | |||
4388 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4378 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4389 | </target> | 4379 | </target> |
4390 | 4380 | ||
4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4392 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4382 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4393 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4383 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4394 | color: red; | 4384 | color: red; |
@@ -4420,27 +4410,27 @@ The link will expire within 1 hour.</target> | |||
4420 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4410 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4421 | </target> | 4411 | </target> |
4422 | 4412 | ||
4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit> | 4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit> |
4424 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4414 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4425 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | 4415 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> |
4426 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4416 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4427 | 4417 | ||
4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit> | 4418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit> |
4429 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4419 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4430 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 4420 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
4431 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4421 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4432 | 4422 | ||
4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4434 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4424 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4435 | <source>Advanced configuration</source> | 4425 | <source>Advanced configuration</source> |
4436 | <target>その他の設定</target> | 4426 | <target>その他の設定</target> |
4437 | 4427 | ||
4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4439 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4429 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4440 | <source>Update configuration</source> | 4430 | <source>Update configuration</source> |
4441 | <target>設定を更新</target> | 4431 | <target>設定を更新</target> |
4442 | 4432 | ||
4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4444 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4434 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4445 | <source>VIDEO SETTINGS</source> | 4435 | <source>VIDEO SETTINGS</source> |
4446 | <target state="new">VIDEO SETTINGS</target> | 4436 | <target state="new">VIDEO SETTINGS</target> |
@@ -7166,7 +7156,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7166 | <source>any language</source> | 7156 | <source>any language</source> |
7167 | <target state="new">any language</target> | 7157 | <target state="new">any language</target> |
7168 | 7158 | ||
7169 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7159 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7170 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7160 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7171 | 7161 | ||
7172 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7162 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7174,22 +7164,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7174 | <source>hide</source> | 7164 | <source>hide</source> |
7175 | <target state="new">hide</target> | 7165 | <target state="new">hide</target> |
7176 | 7166 | ||
7177 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7167 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7178 | <trans-unit id="8603861867909474404" datatype="html"> | 7168 | <trans-unit id="8603861867909474404" datatype="html"> |
7179 | <source>blur</source> | 7169 | <source>blur</source> |
7180 | <target state="new">blur</target> | 7170 | <target state="new">blur</target> |
7181 | 7171 | ||
7182 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7172 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7183 | <trans-unit id="4534458451100881847" datatype="html"> | 7173 | <trans-unit id="4534458451100881847" datatype="html"> |
7184 | <source>display</source> | 7174 | <source>display</source> |
7185 | <target state="new">display</target> | 7175 | <target state="new">display</target> |
7186 | 7176 | ||
7187 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7177 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7188 | <trans-unit id="4467323362722952678" datatype="html"> | 7178 | <trans-unit id="4467323362722952678" datatype="html"> |
7189 | <source>Unknown</source> | 7179 | <source>Unknown</source> |
7190 | <target state="new">Unknown</target> | 7180 | <target state="new">Unknown</target> |
7191 | 7181 | ||
7192 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7182 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7193 | <trans-unit id="8781423666414310853"> | 7183 | <trans-unit id="8781423666414310853"> |
7194 | <source>Your password has been successfully reset!</source> | 7184 | <source>Your password has been successfully reset!</source> |
7195 | <target>パスワードは正常にリセットされました!</target> | 7185 | <target>パスワードは正常にリセットされました!</target> |
@@ -8178,12 +8168,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8178 | <source>Instance languages</source> | 8168 | <source>Instance languages</source> |
8179 | <target state="new">Instance languages</target> | 8169 | <target state="new">Instance languages</target> |
8180 | 8170 | ||
8181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8182 | <trans-unit id="40119547597591062" datatype="html"> | 8172 | <trans-unit id="40119547597591062" datatype="html"> |
8183 | <source>All languages</source> | 8173 | <source>All languages</source> |
8184 | <target state="new">All languages</target> | 8174 | <target state="new">All languages</target> |
8185 | 8175 | ||
8186 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8187 | <trans-unit id="996392855508119363"> | 8177 | <trans-unit id="996392855508119363"> |
8188 | <source>Hidden</source> | 8178 | <source>Hidden</source> |
8189 | <target>表示しない</target> | 8179 | <target>表示しない</target> |
@@ -8940,7 +8930,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8940 | <source>Only users of this instance can see this video</source> | 8930 | <source>Only users of this instance can see this video</source> |
8941 | <target state="translated">このインスタンスのユーザーのみが視聴することができる</target> | 8931 | <target state="translated">このインスタンスのユーザーのみが視聴することができる</target> |
8942 | 8932 | ||
8943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8934 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8935 | <context-group purpose="location"> | ||
8936 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8937 | <context context-type="linenumber">211</context> | ||
8938 | </context-group> | ||
8939 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8940 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8941 | <context-group purpose="location"> | ||
8942 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8943 | <context context-type="linenumber">214</context> | ||
8944 | </context-group> | ||
8945 | </trans-unit> | ||
8944 | <trans-unit id="ngb.alert.close" datatype="html"> | 8946 | <trans-unit id="ngb.alert.close" datatype="html"> |
8945 | <source>Close</source> | 8947 | <source>Close</source> |
8946 | <target state="translated">閉じる</target> | 8948 | <target state="translated">閉じる</target> |
diff --git a/client/src/locale/angular.jbo.xlf b/client/src/locale/angular.jbo.xlf index 7659c61b2..1405ca47d 100644 --- a/client/src/locale/angular.jbo.xlf +++ b/client/src/locale/angular.jbo.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Sensitive | 540 | Sensitive |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 546 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1385,13 +1393,7 @@ galfi le mi japyvla</target> | |||
1385 | <target state="new">Sensitive:</target> | 1393 | <target state="new">Sensitive:</target> |
1386 | 1394 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1395 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1396 | |
1389 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1390 | <target state="new">Interface: | ||
1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1392 | </target> | ||
1393 | |||
1394 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1397 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1396 | <source>Help share videos</source> | 1398 | <source>Help share videos</source> |
1397 | <target state="new">Help share videos</target> | 1399 | <target state="new">Help share videos</target> |
@@ -1467,7 +1469,13 @@ galfi le mi japyvla</target> | |||
1467 | <source>Videos</source> | 1469 | <source>Videos</source> |
1468 | <target>lo vidvi</target> | 1470 | <target>lo vidvi</target> |
1469 | 1471 | ||
1470 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1472 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1473 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1474 | <context-group purpose="location"> | ||
1475 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1476 | <context context-type="linenumber">171</context> | ||
1477 | </context-group> | ||
1478 | </trans-unit> | ||
1471 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1479 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1472 | <source>Playlists</source> | 1480 | <source>Playlists</source> |
1473 | <target state="new">Playlists</target> | 1481 | <target state="new">Playlists</target> |
@@ -2102,12 +2110,12 @@ galfi le mi japyvla</target> | |||
2102 | <source>Scheduled</source> | 2110 | <source>Scheduled</source> |
2103 | <target state="new">Scheduled</target> | 2111 | <target state="new">Scheduled</target> |
2104 | 2112 | ||
2105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2106 | <trans-unit id="1435317307066082710" datatype="html"> | 2114 | <trans-unit id="1435317307066082710" datatype="html"> |
2107 | <source>Hide the video until a specific date</source> | 2115 | <source>Hide the video until a specific date</source> |
2108 | <target state="new">Hide the video until a specific date</target> | 2116 | <target state="new">Hide the video until a specific date</target> |
2109 | 2117 | ||
2110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2111 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2119 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2112 | <source>Video background image</source> | 2120 | <source>Video background image</source> |
2113 | <target state="new">Video background image</target> | 2121 | <target state="new">Video background image</target> |
@@ -2785,7 +2793,7 @@ galfi le mi japyvla</target> | |||
2785 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2793 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2786 | <context context-type="linenumber">8</context> | 2794 | <context context-type="linenumber">8</context> |
2787 | </context-group> | 2795 | </context-group> |
2788 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2796 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2789 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2797 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2790 | <context-group purpose="location"> | 2798 | <context-group purpose="location"> |
2791 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2799 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4428,12 +4436,18 @@ galfi le mi japyvla</target> | |||
4428 | <source>Basic configuration</source> | 4436 | <source>Basic configuration</source> |
4429 | <target state="new">Basic configuration</target> | 4437 | <target state="new">Basic configuration</target> |
4430 | 4438 | ||
4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4440 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4441 | <context-group purpose="location"> | ||
4442 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4443 | <context context-type="linenumber">700</context> | ||
4444 | </context-group> | ||
4445 | </trans-unit> | ||
4432 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4446 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4433 | <source>TWITTER</source> | 4447 | <source>TWITTER</source> |
4434 | <target state="new">TWITTER</target> | 4448 | <target state="new">TWITTER</target> |
4435 | 4449 | ||
4436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4437 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4451 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4438 | <source> | 4452 | <source> |
4439 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4453 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4442,95 +4456,79 @@ galfi le mi japyvla</target> | |||
4442 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4456 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4443 | </target> | 4457 | </target> |
4444 | 4458 | ||
4445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4446 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4460 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4447 | <source>Your Twitter username</source> | 4461 | <source>Your Twitter username</source> |
4448 | <target state="new">Your Twitter username</target> | 4462 | <target state="new">Your Twitter username</target> |
4449 | 4463 | ||
4450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4451 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4465 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4452 | <source>Instance allowed by Twitter</source> | 4466 | <source>Instance allowed by Twitter</source> |
4453 | <target state="new">Instance allowed by Twitter</target> | 4467 | <target state="new">Instance allowed by Twitter</target> |
4454 | 4468 | ||
4455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4456 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4470 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4457 | 4471 | ||
4458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4459 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4473 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4460 | <source>LIVE</source><target state="new">LIVE</target> | 4474 | <source>LIVE</source><target state="new">LIVE</target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4463 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4477 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4464 | 4478 | ||
4465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4466 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4480 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4467 | 4481 | ||
4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4469 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4483 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4470 | 4484 | ||
4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4472 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4486 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4473 | 4487 | ||
4474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4475 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4489 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4476 | 4490 | ||
4477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4478 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4492 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4479 | <context-group purpose="location"> | 4493 | |
4480 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4481 | <context context-type="linenumber">751</context> | ||
4482 | </context-group> | ||
4483 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4484 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4495 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4485 | 4496 | ||
4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4487 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4498 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4488 | <context-group purpose="location"> | 4499 | |
4489 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4490 | <context context-type="linenumber">759</context> | ||
4491 | </context-group> | ||
4492 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4493 | <source>Max live duration</source><target state="new">Max live duration</target> | 4501 | <source>Max live duration</source><target state="new">Max live duration</target> |
4494 | 4502 | ||
4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4496 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4504 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4497 | 4505 | ||
4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4499 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4507 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4500 | 4508 | ||
4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4502 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4510 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4503 | 4511 | ||
4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4505 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4513 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4506 | 4514 | ||
4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4508 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4516 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4509 | 4517 | ||
4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4511 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4519 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4512 | <context-group purpose="location"> | ||
4513 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4514 | <context context-type="linenumber">793</context> | ||
4515 | </context-group> | ||
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">935</context> | ||
4519 | </context-group> | ||
4520 | </trans-unit> | ||
4521 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4522 | <source>Services</source> | ||
4523 | <target state="new">Services</target> | ||
4524 | 4520 | ||
4525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4521 | |
4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4523 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4526 | <source>Live streaming</source><target state="new">Live streaming</target> | 4524 | <source>Live streaming</source><target state="new">Live streaming</target> |
4527 | 4525 | ||
4528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4529 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4527 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4530 | <source>TRANSCODING</source> | 4528 | <source>TRANSCODING</source> |
4531 | <target state="new">TRANSCODING</target> | 4529 | <target state="new">TRANSCODING</target> |
4532 | 4530 | ||
4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4534 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4532 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4535 | <source> 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. </source> | 4533 | <source> 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. </source> |
4536 | <target state="new"> | 4534 | <target state="new"> |
@@ -4538,55 +4536,53 @@ galfi le mi japyvla</target> | |||
4538 | resources, this is a critical part of PeerTube, so tread carefully. | 4536 | resources, this is a critical part of PeerTube, so tread carefully. |
4539 | </target> | 4537 | </target> |
4540 | 4538 | ||
4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4542 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4540 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4543 | <source>Transcoding enabled</source> | 4541 | <source>Transcoding enabled</source> |
4544 | <target state="new">Transcoding enabled</target> | 4542 | <target state="new">Transcoding enabled</target> |
4545 | 4543 | ||
4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4547 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4545 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4548 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4546 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4549 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4547 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4550 | 4548 | ||
4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4550 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4551 | |||
4552 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4553 | |||
4554 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4555 | <context-group purpose="location"> | ||
4556 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4557 | <context context-type="linenumber">759,763</context> | ||
4558 | </context-group> | ||
4559 | </trans-unit> | ||
4552 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4560 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4553 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4561 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4554 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4562 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4555 | 4563 | ||
4556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4557 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4565 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4558 | <source>Allow additional extensions</source> | 4566 | <source>Allow additional extensions</source> |
4559 | <target state="new">Allow additional extensions</target> | 4567 | <target state="new">Allow additional extensions</target> |
4560 | 4568 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4562 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4570 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4563 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4571 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4564 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4572 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4565 | 4573 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4567 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4575 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4568 | <source>Allow audio files upload</source> | 4576 | <source>Allow audio files upload</source> |
4569 | <target state="new">Allow audio files upload</target> | 4577 | <target state="new">Allow audio files upload</target> |
4570 | 4578 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4572 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4580 | |
4573 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4574 | <target state="new"> | ||
4575 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4576 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4577 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4578 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4579 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4580 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4581 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4582 | </target> | ||
4583 | |||
4584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4581 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4586 | <source>WebTorrent support enabled</source> | 4582 | <source>WebTorrent support enabled</source> |
4587 | <target state="new">WebTorrent support enabled</target> | 4583 | <target state="new">WebTorrent support enabled</target> |
4588 | 4584 | ||
4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4586 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4587 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4592 | <target state="new"> | 4588 | <target state="new"> |
@@ -4606,27 +4602,27 @@ galfi le mi japyvla</target> | |||
4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4602 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4607 | </target> | 4603 | </target> |
4608 | 4604 | ||
4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4606 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4611 | <source>HLS with P2P support enabled</source> | 4607 | <source>HLS with P2P support enabled</source> |
4612 | <target state="new">HLS with P2P support enabled</target> | 4608 | <target state="new">HLS with P2P support enabled</target> |
4613 | 4609 | ||
4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4611 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4616 | <source>Transcoding threads</source> | 4612 | <source>Transcoding threads</source> |
4617 | <target state="new">Transcoding threads</target> | 4613 | <target state="new">Transcoding threads</target> |
4618 | 4614 | ||
4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4616 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4621 | <source>Resolutions to generate</source> | 4617 | <source>Resolutions to generate</source> |
4622 | <target state="new">Resolutions to generate</target> | 4618 | <target state="new">Resolutions to generate</target> |
4623 | 4619 | ||
4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4621 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4626 | <source>CACHE</source> | 4622 | <source>CACHE</source> |
4627 | <target state="new">CACHE</target> | 4623 | <target state="new">CACHE</target> |
4628 | 4624 | ||
4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4626 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4631 | <source> | 4627 | <source> |
4632 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4628 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4635,34 +4631,28 @@ galfi le mi japyvla</target> | |||
4635 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4631 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4636 | </target> | 4632 | </target> |
4637 | 4633 | ||
4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4635 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4640 | <source>Number of previews to keep in cache</source> | 4636 | <source>Number of previews to keep in cache</source> |
4641 | <target state="new">Number of previews to keep in cache</target> | 4637 | <target state="new">Number of previews to keep in cache</target> |
4642 | 4638 | ||
4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4640 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4645 | <context-group purpose="location"> | 4641 | |
4646 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4647 | <context context-type="linenumber">986</context> | ||
4648 | </context-group> | ||
4649 | </trans-unit> | ||
4650 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4643 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4651 | <source>Number of video captions to keep in cache</source> | 4644 | <source>Number of video captions to keep in cache</source> |
4652 | <target state="new">Number of video captions to keep in cache</target> | 4645 | <target state="new">Number of video captions to keep in cache</target> |
4653 | 4646 | ||
4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4655 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4656 | <context-group purpose="location"> | 4649 | |
4657 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4658 | <context context-type="linenumber">998</context> | ||
4659 | </context-group> | ||
4660 | </trans-unit> | ||
4661 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4651 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4662 | <source>CUSTOMIZATIONS</source> | 4652 | <source>CUSTOMIZATIONS</source> |
4663 | <target state="new">CUSTOMIZATIONS</target> | 4653 | <target state="new">CUSTOMIZATIONS</target> |
4664 | 4654 | ||
4665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4666 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4656 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4667 | <source> | 4657 | <source> |
4668 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4658 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4671,12 +4661,12 @@ galfi le mi japyvla</target> | |||
4671 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4661 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4672 | </target> | 4662 | </target> |
4673 | 4663 | ||
4674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4675 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4665 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4676 | <source>JavaScript</source> | 4666 | <source>JavaScript</source> |
4677 | <target>la .djavascript.</target> | 4667 | <target>la .djavascript.</target> |
4678 | 4668 | ||
4679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4680 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4670 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4681 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4671 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4682 | <target state="new"> | 4672 | <target state="new"> |
@@ -4686,7 +4676,7 @@ galfi le mi japyvla</target> | |||
4686 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4676 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4687 | </target> | 4677 | </target> |
4688 | 4678 | ||
4689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4690 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4680 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4691 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4681 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4692 | color: red; | 4682 | color: red; |
@@ -4718,23 +4708,23 @@ galfi le mi japyvla</target> | |||
4718 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4708 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4719 | </target> | 4709 | </target> |
4720 | 4710 | ||
4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4722 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4712 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4723 | 4713 | ||
4724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4725 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4715 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4726 | 4716 | ||
4727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4728 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4718 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4729 | <source>Advanced configuration</source> | 4719 | <source>Advanced configuration</source> |
4730 | <target state="new">Advanced configuration</target> | 4720 | <target state="new">Advanced configuration</target> |
4731 | 4721 | ||
4732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4733 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4723 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4734 | <source>Update configuration</source> | 4724 | <source>Update configuration</source> |
4735 | <target>nu basti fi lo ka ce'u te tcimi'e</target> | 4725 | <target>nu basti fi lo ka ce'u te tcimi'e</target> |
4736 | 4726 | ||
4737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4738 | 4728 | ||
4739 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4729 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4740 | <source>VIDEO SETTINGS</source> | 4730 | <source>VIDEO SETTINGS</source> |
@@ -7510,7 +7500,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7510 | <source>any language</source> | 7500 | <source>any language</source> |
7511 | <target state="new">any language</target> | 7501 | <target state="new">any language</target> |
7512 | 7502 | ||
7513 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7503 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7514 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7504 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7515 | 7505 | ||
7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7506 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7518,22 +7508,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7518 | <source>hide</source> | 7508 | <source>hide</source> |
7519 | <target state="new">hide</target> | 7509 | <target state="new">hide</target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7522 | <trans-unit id="8603861867909474404" datatype="html"> | 7512 | <trans-unit id="8603861867909474404" datatype="html"> |
7523 | <source>blur</source> | 7513 | <source>blur</source> |
7524 | <target state="new">blur</target> | 7514 | <target state="new">blur</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7527 | <trans-unit id="4534458451100881847" datatype="html"> | 7517 | <trans-unit id="4534458451100881847" datatype="html"> |
7528 | <source>display</source> | 7518 | <source>display</source> |
7529 | <target state="new">display</target> | 7519 | <target state="new">display</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7532 | <trans-unit id="4467323362722952678" datatype="html"> | 7522 | <trans-unit id="4467323362722952678" datatype="html"> |
7533 | <source>Unknown</source> | 7523 | <source>Unknown</source> |
7534 | <target state="new">Unknown</target> | 7524 | <target state="new">Unknown</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7537 | <trans-unit id="8781423666414310853"> | 7527 | <trans-unit id="8781423666414310853"> |
7538 | <source>Your password has been successfully reset!</source> | 7528 | <source>Your password has been successfully reset!</source> |
7539 | <target>.i snada lo nu mo'u galfi le do japyvla</target> | 7529 | <target>.i snada lo nu mo'u galfi le do japyvla</target> |
@@ -8544,13 +8534,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8544 | <source>Instance languages</source> | 8534 | <source>Instance languages</source> |
8545 | <target state="new">Instance languages</target> | 8535 | <target state="new">Instance languages</target> |
8546 | 8536 | ||
8547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8548 | <trans-unit id="40119547597591062" datatype="html"> | 8538 | <trans-unit id="40119547597591062" datatype="html"> |
8549 | <source>All languages</source> | 8539 | <source>All languages</source> |
8550 | <target state="new">All languages</target> | 8540 | <target state="new">All languages</target> |
8551 | 8541 | ||
8552 | 8542 | ||
8553 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8554 | <trans-unit id="996392855508119363" datatype="html"> | 8544 | <trans-unit id="996392855508119363" datatype="html"> |
8555 | <source>Hidden</source> | 8545 | <source>Hidden</source> |
8556 | <target state="new">Hidden</target> | 8546 | <target state="new">Hidden</target> |
@@ -9325,7 +9315,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9325 | <source>Only users of this instance can see this video</source> | 9315 | <source>Only users of this instance can see this video</source> |
9326 | <target state="new">Only users of this instance can see this video</target> | 9316 | <target state="new">Only users of this instance can see this video</target> |
9327 | 9317 | ||
9328 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9319 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9320 | <context-group purpose="location"> | ||
9321 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9322 | <context context-type="linenumber">211</context> | ||
9323 | </context-group> | ||
9324 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9325 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9326 | <context-group purpose="location"> | ||
9327 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9328 | <context context-type="linenumber">214</context> | ||
9329 | </context-group> | ||
9330 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9329 | <source>Close</source><target state="new">Close</target> | 9331 | <source>Close</source><target state="new">Close</target> |
9330 | 9332 | ||
9331 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9333 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.kab.xlf b/client/src/locale/angular.kab.xlf index 28e05cae4..4e51829be 100644 --- a/client/src/locale/angular.kab.xlf +++ b/client/src/locale/angular.kab.xlf | |||
@@ -369,17 +369,25 @@ | |||
369 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> n tmeẓriyin} } | 369 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> n tmeẓriyin} } |
370 | </target> | 370 | </target> |
371 | 371 | ||
372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
373 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
374 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
375 | "/> </target> | ||
376 | <context-group purpose="location"> | ||
377 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
378 | <context context-type="linenumber">32,33</context> | ||
379 | </context-group> | ||
380 | </trans-unit> | ||
373 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 381 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
374 | <source>Blocked</source> | 382 | <source>Blocked</source> |
375 | <target state="translated">Yewḥel</target> | 383 | <target state="translated">Yewḥel</target> |
376 | 384 | ||
377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
378 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 386 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
379 | <source>Sensitive</source> | 387 | <source>Sensitive</source> |
380 | <target state="translated">Aḥulfu</target> | 388 | <target state="translated">Aḥulfu</target> |
381 | 389 | ||
382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 390 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
383 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 391 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
384 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 392 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
385 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videos} } </target> | 393 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videos} } </target> |
@@ -1196,11 +1204,7 @@ The link will expire within 1 hour.</source> | |||
1196 | <target state="translated">Sensitive:</target> | 1204 | <target state="translated">Sensitive:</target> |
1197 | 1205 | ||
1198 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1206 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1199 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1207 | |
1200 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1201 | <target state="translated">Interface: <x id="INTERPOLATION" equiv-text="{{ language }}"/> </target> | ||
1202 | |||
1203 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1204 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1208 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1205 | <source>Help share videos</source> | 1209 | <source>Help share videos</source> |
1206 | <target state="translated">Help share videos</target> | 1210 | <target state="translated">Help share videos</target> |
@@ -1236,7 +1240,13 @@ The link will expire within 1 hour.</source> | |||
1236 | <source>Videos</source> | 1240 | <source>Videos</source> |
1237 | <target>Tividyutin</target> | 1241 | <target>Tividyutin</target> |
1238 | 1242 | ||
1239 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1243 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1244 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1245 | <context-group purpose="location"> | ||
1246 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1247 | <context context-type="linenumber">171</context> | ||
1248 | </context-group> | ||
1249 | </trans-unit> | ||
1240 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1250 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1241 | <source>Playlists</source> | 1251 | <source>Playlists</source> |
1242 | <target>Tibdarin n tɣuri</target> | 1252 | <target>Tibdarin n tɣuri</target> |
@@ -1799,12 +1809,12 @@ The link will expire within 1 hour.</source> | |||
1799 | <source>Scheduled</source> | 1809 | <source>Scheduled</source> |
1800 | <target>Yettuɣawes</target> | 1810 | <target>Yettuɣawes</target> |
1801 | 1811 | ||
1802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1803 | <trans-unit id="1435317307066082710" datatype="html"> | 1813 | <trans-unit id="1435317307066082710" datatype="html"> |
1804 | <source>Hide the video until a specific date</source> | 1814 | <source>Hide the video until a specific date</source> |
1805 | <target state="translated">Hide the video until a specific date</target> | 1815 | <target state="translated">Hide the video until a specific date</target> |
1806 | 1816 | ||
1807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1808 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1818 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1809 | <source>Video background image</source> | 1819 | <source>Video background image</source> |
1810 | <target state="translated">Video background image</target> | 1820 | <target state="translated">Video background image</target> |
@@ -2476,7 +2486,7 @@ The link will expire within 1 hour.</source> | |||
2476 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2486 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2477 | <context context-type="linenumber">8</context> | 2487 | <context context-type="linenumber">8</context> |
2478 | </context-group> | 2488 | </context-group> |
2479 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2489 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2480 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2490 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2481 | <context-group purpose="location"> | 2491 | <context-group purpose="location"> |
2482 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2492 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3485,7 +3495,13 @@ The link will expire within 1 hour.</source> | |||
3485 | <source>Basic configuration</source> | 3495 | <source>Basic configuration</source> |
3486 | <target state="translated">Basic configuration</target> | 3496 | <target state="translated">Basic configuration</target> |
3487 | 3497 | ||
3488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3499 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3500 | <context-group purpose="location"> | ||
3501 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3502 | <context context-type="linenumber">700</context> | ||
3503 | </context-group> | ||
3504 | </trans-unit> | ||
3489 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> | 3505 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> |
3490 | <source>APPEARANCE</source> | 3506 | <source>APPEARANCE</source> |
3491 | <target state="translated">APPEARANCE</target> | 3507 | <target state="translated">APPEARANCE</target> |
@@ -3740,226 +3756,210 @@ The link will expire within 1 hour.</source> | |||
3740 | <target state="translated">Enable contact form</target> | 3756 | <target state="translated">Enable contact form</target> |
3741 | 3757 | ||
3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group></trans-unit> | 3758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group></trans-unit> |
3743 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | 3759 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
3744 | <source>Services</source> | ||
3745 | <target>Imeẓla</target> | ||
3746 | |||
3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
3748 | <source>Live streaming</source><target state="new">Live streaming</target> | 3760 | <source>Live streaming</source><target state="new">Live streaming</target> |
3749 | 3761 | ||
3750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3751 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3763 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3752 | <source>TWITTER</source> | 3764 | <source>TWITTER</source> |
3753 | <target state="translated">TWITTER</target> | 3765 | <target state="translated">TWITTER</target> |
3754 | 3766 | ||
3755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3756 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3768 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3757 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3769 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3758 | <target state="translated">Optional. If any, provide the Twitter account representing your instance to improve link previews.</target> | 3770 | <target state="translated">Optional. If any, provide the Twitter account representing your instance to improve link previews.</target> |
3759 | 3771 | ||
3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3761 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 3773 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
3762 | <source>Your Twitter username</source> | 3774 | <source>Your Twitter username</source> |
3763 | <target state="translated">Your Twitter username</target> | 3775 | <target state="translated">Your Twitter username</target> |
3764 | 3776 | ||
3765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3766 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3778 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3767 | <source>Instance allowed by Twitter</source> | 3779 | <source>Instance allowed by Twitter</source> |
3768 | <target state="translated">Instance allowed by Twitter</target> | 3780 | <target state="translated">Instance allowed by Twitter</target> |
3769 | 3781 | ||
3770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3771 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3783 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3772 | 3784 | ||
3773 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3774 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3786 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3775 | <source>LIVE</source><target state="new">LIVE</target> | 3787 | <source>LIVE</source><target state="new">LIVE</target> |
3776 | 3788 | ||
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3778 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 3790 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
3779 | 3791 | ||
3780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3781 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 3793 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3782 | 3794 | ||
3783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3784 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 3796 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
3785 | 3797 | ||
3786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3787 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 3799 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
3788 | 3800 | ||
3789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3790 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 3802 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
3791 | 3803 | ||
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3793 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3805 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3794 | <context-group purpose="location"> | 3806 | |
3795 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3796 | <context context-type="linenumber">751</context> | ||
3797 | </context-group> | ||
3798 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
3799 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 3808 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
3800 | 3809 | ||
3801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3802 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3811 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3803 | <context-group purpose="location"> | 3812 | |
3804 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3805 | <context context-type="linenumber">759</context> | ||
3806 | </context-group> | ||
3807 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
3808 | <source>Max live duration</source><target state="new">Max live duration</target> | 3814 | <source>Max live duration</source><target state="new">Max live duration</target> |
3809 | 3815 | ||
3810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3811 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 3817 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
3812 | 3818 | ||
3813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3814 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 3820 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
3815 | 3821 | ||
3816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3817 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 3823 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
3818 | 3824 | ||
3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3820 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 3826 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
3821 | 3827 | ||
3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3823 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 3829 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
3824 | 3830 | ||
3825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3826 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3832 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3827 | <context-group purpose="location"> | 3833 | |
3828 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3834 | |
3829 | <context context-type="linenumber">793</context> | 3835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> |
3830 | </context-group> | ||
3831 | <context-group purpose="location"> | ||
3832 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3833 | <context context-type="linenumber">935</context> | ||
3834 | </context-group> | ||
3835 | </trans-unit> | ||
3836 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 3836 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
3837 | <source>Advanced configuration</source> | 3837 | <source>Advanced configuration</source> |
3838 | <target state="translated">Advanced configuration</target> | 3838 | <target state="translated">Advanced configuration</target> |
3839 | 3839 | ||
3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3841 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3841 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3842 | <source>TRANSCODING</source> | 3842 | <source>TRANSCODING</source> |
3843 | <target state="translated">TRANSCODING</target> | 3843 | <target state="translated">TRANSCODING</target> |
3844 | 3844 | ||
3845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3846 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3846 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3847 | <source>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.</source> | 3847 | <source>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.</source> |
3848 | <target state="translated">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.</target> | 3848 | <target state="translated">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.</target> |
3849 | 3849 | ||
3850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3851 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 3851 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
3852 | <source>Transcoding enabled</source> | 3852 | <source>Transcoding enabled</source> |
3853 | <target state="translated">Transcoding enabled</target> | 3853 | <target state="translated">Transcoding enabled</target> |
3854 | 3854 | ||
3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3856 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 3856 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
3857 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3857 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3858 | <target state="translated">If you disable transcoding, many videos from your users will not work!</target> | 3858 | <target state="translated">If you disable transcoding, many videos from your users will not work!</target> |
3859 | 3859 | ||
3860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3861 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3862 | |||
3863 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3864 | |||
3865 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3866 | <context-group purpose="location"> | ||
3867 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3868 | <context context-type="linenumber">759,763</context> | ||
3869 | </context-group> | ||
3870 | </trans-unit> | ||
3861 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3871 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3862 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3872 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3863 | <target state="translated">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 3873 | <target state="translated">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
3864 | 3874 | ||
3865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3866 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 3876 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
3867 | <source>Allow additional extensions</source> | 3877 | <source>Allow additional extensions</source> |
3868 | <target state="translated">Allow additional extensions</target> | 3878 | <target state="translated">Allow additional extensions</target> |
3869 | 3879 | ||
3870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3871 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3881 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3872 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3882 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3873 | <target state="translated">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 3883 | <target state="translated">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
3874 | 3884 | ||
3875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3876 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 3886 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
3877 | <source>Allow audio files upload</source> | 3887 | <source>Allow audio files upload</source> |
3878 | <target state="translated">Allow audio files upload</target> | 3888 | <target state="translated">Allow audio files upload</target> |
3879 | 3889 | ||
3880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3881 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3891 | |
3882 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3883 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> </target> | ||
3884 | |||
3885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3886 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3892 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3887 | <source>WebTorrent support enabled</source> | 3893 | <source>WebTorrent support enabled</source> |
3888 | <target state="translated">WebTorrent support enabled</target> | 3894 | <target state="translated">WebTorrent support enabled</target> |
3889 | 3895 | ||
3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3891 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3897 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3892 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3898 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3893 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1 <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player: <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul>"/> <x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/> <x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback in particular with long videos <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/> <x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading) <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/> <x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/> <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2 <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> </target> | 3899 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1 <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player: <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul>"/> <x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/> <x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback in particular with long videos <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/> <x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading) <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/> <x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/> <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2 <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> </target> |
3894 | 3900 | ||
3895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3896 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3902 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3897 | <source>HLS with P2P support enabled</source> | 3903 | <source>HLS with P2P support enabled</source> |
3898 | <target state="translated">HLS with P2P support enabled</target> | 3904 | <target state="translated">HLS with P2P support enabled</target> |
3899 | 3905 | ||
3900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3901 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 3907 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
3902 | <source>Transcoding threads</source> | 3908 | <source>Transcoding threads</source> |
3903 | <target state="translated">Transcoding threads</target> | 3909 | <target state="translated">Transcoding threads</target> |
3904 | 3910 | ||
3905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3906 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3912 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3907 | <source>Resolutions to generate</source> | 3913 | <source>Resolutions to generate</source> |
3908 | <target state="translated">Resolutions to generate</target> | 3914 | <target state="translated">Resolutions to generate</target> |
3909 | 3915 | ||
3910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3911 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3917 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3912 | <source>CACHE</source> | 3918 | <source>CACHE</source> |
3913 | <target state="translated">CACHE</target> | 3919 | <target state="translated">CACHE</target> |
3914 | 3920 | ||
3915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3916 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3922 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3917 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3923 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3918 | <target state="translated">Some files are not federated, and fetched when necessary. Define their caching policies.</target> | 3924 | <target state="translated">Some files are not federated, and fetched when necessary. Define their caching policies.</target> |
3919 | 3925 | ||
3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3921 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3927 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3922 | <source>Number of previews to keep in cache</source> | 3928 | <source>Number of previews to keep in cache</source> |
3923 | <target state="translated">Number of previews to keep in cache</target> | 3929 | <target state="translated">Number of previews to keep in cache</target> |
3924 | 3930 | ||
3925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3926 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3932 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3927 | <context-group purpose="location"> | 3933 | |
3928 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3929 | <context context-type="linenumber">986</context> | ||
3930 | </context-group> | ||
3931 | </trans-unit> | ||
3932 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3935 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3933 | <source>Number of video captions to keep in cache</source> | 3936 | <source>Number of video captions to keep in cache</source> |
3934 | <target state="translated">Number of video captions to keep in cache</target> | 3937 | <target state="translated">Number of video captions to keep in cache</target> |
3935 | 3938 | ||
3936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3937 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3940 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3938 | <context-group purpose="location"> | 3941 | |
3939 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3940 | <context context-type="linenumber">998</context> | ||
3941 | </context-group> | ||
3942 | </trans-unit> | ||
3943 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3943 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3944 | <source>CUSTOMIZATIONS</source> | 3944 | <source>CUSTOMIZATIONS</source> |
3945 | <target state="translated">CUSTOMIZATIONS</target> | 3945 | <target state="translated">CUSTOMIZATIONS</target> |
3946 | 3946 | ||
3947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3948 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3948 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3949 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3949 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3950 | <target state="translated">Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</target> | 3950 | <target state="translated">Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</target> |
3951 | 3951 | ||
3952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3953 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 3953 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
3954 | <source>JavaScript</source> | 3954 | <source>JavaScript</source> |
3955 | <target>JavaScript</target> | 3955 | <target>JavaScript</target> |
3956 | 3956 | ||
3957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3958 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3958 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3959 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3959 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3960 | <target state="translated">Write JavaScript code directly. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/>Example: <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing'); <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> </target> | 3960 | <target state="translated">Write JavaScript code directly. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/>Example: <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing'); <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> </target> |
3961 | 3961 | ||
3962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3963 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3963 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3964 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 3964 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3965 | color: red; | 3965 | color: red; |
@@ -3970,19 +3970,19 @@ The link will expire within 1 hour.</source> | |||
3970 | <x id="CLOSE_TAG_PRE"/></source> | 3970 | <x id="CLOSE_TAG_PRE"/></source> |
3971 | <target state="translated">Write CSS code directly. Example: <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> color: red; <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Prepend with <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> to override styles. Example: <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> color: red; <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> </target> | 3971 | <target state="translated">Write CSS code directly. Example: <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> color: red; <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Prepend with <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> to override styles. Example: <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> color: red; <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> </target> |
3972 | 3972 | ||
3973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3974 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 3974 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
3975 | 3975 | ||
3976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3977 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 3977 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
3978 | 3978 | ||
3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3980 | 3980 | ||
3981 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 3981 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
3982 | <source>Update configuration</source> | 3982 | <source>Update configuration</source> |
3983 | <target state="translated">Update configuration</target> | 3983 | <target state="translated">Update configuration</target> |
3984 | 3984 | ||
3985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3986 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3986 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3987 | <source>VIDEO SETTINGS</source> | 3987 | <source>VIDEO SETTINGS</source> |
3988 | <target state="translated">VIDEO SETTINGS</target> | 3988 | <target state="translated">VIDEO SETTINGS</target> |
@@ -6403,27 +6403,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6403 | <source>hide</source> | 6403 | <source>hide</source> |
6404 | <target>ffer</target> | 6404 | <target>ffer</target> |
6405 | 6405 | ||
6406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6407 | <trans-unit id="8603861867909474404" datatype="html"> | 6407 | <trans-unit id="8603861867909474404" datatype="html"> |
6408 | <source>blur</source> | 6408 | <source>blur</source> |
6409 | <target state="translated">blur</target> | 6409 | <target state="translated">blur</target> |
6410 | 6410 | ||
6411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6412 | <trans-unit id="4534458451100881847" datatype="html"> | 6412 | <trans-unit id="4534458451100881847" datatype="html"> |
6413 | <source>display</source> | 6413 | <source>display</source> |
6414 | <target state="translated">display</target> | 6414 | <target state="translated">display</target> |
6415 | 6415 | ||
6416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6417 | <trans-unit id="4467323362722952678" datatype="html"> | 6417 | <trans-unit id="4467323362722952678" datatype="html"> |
6418 | <source>Unknown</source> | 6418 | <source>Unknown</source> |
6419 | <target>D arussin</target> | 6419 | <target>D arussin</target> |
6420 | 6420 | ||
6421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6422 | <trans-unit id="7939914198003891823" datatype="html"> | 6422 | <trans-unit id="7939914198003891823" datatype="html"> |
6423 | <source>any language</source> | 6423 | <source>any language</source> |
6424 | <target state="translated">any language</target> | 6424 | <target state="translated">any language</target> |
6425 | 6425 | ||
6426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6427 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6427 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6428 | 6428 | ||
6429 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6429 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7398,12 +7398,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7398 | <source>Instance languages</source> | 7398 | <source>Instance languages</source> |
7399 | <target state="translated">Instance languages</target> | 7399 | <target state="translated">Instance languages</target> |
7400 | 7400 | ||
7401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7402 | <trans-unit id="40119547597591062" datatype="html"> | 7402 | <trans-unit id="40119547597591062" datatype="html"> |
7403 | <source>All languages</source> | 7403 | <source>All languages</source> |
7404 | <target state="translated">Akk tutlayin</target> | 7404 | <target state="translated">Akk tutlayin</target> |
7405 | 7405 | ||
7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7407 | <trans-unit id="996392855508119363" datatype="html"> | 7407 | <trans-unit id="996392855508119363" datatype="html"> |
7408 | <source>Hidden</source> | 7408 | <source>Hidden</source> |
7409 | <target>Yeffer</target> | 7409 | <target>Yeffer</target> |
@@ -8019,7 +8019,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8019 | <source>Only users of this instance can see this video</source> | 8019 | <source>Only users of this instance can see this video</source> |
8020 | <target state="translated">Only users of this instance can see this video</target> | 8020 | <target state="translated">Only users of this instance can see this video</target> |
8021 | 8021 | ||
8022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8023 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8024 | <context-group purpose="location"> | ||
8025 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8026 | <context context-type="linenumber">211</context> | ||
8027 | </context-group> | ||
8028 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8029 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8030 | <context-group purpose="location"> | ||
8031 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8032 | <context context-type="linenumber">214</context> | ||
8033 | </context-group> | ||
8034 | </trans-unit> | ||
8023 | <trans-unit id="ngb.alert.close" datatype="html"> | 8035 | <trans-unit id="ngb.alert.close" datatype="html"> |
8024 | <source>Close</source> | 8036 | <source>Close</source> |
8025 | <target state="translated">Mdel</target> | 8037 | <target state="translated">Mdel</target> |
diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 59aa62834..58ba8d356 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf | |||
@@ -508,17 +508,25 @@ | |||
508 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 508 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
509 | </target> | 509 | </target> |
510 | 510 | ||
511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
512 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
513 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
514 | "/> </target> | ||
515 | <context-group purpose="location"> | ||
516 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
517 | <context context-type="linenumber">32,33</context> | ||
518 | </context-group> | ||
519 | </trans-unit> | ||
512 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 520 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
513 | <source>Blocked</source> | 521 | <source>Blocked</source> |
514 | <target state="new">Blocked</target> | 522 | <target state="new">Blocked</target> |
515 | 523 | ||
516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
517 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 525 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
518 | <source>Sensitive</source> | 526 | <source>Sensitive</source> |
519 | <target state="translated">민감</target> | 527 | <target state="translated">민감</target> |
520 | 528 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
522 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 530 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
523 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 531 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
524 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 532 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1357,13 +1365,7 @@ The link will expire within 1 hour.</target> | |||
1357 | <target state="new">Sensitive:</target> | 1365 | <target state="new">Sensitive:</target> |
1358 | 1366 | ||
1359 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1360 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1368 | |
1361 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1362 | <target state="new">Interface: | ||
1363 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1364 | </target> | ||
1365 | |||
1366 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1367 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1369 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1368 | <source>Help share videos</source> | 1370 | <source>Help share videos</source> |
1369 | <target state="new">Help share videos</target> | 1371 | <target state="new">Help share videos</target> |
@@ -1439,7 +1441,13 @@ The link will expire within 1 hour.</target> | |||
1439 | <source>Videos</source> | 1441 | <source>Videos</source> |
1440 | <target>영상</target> | 1442 | <target>영상</target> |
1441 | 1443 | ||
1442 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1445 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1446 | <context-group purpose="location"> | ||
1447 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1448 | <context context-type="linenumber">171</context> | ||
1449 | </context-group> | ||
1450 | </trans-unit> | ||
1443 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1451 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1444 | <source>Playlists</source> | 1452 | <source>Playlists</source> |
1445 | <target>재생목록</target> | 1453 | <target>재생목록</target> |
@@ -2062,12 +2070,12 @@ The link will expire within 1 hour.</target> | |||
2062 | <source>Scheduled</source> | 2070 | <source>Scheduled</source> |
2063 | <target state="new">Scheduled</target> | 2071 | <target state="new">Scheduled</target> |
2064 | 2072 | ||
2065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2066 | <trans-unit id="1435317307066082710" datatype="html"> | 2074 | <trans-unit id="1435317307066082710" datatype="html"> |
2067 | <source>Hide the video until a specific date</source> | 2075 | <source>Hide the video until a specific date</source> |
2068 | <target state="new">Hide the video until a specific date</target> | 2076 | <target state="new">Hide the video until a specific date</target> |
2069 | 2077 | ||
2070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2071 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2079 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2072 | <source>Video background image</source> | 2080 | <source>Video background image</source> |
2073 | <target state="new">Video background image</target> | 2081 | <target state="new">Video background image</target> |
@@ -2732,7 +2740,7 @@ The link will expire within 1 hour.</target> | |||
2732 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2740 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2733 | <context context-type="linenumber">8</context> | 2741 | <context context-type="linenumber">8</context> |
2734 | </context-group> | 2742 | </context-group> |
2735 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2743 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2736 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2744 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2737 | <context-group purpose="location"> | 2745 | <context-group purpose="location"> |
2738 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2746 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4361,107 +4369,97 @@ The link will expire within 1 hour.</target> | |||
4361 | <source>Basic configuration</source> | 4369 | <source>Basic configuration</source> |
4362 | <target state="new">Basic configuration</target> | 4370 | <target state="new">Basic configuration</target> |
4363 | 4371 | ||
4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4373 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4374 | <context-group purpose="location"> | ||
4375 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4376 | <context context-type="linenumber">700</context> | ||
4377 | </context-group> | ||
4378 | </trans-unit> | ||
4365 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4379 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4366 | <source>TWITTER</source> | 4380 | <source>TWITTER</source> |
4367 | <target state="new">TWITTER</target> | 4381 | <target state="new">TWITTER</target> |
4368 | 4382 | ||
4369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4370 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4384 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4371 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4385 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4372 | <target state="new"> | 4386 | <target state="new"> |
4373 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4387 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4374 | </target> | 4388 | </target> |
4375 | 4389 | ||
4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4377 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4391 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4378 | <source>Your Twitter username</source> | 4392 | <source>Your Twitter username</source> |
4379 | <target state="new">Your Twitter username</target> | 4393 | <target state="new">Your Twitter username</target> |
4380 | 4394 | ||
4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4382 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4396 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4383 | <source>Instance allowed by Twitter</source> | 4397 | <source>Instance allowed by Twitter</source> |
4384 | <target state="new">Instance allowed by Twitter</target> | 4398 | <target state="new">Instance allowed by Twitter</target> |
4385 | 4399 | ||
4386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4387 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4401 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4388 | 4402 | ||
4389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4390 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4404 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4391 | <source>LIVE</source><target state="new">LIVE</target> | 4405 | <source>LIVE</source><target state="new">LIVE</target> |
4392 | 4406 | ||
4393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4394 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4408 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4395 | 4409 | ||
4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4397 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4411 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4398 | 4412 | ||
4399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4400 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4414 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4401 | 4415 | ||
4402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4403 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4417 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4404 | 4418 | ||
4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4406 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4420 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4407 | 4421 | ||
4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4409 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4423 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4410 | <context-group purpose="location"> | 4424 | |
4411 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4412 | <context context-type="linenumber">751</context> | ||
4413 | </context-group> | ||
4414 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4415 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4426 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4416 | 4427 | ||
4417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4418 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4429 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4419 | <context-group purpose="location"> | 4430 | |
4420 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4421 | <context context-type="linenumber">759</context> | ||
4422 | </context-group> | ||
4423 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4424 | <source>Max live duration</source><target state="new">Max live duration</target> | 4432 | <source>Max live duration</source><target state="new">Max live duration</target> |
4425 | 4433 | ||
4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4427 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4435 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4428 | 4436 | ||
4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4430 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4438 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4431 | 4439 | ||
4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4433 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4441 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4436 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4444 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4437 | 4445 | ||
4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4439 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4447 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4440 | 4448 | ||
4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4442 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4450 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4443 | <context-group purpose="location"> | ||
4444 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4445 | <context context-type="linenumber">793</context> | ||
4446 | </context-group> | ||
4447 | <context-group purpose="location"> | ||
4448 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4449 | <context context-type="linenumber">935</context> | ||
4450 | </context-group> | ||
4451 | </trans-unit> | ||
4452 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4453 | <source>Services</source> | ||
4454 | <target state="new">Services</target> | ||
4455 | 4451 | ||
4456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4452 | |
4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4454 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4457 | <source>Live streaming</source><target state="new">Live streaming</target> | 4455 | <source>Live streaming</source><target state="new">Live streaming</target> |
4458 | 4456 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4460 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4458 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4461 | <source>TRANSCODING</source> | 4459 | <source>TRANSCODING</source> |
4462 | <target state="new">TRANSCODING</target> | 4460 | <target state="new">TRANSCODING</target> |
4463 | 4461 | ||
4464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4465 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4463 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4466 | <source> 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. </source> | 4464 | <source> 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. </source> |
4467 | <target state="new"> | 4465 | <target state="new"> |
@@ -4469,55 +4467,53 @@ The link will expire within 1 hour.</target> | |||
4469 | resources, this is a critical part of PeerTube, so tread carefully. | 4467 | resources, this is a critical part of PeerTube, so tread carefully. |
4470 | </target> | 4468 | </target> |
4471 | 4469 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4473 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4471 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4474 | <source>Transcoding enabled</source> | 4472 | <source>Transcoding enabled</source> |
4475 | <target state="new">Transcoding enabled</target> | 4473 | <target state="new">Transcoding enabled</target> |
4476 | 4474 | ||
4477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4478 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4476 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4479 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4477 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4480 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4478 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4481 | 4479 | ||
4482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4481 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4482 | |||
4483 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4484 | |||
4485 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4486 | <context-group purpose="location"> | ||
4487 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4488 | <context context-type="linenumber">759,763</context> | ||
4489 | </context-group> | ||
4490 | </trans-unit> | ||
4483 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4491 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4484 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4492 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4485 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4493 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4486 | 4494 | ||
4487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4488 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4496 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4489 | <source>Allow additional extensions</source> | 4497 | <source>Allow additional extensions</source> |
4490 | <target state="new">Allow additional extensions</target> | 4498 | <target state="new">Allow additional extensions</target> |
4491 | 4499 | ||
4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4493 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4501 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4494 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4502 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4495 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4503 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4496 | 4504 | ||
4497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4498 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4506 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4499 | <source>Allow audio files upload</source> | 4507 | <source>Allow audio files upload</source> |
4500 | <target state="new">Allow audio files upload</target> | 4508 | <target state="new">Allow audio files upload</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4503 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4511 | |
4504 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4505 | <target state="new"> | ||
4506 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4507 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4508 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4509 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4510 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4511 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4512 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4513 | </target> | ||
4514 | |||
4515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4516 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4512 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4517 | <source>WebTorrent support enabled</source> | 4513 | <source>WebTorrent support enabled</source> |
4518 | <target state="new">WebTorrent support enabled</target> | 4514 | <target state="new">WebTorrent support enabled</target> |
4519 | 4515 | ||
4520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4521 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4517 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4522 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4518 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4523 | <target state="new"> | 4519 | <target state="new"> |
@@ -4537,73 +4533,67 @@ The link will expire within 1 hour.</target> | |||
4537 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4533 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4538 | </target> | 4534 | </target> |
4539 | 4535 | ||
4540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4541 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4537 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4542 | <source>HLS with P2P support enabled</source> | 4538 | <source>HLS with P2P support enabled</source> |
4543 | <target state="new">HLS with P2P support enabled</target> | 4539 | <target state="new">HLS with P2P support enabled</target> |
4544 | 4540 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4546 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4542 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4547 | <source>Transcoding threads</source> | 4543 | <source>Transcoding threads</source> |
4548 | <target state="new">Transcoding threads</target> | 4544 | <target state="new">Transcoding threads</target> |
4549 | 4545 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4551 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4547 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4552 | <source>Resolutions to generate</source> | 4548 | <source>Resolutions to generate</source> |
4553 | <target state="new">Resolutions to generate</target> | 4549 | <target state="new">Resolutions to generate</target> |
4554 | 4550 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4556 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4552 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4557 | <source>CACHE</source> | 4553 | <source>CACHE</source> |
4558 | <target state="new">CACHE</target> | 4554 | <target state="new">CACHE</target> |
4559 | 4555 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4561 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4557 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4562 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4558 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4563 | <target state="new"> | 4559 | <target state="new"> |
4564 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4560 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4565 | </target> | 4561 | </target> |
4566 | 4562 | ||
4567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4568 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4564 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4569 | <source>Number of previews to keep in cache</source> | 4565 | <source>Number of previews to keep in cache</source> |
4570 | <target state="new">Number of previews to keep in cache</target> | 4566 | <target state="new">Number of previews to keep in cache</target> |
4571 | 4567 | ||
4572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4573 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4569 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4574 | <context-group purpose="location"> | 4570 | |
4575 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4576 | <context context-type="linenumber">986</context> | ||
4577 | </context-group> | ||
4578 | </trans-unit> | ||
4579 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4572 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4580 | <source>Number of video captions to keep in cache</source> | 4573 | <source>Number of video captions to keep in cache</source> |
4581 | <target state="new">Number of video captions to keep in cache</target> | 4574 | <target state="new">Number of video captions to keep in cache</target> |
4582 | 4575 | ||
4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4576 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4584 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4577 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4585 | <context-group purpose="location"> | 4578 | |
4586 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4587 | <context context-type="linenumber">998</context> | ||
4588 | </context-group> | ||
4589 | </trans-unit> | ||
4590 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4580 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4591 | <source>CUSTOMIZATIONS</source> | 4581 | <source>CUSTOMIZATIONS</source> |
4592 | <target state="new">CUSTOMIZATIONS</target> | 4582 | <target state="new">CUSTOMIZATIONS</target> |
4593 | 4583 | ||
4594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4595 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4585 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4596 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4586 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4597 | <target state="new"> | 4587 | <target state="new"> |
4598 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4588 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4599 | </target> | 4589 | </target> |
4600 | 4590 | ||
4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4602 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4592 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4603 | <source>JavaScript</source> | 4593 | <source>JavaScript</source> |
4604 | <target state="new">JavaScript</target> | 4594 | <target state="new">JavaScript</target> |
4605 | 4595 | ||
4606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4607 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4597 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4608 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4598 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4609 | <target state="new"> | 4599 | <target state="new"> |
@@ -4613,7 +4603,7 @@ The link will expire within 1 hour.</target> | |||
4613 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4603 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4614 | </target> | 4604 | </target> |
4615 | 4605 | ||
4616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4617 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4607 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4618 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4608 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4619 | color: red; | 4609 | color: red; |
@@ -4645,23 +4635,23 @@ The link will expire within 1 hour.</target> | |||
4645 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4635 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4646 | </target> | 4636 | </target> |
4647 | 4637 | ||
4648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4649 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4639 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4650 | 4640 | ||
4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4652 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4642 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4653 | 4643 | ||
4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4655 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4645 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4656 | <source>Advanced configuration</source> | 4646 | <source>Advanced configuration</source> |
4657 | <target state="new">Advanced configuration</target> | 4647 | <target state="new">Advanced configuration</target> |
4658 | 4648 | ||
4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4660 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4650 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4661 | <source>Update configuration</source> | 4651 | <source>Update configuration</source> |
4662 | <target state="new">Update configuration</target> | 4652 | <target state="new">Update configuration</target> |
4663 | 4653 | ||
4664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4665 | 4655 | ||
4666 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4656 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4667 | <source>VIDEO SETTINGS</source> | 4657 | <source>VIDEO SETTINGS</source> |
@@ -7402,7 +7392,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7392 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7393 | <target state="new">any language</target> |
7404 | 7394 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7395 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7406 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7396 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7407 | 7397 | ||
7408 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7410,22 +7400,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7410 | <source>hide</source> | 7400 | <source>hide</source> |
7411 | <target state="new">hide</target> | 7401 | <target state="new">hide</target> |
7412 | 7402 | ||
7413 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7403 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7414 | <trans-unit id="8603861867909474404" datatype="html"> | 7404 | <trans-unit id="8603861867909474404" datatype="html"> |
7415 | <source>blur</source> | 7405 | <source>blur</source> |
7416 | <target state="new">blur</target> | 7406 | <target state="new">blur</target> |
7417 | 7407 | ||
7418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7408 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7419 | <trans-unit id="4534458451100881847" datatype="html"> | 7409 | <trans-unit id="4534458451100881847" datatype="html"> |
7420 | <source>display</source> | 7410 | <source>display</source> |
7421 | <target state="new">display</target> | 7411 | <target state="new">display</target> |
7422 | 7412 | ||
7423 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7413 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7424 | <trans-unit id="4467323362722952678" datatype="html"> | 7414 | <trans-unit id="4467323362722952678" datatype="html"> |
7425 | <source>Unknown</source> | 7415 | <source>Unknown</source> |
7426 | <target state="new">Unknown</target> | 7416 | <target state="new">Unknown</target> |
7427 | 7417 | ||
7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7429 | <trans-unit id="8781423666414310853" datatype="html"> | 7419 | <trans-unit id="8781423666414310853" datatype="html"> |
7430 | <source>Your password has been successfully reset!</source> | 7420 | <source>Your password has been successfully reset!</source> |
7431 | <target state="new">Your password has been successfully reset!</target> | 7421 | <target state="new">Your password has been successfully reset!</target> |
@@ -8437,13 +8427,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8437 | <source>Instance languages</source> | 8427 | <source>Instance languages</source> |
8438 | <target state="new">Instance languages</target> | 8428 | <target state="new">Instance languages</target> |
8439 | 8429 | ||
8440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8441 | <trans-unit id="40119547597591062" datatype="html"> | 8431 | <trans-unit id="40119547597591062" datatype="html"> |
8442 | <source>All languages</source> | 8432 | <source>All languages</source> |
8443 | <target state="new">All languages</target> | 8433 | <target state="new">All languages</target> |
8444 | 8434 | ||
8445 | 8435 | ||
8446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8447 | <trans-unit id="996392855508119363" datatype="html"> | 8437 | <trans-unit id="996392855508119363" datatype="html"> |
8448 | <source>Hidden</source> | 8438 | <source>Hidden</source> |
8449 | <target state="new">Hidden</target> | 8439 | <target state="new">Hidden</target> |
@@ -9213,7 +9203,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9213 | <source>Only users of this instance can see this video</source> | 9203 | <source>Only users of this instance can see this video</source> |
9214 | <target state="new">Only users of this instance can see this video</target> | 9204 | <target state="new">Only users of this instance can see this video</target> |
9215 | 9205 | ||
9216 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9206 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9207 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9208 | <context-group purpose="location"> | ||
9209 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9210 | <context context-type="linenumber">211</context> | ||
9211 | </context-group> | ||
9212 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9213 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9214 | <context-group purpose="location"> | ||
9215 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9216 | <context context-type="linenumber">214</context> | ||
9217 | </context-group> | ||
9218 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9217 | <source>Close</source><target state="new">Close</target> | 9219 | <source>Close</source><target state="new">Close</target> |
9218 | 9220 | ||
9219 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9221 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.lt-LT.xlf b/client/src/locale/angular.lt-LT.xlf index cec97ca5e..98de3cded 100644 --- a/client/src/locale/angular.lt-LT.xlf +++ b/client/src/locale/angular.lt-LT.xlf | |||
@@ -500,19 +500,27 @@ | |||
500 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 500 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
501 | </target> | 501 | </target> |
502 | 502 | ||
503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
504 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
505 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
506 | "/> </target> | ||
507 | <context-group purpose="location"> | ||
508 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
509 | <context context-type="linenumber">32,33</context> | ||
510 | </context-group> | ||
511 | </trans-unit> | ||
504 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 512 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
505 | <source>Blocked</source> | 513 | <source>Blocked</source> |
506 | <target state="new">Blocked</target> | 514 | <target state="new">Blocked</target> |
507 | 515 | ||
508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
509 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 517 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
510 | <source>Sensitive</source> | 518 | <source>Sensitive</source> |
511 | <target state="new"> | 519 | <target state="new"> |
512 | Sensitive | 520 | Sensitive |
513 | </target> | 521 | </target> |
514 | 522 | ||
515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
516 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 524 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
517 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 525 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
518 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 526 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1354,13 +1362,7 @@ The link will expire within 1 hour.</target> | |||
1354 | <target state="new">Sensitive:</target> | 1362 | <target state="new">Sensitive:</target> |
1355 | 1363 | ||
1356 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1357 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1365 | |
1358 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1359 | <target state="new">Interface: | ||
1360 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1361 | </target> | ||
1362 | |||
1363 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1364 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1366 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1365 | <source>Help share videos</source> | 1367 | <source>Help share videos</source> |
1366 | <target state="new">Help share videos</target> | 1368 | <target state="new">Help share videos</target> |
@@ -1436,7 +1438,13 @@ The link will expire within 1 hour.</target> | |||
1436 | <source>Videos</source> | 1438 | <source>Videos</source> |
1437 | <target state="new">Videos</target> | 1439 | <target state="new">Videos</target> |
1438 | 1440 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1442 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1443 | <context-group purpose="location"> | ||
1444 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1445 | <context context-type="linenumber">171</context> | ||
1446 | </context-group> | ||
1447 | </trans-unit> | ||
1440 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1448 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1441 | <source>Playlists</source> | 1449 | <source>Playlists</source> |
1442 | <target state="new">Playlists</target> | 1450 | <target state="new">Playlists</target> |
@@ -2059,12 +2067,12 @@ The link will expire within 1 hour.</target> | |||
2059 | <source>Scheduled</source> | 2067 | <source>Scheduled</source> |
2060 | <target state="new">Scheduled</target> | 2068 | <target state="new">Scheduled</target> |
2061 | 2069 | ||
2062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2063 | <trans-unit id="1435317307066082710" datatype="html"> | 2071 | <trans-unit id="1435317307066082710" datatype="html"> |
2064 | <source>Hide the video until a specific date</source> | 2072 | <source>Hide the video until a specific date</source> |
2065 | <target state="new">Hide the video until a specific date</target> | 2073 | <target state="new">Hide the video until a specific date</target> |
2066 | 2074 | ||
2067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2068 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2076 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2069 | <source>Video background image</source> | 2077 | <source>Video background image</source> |
2070 | <target state="new">Video background image</target> | 2078 | <target state="new">Video background image</target> |
@@ -2717,7 +2725,7 @@ The link will expire within 1 hour.</target> | |||
2717 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2725 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2718 | <context context-type="linenumber">8</context> | 2726 | <context context-type="linenumber">8</context> |
2719 | </context-group> | 2727 | </context-group> |
2720 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2728 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2721 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2729 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2722 | <context-group purpose="location"> | 2730 | <context-group purpose="location"> |
2723 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2731 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4352,107 +4360,97 @@ The link will expire within 1 hour.</target> | |||
4352 | <source>Basic configuration</source> | 4360 | <source>Basic configuration</source> |
4353 | <target state="new">Basic configuration</target> | 4361 | <target state="new">Basic configuration</target> |
4354 | 4362 | ||
4355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4364 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4365 | <context-group purpose="location"> | ||
4366 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4367 | <context context-type="linenumber">700</context> | ||
4368 | </context-group> | ||
4369 | </trans-unit> | ||
4356 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4370 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4357 | <source>TWITTER</source> | 4371 | <source>TWITTER</source> |
4358 | <target state="new">TWITTER</target> | 4372 | <target state="new">TWITTER</target> |
4359 | 4373 | ||
4360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4361 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4375 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4362 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4376 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4363 | <target state="new"> | 4377 | <target state="new"> |
4364 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4378 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4365 | </target> | 4379 | </target> |
4366 | 4380 | ||
4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4368 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4382 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4369 | <source>Your Twitter username</source> | 4383 | <source>Your Twitter username</source> |
4370 | <target state="new">Your Twitter username</target> | 4384 | <target state="new">Your Twitter username</target> |
4371 | 4385 | ||
4372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4373 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4387 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4374 | <source>Instance allowed by Twitter</source> | 4388 | <source>Instance allowed by Twitter</source> |
4375 | <target state="new">Instance allowed by Twitter</target> | 4389 | <target state="new">Instance allowed by Twitter</target> |
4376 | 4390 | ||
4377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4378 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4392 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4379 | 4393 | ||
4380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4381 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4395 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4382 | <source>LIVE</source><target state="new">LIVE</target> | 4396 | <source>LIVE</source><target state="new">LIVE</target> |
4383 | 4397 | ||
4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4385 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4399 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4386 | 4400 | ||
4387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4388 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4402 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4389 | 4403 | ||
4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4391 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4405 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4392 | 4406 | ||
4393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4394 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4408 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4395 | 4409 | ||
4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4397 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4411 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4398 | 4412 | ||
4399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4400 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4414 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4401 | <context-group purpose="location"> | 4415 | |
4402 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4403 | <context context-type="linenumber">751</context> | ||
4404 | </context-group> | ||
4405 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4406 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4417 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4407 | 4418 | ||
4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4409 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4420 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4410 | <context-group purpose="location"> | 4421 | |
4411 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4412 | <context context-type="linenumber">759</context> | ||
4413 | </context-group> | ||
4414 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4415 | <source>Max live duration</source><target state="new">Max live duration</target> | 4423 | <source>Max live duration</source><target state="new">Max live duration</target> |
4416 | 4424 | ||
4417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4418 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4426 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4419 | 4427 | ||
4420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4421 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4429 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4422 | 4430 | ||
4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4424 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4432 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4425 | 4433 | ||
4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4427 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4435 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4428 | 4436 | ||
4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4430 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4438 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4431 | 4439 | ||
4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4433 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4441 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4434 | <context-group purpose="location"> | ||
4435 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4436 | <context context-type="linenumber">793</context> | ||
4437 | </context-group> | ||
4438 | <context-group purpose="location"> | ||
4439 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4440 | <context context-type="linenumber">935</context> | ||
4441 | </context-group> | ||
4442 | </trans-unit> | ||
4443 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4444 | <source>Services</source> | ||
4445 | <target state="new">Services</target> | ||
4446 | 4442 | ||
4447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4443 | |
4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4445 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4448 | <source>Live streaming</source><target state="new">Live streaming</target> | 4446 | <source>Live streaming</source><target state="new">Live streaming</target> |
4449 | 4447 | ||
4450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4451 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4449 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4452 | <source>TRANSCODING</source> | 4450 | <source>TRANSCODING</source> |
4453 | <target state="new">TRANSCODING</target> | 4451 | <target state="new">TRANSCODING</target> |
4454 | 4452 | ||
4455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4456 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4454 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4457 | <source> 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. </source> | 4455 | <source> 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. </source> |
4458 | <target state="new"> | 4456 | <target state="new"> |
@@ -4460,55 +4458,53 @@ The link will expire within 1 hour.</target> | |||
4460 | resources, this is a critical part of PeerTube, so tread carefully. | 4458 | resources, this is a critical part of PeerTube, so tread carefully. |
4461 | </target> | 4459 | </target> |
4462 | 4460 | ||
4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4464 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4462 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4465 | <source>Transcoding enabled</source> | 4463 | <source>Transcoding enabled</source> |
4466 | <target state="new">Transcoding enabled</target> | 4464 | <target state="new">Transcoding enabled</target> |
4467 | 4465 | ||
4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4469 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4467 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4470 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4468 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4471 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4469 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4472 | 4470 | ||
4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4472 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4473 | |||
4474 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4475 | |||
4476 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4477 | <context-group purpose="location"> | ||
4478 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4479 | <context context-type="linenumber">759,763</context> | ||
4480 | </context-group> | ||
4481 | </trans-unit> | ||
4474 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4482 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4475 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4483 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4476 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4484 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4477 | 4485 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4479 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4487 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4480 | <source>Allow additional extensions</source> | 4488 | <source>Allow additional extensions</source> |
4481 | <target state="new">Allow additional extensions</target> | 4489 | <target state="new">Allow additional extensions</target> |
4482 | 4490 | ||
4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4484 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4492 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4485 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4493 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4486 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4494 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4487 | 4495 | ||
4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4489 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4497 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4490 | <source>Allow audio files upload</source> | 4498 | <source>Allow audio files upload</source> |
4491 | <target state="new">Allow audio files upload</target> | 4499 | <target state="new">Allow audio files upload</target> |
4492 | 4500 | ||
4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4494 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4502 | |
4495 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4496 | <target state="new"> | ||
4497 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4498 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4499 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4500 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4501 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4502 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4503 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4504 | </target> | ||
4505 | |||
4506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4507 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4503 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4508 | <source>WebTorrent support enabled</source> | 4504 | <source>WebTorrent support enabled</source> |
4509 | <target state="new">WebTorrent support enabled</target> | 4505 | <target state="new">WebTorrent support enabled</target> |
4510 | 4506 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4512 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4508 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4513 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4509 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4514 | <target state="new"> | 4510 | <target state="new"> |
@@ -4528,73 +4524,67 @@ The link will expire within 1 hour.</target> | |||
4528 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4524 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4529 | </target> | 4525 | </target> |
4530 | 4526 | ||
4531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4532 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4528 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4533 | <source>HLS with P2P support enabled</source> | 4529 | <source>HLS with P2P support enabled</source> |
4534 | <target state="new">HLS with P2P support enabled</target> | 4530 | <target state="new">HLS with P2P support enabled</target> |
4535 | 4531 | ||
4536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4537 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4533 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4538 | <source>Transcoding threads</source> | 4534 | <source>Transcoding threads</source> |
4539 | <target state="new">Transcoding threads</target> | 4535 | <target state="new">Transcoding threads</target> |
4540 | 4536 | ||
4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4542 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4538 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4543 | <source>Resolutions to generate</source> | 4539 | <source>Resolutions to generate</source> |
4544 | <target state="new">Resolutions to generate</target> | 4540 | <target state="new">Resolutions to generate</target> |
4545 | 4541 | ||
4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4547 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4543 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4548 | <source>CACHE</source> | 4544 | <source>CACHE</source> |
4549 | <target state="new">CACHE</target> | 4545 | <target state="new">CACHE</target> |
4550 | 4546 | ||
4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4552 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4548 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4553 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4549 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4554 | <target state="new"> | 4550 | <target state="new"> |
4555 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4551 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4556 | </target> | 4552 | </target> |
4557 | 4553 | ||
4558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4559 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4555 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4560 | <source>Number of previews to keep in cache</source> | 4556 | <source>Number of previews to keep in cache</source> |
4561 | <target state="new">Number of previews to keep in cache</target> | 4557 | <target state="new">Number of previews to keep in cache</target> |
4562 | 4558 | ||
4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4564 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4560 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4565 | <context-group purpose="location"> | 4561 | |
4566 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4567 | <context context-type="linenumber">986</context> | ||
4568 | </context-group> | ||
4569 | </trans-unit> | ||
4570 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4563 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4571 | <source>Number of video captions to keep in cache</source> | 4564 | <source>Number of video captions to keep in cache</source> |
4572 | <target state="new">Number of video captions to keep in cache</target> | 4565 | <target state="new">Number of video captions to keep in cache</target> |
4573 | 4566 | ||
4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4575 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4568 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4576 | <context-group purpose="location"> | 4569 | |
4577 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4578 | <context context-type="linenumber">998</context> | ||
4579 | </context-group> | ||
4580 | </trans-unit> | ||
4581 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4571 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4582 | <source>CUSTOMIZATIONS</source> | 4572 | <source>CUSTOMIZATIONS</source> |
4583 | <target state="new">CUSTOMIZATIONS</target> | 4573 | <target state="new">CUSTOMIZATIONS</target> |
4584 | 4574 | ||
4585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4586 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4576 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4587 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4577 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4588 | <target state="new"> | 4578 | <target state="new"> |
4589 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4579 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4590 | </target> | 4580 | </target> |
4591 | 4581 | ||
4592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4593 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4583 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4594 | <source>JavaScript</source> | 4584 | <source>JavaScript</source> |
4595 | <target state="new">JavaScript</target> | 4585 | <target state="new">JavaScript</target> |
4596 | 4586 | ||
4597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4598 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4588 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4599 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4589 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4600 | <target state="new"> | 4590 | <target state="new"> |
@@ -4604,7 +4594,7 @@ The link will expire within 1 hour.</target> | |||
4604 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4594 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4605 | </target> | 4595 | </target> |
4606 | 4596 | ||
4607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4608 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4598 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4609 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4599 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4610 | color: red; | 4600 | color: red; |
@@ -4636,23 +4626,23 @@ The link will expire within 1 hour.</target> | |||
4636 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4626 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4637 | </target> | 4627 | </target> |
4638 | 4628 | ||
4639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4640 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4630 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4641 | 4631 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4643 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4633 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4644 | 4634 | ||
4645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4646 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4636 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4647 | <source>Advanced configuration</source> | 4637 | <source>Advanced configuration</source> |
4648 | <target state="new">Advanced configuration</target> | 4638 | <target state="new">Advanced configuration</target> |
4649 | 4639 | ||
4650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4651 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4641 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4652 | <source>Update configuration</source> | 4642 | <source>Update configuration</source> |
4653 | <target state="new">Update configuration</target> | 4643 | <target state="new">Update configuration</target> |
4654 | 4644 | ||
4655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4656 | 4646 | ||
4657 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4647 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4658 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
@@ -7395,7 +7385,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7395 | <source>any language</source> | 7385 | <source>any language</source> |
7396 | <target state="new">any language</target> | 7386 | <target state="new">any language</target> |
7397 | 7387 | ||
7398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7388 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7399 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7389 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7400 | 7390 | ||
7401 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7391 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7403,22 +7393,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7403 | <source>hide</source> | 7393 | <source>hide</source> |
7404 | <target state="new">hide</target> | 7394 | <target state="new">hide</target> |
7405 | 7395 | ||
7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7396 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7407 | <trans-unit id="8603861867909474404" datatype="html"> | 7397 | <trans-unit id="8603861867909474404" datatype="html"> |
7408 | <source>blur</source> | 7398 | <source>blur</source> |
7409 | <target state="new">blur</target> | 7399 | <target state="new">blur</target> |
7410 | 7400 | ||
7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7401 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7412 | <trans-unit id="4534458451100881847" datatype="html"> | 7402 | <trans-unit id="4534458451100881847" datatype="html"> |
7413 | <source>display</source> | 7403 | <source>display</source> |
7414 | <target state="new">display</target> | 7404 | <target state="new">display</target> |
7415 | 7405 | ||
7416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7417 | <trans-unit id="4467323362722952678" datatype="html"> | 7407 | <trans-unit id="4467323362722952678" datatype="html"> |
7418 | <source>Unknown</source> | 7408 | <source>Unknown</source> |
7419 | <target state="new">Unknown</target> | 7409 | <target state="new">Unknown</target> |
7420 | 7410 | ||
7421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7422 | <trans-unit id="8781423666414310853" datatype="html"> | 7412 | <trans-unit id="8781423666414310853" datatype="html"> |
7423 | <source>Your password has been successfully reset!</source> | 7413 | <source>Your password has been successfully reset!</source> |
7424 | <target state="new">Your password has been successfully reset!</target> | 7414 | <target state="new">Your password has been successfully reset!</target> |
@@ -8430,13 +8420,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8430 | <source>Instance languages</source> | 8420 | <source>Instance languages</source> |
8431 | <target state="new">Instance languages</target> | 8421 | <target state="new">Instance languages</target> |
8432 | 8422 | ||
8433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8434 | <trans-unit id="40119547597591062" datatype="html"> | 8424 | <trans-unit id="40119547597591062" datatype="html"> |
8435 | <source>All languages</source> | 8425 | <source>All languages</source> |
8436 | <target state="new">All languages</target> | 8426 | <target state="new">All languages</target> |
8437 | 8427 | ||
8438 | 8428 | ||
8439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8440 | <trans-unit id="996392855508119363" datatype="html"> | 8430 | <trans-unit id="996392855508119363" datatype="html"> |
8441 | <source>Hidden</source> | 8431 | <source>Hidden</source> |
8442 | <target state="new">Hidden</target> | 8432 | <target state="new">Hidden</target> |
@@ -9206,7 +9196,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9206 | <source>Only users of this instance can see this video</source> | 9196 | <source>Only users of this instance can see this video</source> |
9207 | <target state="new">Only users of this instance can see this video</target> | 9197 | <target state="new">Only users of this instance can see this video</target> |
9208 | 9198 | ||
9209 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9200 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9201 | <context-group purpose="location"> | ||
9202 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9203 | <context context-type="linenumber">211</context> | ||
9204 | </context-group> | ||
9205 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9206 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9207 | <context-group purpose="location"> | ||
9208 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9209 | <context context-type="linenumber">214</context> | ||
9210 | </context-group> | ||
9211 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9210 | <source>Close</source><target state="new">Close</target> | 9212 | <source>Close</source><target state="new">Close</target> |
9211 | 9213 | ||
9212 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9214 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.nb-NO.xlf b/client/src/locale/angular.nb-NO.xlf index 82f825e9a..428929fc0 100644 --- a/client/src/locale/angular.nb-NO.xlf +++ b/client/src/locale/angular.nb-NO.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Sensitive | 540 | Sensitive |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 546 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1388,13 +1396,7 @@ The link will expire within 1 hour.</target> | |||
1388 | <target state="new">Sensitive:</target> | 1396 | <target state="new">Sensitive:</target> |
1389 | 1397 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1391 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1399 | |
1392 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1393 | <target state="new">Interface: | ||
1394 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1395 | </target> | ||
1396 | |||
1397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1398 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1400 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1399 | <source>Help share videos</source> | 1401 | <source>Help share videos</source> |
1400 | <target state="new">Help share videos</target> | 1402 | <target state="new">Help share videos</target> |
@@ -1470,7 +1472,13 @@ The link will expire within 1 hour.</target> | |||
1470 | <source>Videos</source> | 1472 | <source>Videos</source> |
1471 | <target state="new">Videos</target> | 1473 | <target state="new">Videos</target> |
1472 | 1474 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1476 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1479 | <context context-type="linenumber">171</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1474 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1482 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1475 | <source>Playlists</source> | 1483 | <source>Playlists</source> |
1476 | <target state="new">Playlists</target> | 1484 | <target state="new">Playlists</target> |
@@ -2105,12 +2113,12 @@ The link will expire within 1 hour.</target> | |||
2105 | <source>Scheduled</source> | 2113 | <source>Scheduled</source> |
2106 | <target state="new">Scheduled</target> | 2114 | <target state="new">Scheduled</target> |
2107 | 2115 | ||
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2109 | <trans-unit id="1435317307066082710" datatype="html"> | 2117 | <trans-unit id="1435317307066082710" datatype="html"> |
2110 | <source>Hide the video until a specific date</source> | 2118 | <source>Hide the video until a specific date</source> |
2111 | <target state="new">Hide the video until a specific date</target> | 2119 | <target state="new">Hide the video until a specific date</target> |
2112 | 2120 | ||
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2114 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2122 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2115 | <source>Video background image</source> | 2123 | <source>Video background image</source> |
2116 | <target state="new">Video background image</target> | 2124 | <target state="new">Video background image</target> |
@@ -2789,7 +2797,7 @@ The link will expire within 1 hour.</target> | |||
2789 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2797 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2790 | <context context-type="linenumber">8</context> | 2798 | <context context-type="linenumber">8</context> |
2791 | </context-group> | 2799 | </context-group> |
2792 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2800 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2793 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2801 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2794 | <context-group purpose="location"> | 2802 | <context-group purpose="location"> |
2795 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2803 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4432,12 +4440,18 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>Basic configuration</source> | 4440 | <source>Basic configuration</source> |
4433 | <target state="new">Basic configuration</target> | 4441 | <target state="new">Basic configuration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4444 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">700</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4436 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4450 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4437 | <source>TWITTER</source> | 4451 | <source>TWITTER</source> |
4438 | <target state="new">TWITTER</target> | 4452 | <target state="new">TWITTER</target> |
4439 | 4453 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4441 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4455 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4442 | <source> | 4456 | <source> |
4443 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4457 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4446,95 +4460,79 @@ The link will expire within 1 hour.</target> | |||
4446 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4460 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4447 | </target> | 4461 | </target> |
4448 | 4462 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4450 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4464 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4451 | <source>Your Twitter username</source> | 4465 | <source>Your Twitter username</source> |
4452 | <target state="new">Your Twitter username</target> | 4466 | <target state="new">Your Twitter username</target> |
4453 | 4467 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4455 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4469 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4456 | <source>Instance allowed by Twitter</source> | 4470 | <source>Instance allowed by Twitter</source> |
4457 | <target state="new">Instance allowed by Twitter</target> | 4471 | <target state="new">Instance allowed by Twitter</target> |
4458 | 4472 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4460 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4474 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4463 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4477 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4464 | <source>LIVE</source><target state="new">LIVE</target> | 4478 | <source>LIVE</source><target state="new">LIVE</target> |
4465 | 4479 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4467 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4481 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4468 | 4482 | ||
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4470 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4484 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4471 | 4485 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4473 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4487 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4474 | 4488 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4476 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4490 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4477 | 4491 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4479 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4493 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4480 | 4494 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4482 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4496 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4483 | <context-group purpose="location"> | 4497 | |
4484 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4485 | <context context-type="linenumber">751</context> | ||
4486 | </context-group> | ||
4487 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4488 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4499 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4489 | 4500 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4491 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4502 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4492 | <context-group purpose="location"> | 4503 | |
4493 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4494 | <context context-type="linenumber">759</context> | ||
4495 | </context-group> | ||
4496 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4497 | <source>Max live duration</source><target state="new">Max live duration</target> | 4505 | <source>Max live duration</source><target state="new">Max live duration</target> |
4498 | 4506 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4500 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4508 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4503 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4511 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4504 | 4512 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4506 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4514 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4507 | 4515 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4509 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4517 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4512 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4520 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4515 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4523 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">793</context> | ||
4519 | </context-group> | ||
4520 | <context-group purpose="location"> | ||
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4522 | <context context-type="linenumber">935</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4526 | <source>Services</source> | ||
4527 | <target state="new">Services</target> | ||
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4525 | |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4527 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4530 | <source>Live streaming</source><target state="new">Live streaming</target> | 4528 | <source>Live streaming</source><target state="new">Live streaming</target> |
4531 | 4529 | ||
4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4533 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4531 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4534 | <source>TRANSCODING</source> | 4532 | <source>TRANSCODING</source> |
4535 | <target state="new">TRANSCODING</target> | 4533 | <target state="new">TRANSCODING</target> |
4536 | 4534 | ||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4538 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4536 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4539 | <source> 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. </source> | 4537 | <source> 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. </source> |
4540 | <target state="new"> | 4538 | <target state="new"> |
@@ -4542,55 +4540,53 @@ The link will expire within 1 hour.</target> | |||
4542 | resources, this is a critical part of PeerTube, so tread carefully. | 4540 | resources, this is a critical part of PeerTube, so tread carefully. |
4543 | </target> | 4541 | </target> |
4544 | 4542 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4546 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4544 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4547 | <source>Transcoding enabled</source> | 4545 | <source>Transcoding enabled</source> |
4548 | <target state="new">Transcoding enabled</target> | 4546 | <target state="new">Transcoding enabled</target> |
4549 | 4547 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4551 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4549 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4552 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4550 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4553 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4551 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4554 | 4552 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4554 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4555 | |||
4556 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4557 | |||
4558 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4559 | <context-group purpose="location"> | ||
4560 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4561 | <context context-type="linenumber">759,763</context> | ||
4562 | </context-group> | ||
4563 | </trans-unit> | ||
4556 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4564 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4557 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4565 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4558 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4566 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4559 | 4567 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4561 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4569 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4562 | <source>Allow additional extensions</source> | 4570 | <source>Allow additional extensions</source> |
4563 | <target state="new">Allow additional extensions</target> | 4571 | <target state="new">Allow additional extensions</target> |
4564 | 4572 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4566 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4574 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4567 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4575 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4568 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4576 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4569 | 4577 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4571 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4579 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4572 | <source>Allow audio files upload</source> | 4580 | <source>Allow audio files upload</source> |
4573 | <target state="new">Allow audio files upload</target> | 4581 | <target state="new">Allow audio files upload</target> |
4574 | 4582 | ||
4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4576 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4584 | |
4577 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4578 | <target state="new"> | ||
4579 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4580 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4581 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4582 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4583 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4584 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4585 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4586 | </target> | ||
4587 | |||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4589 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4590 | <source>WebTorrent support enabled</source> | 4586 | <source>WebTorrent support enabled</source> |
4591 | <target state="new">WebTorrent support enabled</target> | 4587 | <target state="new">WebTorrent support enabled</target> |
4592 | 4588 | ||
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4594 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4595 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4596 | <target state="new"> | 4592 | <target state="new"> |
@@ -4610,27 +4606,27 @@ The link will expire within 1 hour.</target> | |||
4610 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4611 | </target> | 4607 | </target> |
4612 | 4608 | ||
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4614 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4615 | <source>HLS with P2P support enabled</source> | 4611 | <source>HLS with P2P support enabled</source> |
4616 | <target state="new">HLS with P2P support enabled</target> | 4612 | <target state="new">HLS with P2P support enabled</target> |
4617 | 4613 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4619 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4620 | <source>Transcoding threads</source> | 4616 | <source>Transcoding threads</source> |
4621 | <target state="new">Transcoding threads</target> | 4617 | <target state="new">Transcoding threads</target> |
4622 | 4618 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4624 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4625 | <source>Resolutions to generate</source> | 4621 | <source>Resolutions to generate</source> |
4626 | <target state="new">Resolutions to generate</target> | 4622 | <target state="new">Resolutions to generate</target> |
4627 | 4623 | ||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4629 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4630 | <source>CACHE</source> | 4626 | <source>CACHE</source> |
4631 | <target state="new">CACHE</target> | 4627 | <target state="new">CACHE</target> |
4632 | 4628 | ||
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4634 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4635 | <source> | 4631 | <source> |
4636 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4632 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4639,34 +4635,28 @@ The link will expire within 1 hour.</target> | |||
4639 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4635 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4640 | </target> | 4636 | </target> |
4641 | 4637 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4643 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4644 | <source>Number of previews to keep in cache</source> | 4640 | <source>Number of previews to keep in cache</source> |
4645 | <target state="new">Number of previews to keep in cache</target> | 4641 | <target state="new">Number of previews to keep in cache</target> |
4646 | 4642 | ||
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4649 | <context-group purpose="location"> | 4645 | |
4650 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4651 | <context context-type="linenumber">986</context> | ||
4652 | </context-group> | ||
4653 | </trans-unit> | ||
4654 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4647 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4655 | <source>Number of video captions to keep in cache</source> | 4648 | <source>Number of video captions to keep in cache</source> |
4656 | <target state="new">Number of video captions to keep in cache</target> | 4649 | <target state="new">Number of video captions to keep in cache</target> |
4657 | 4650 | ||
4658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4659 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4652 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4660 | <context-group purpose="location"> | 4653 | |
4661 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4662 | <context context-type="linenumber">998</context> | ||
4663 | </context-group> | ||
4664 | </trans-unit> | ||
4665 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4655 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4666 | <source>CUSTOMIZATIONS</source> | 4656 | <source>CUSTOMIZATIONS</source> |
4667 | <target state="new">CUSTOMIZATIONS</target> | 4657 | <target state="new">CUSTOMIZATIONS</target> |
4668 | 4658 | ||
4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4670 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4660 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4671 | <source> | 4661 | <source> |
4672 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4662 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4675,12 +4665,12 @@ The link will expire within 1 hour.</target> | |||
4675 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4665 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4676 | </target> | 4666 | </target> |
4677 | 4667 | ||
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4679 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4669 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4680 | <source>JavaScript</source> | 4670 | <source>JavaScript</source> |
4681 | <target state="new">JavaScript</target> | 4671 | <target state="new">JavaScript</target> |
4682 | 4672 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4684 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4674 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4685 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4675 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4686 | <target state="new"> | 4676 | <target state="new"> |
@@ -4690,7 +4680,7 @@ The link will expire within 1 hour.</target> | |||
4690 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4680 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4691 | </target> | 4681 | </target> |
4692 | 4682 | ||
4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4694 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4684 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4695 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4685 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4696 | color: red; | 4686 | color: red; |
@@ -4722,23 +4712,23 @@ The link will expire within 1 hour.</target> | |||
4722 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4712 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4723 | </target> | 4713 | </target> |
4724 | 4714 | ||
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4726 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4716 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4727 | 4717 | ||
4728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4729 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4719 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4730 | 4720 | ||
4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4732 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4722 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4733 | <source>Advanced configuration</source> | 4723 | <source>Advanced configuration</source> |
4734 | <target state="new">Advanced configuration</target> | 4724 | <target state="new">Advanced configuration</target> |
4735 | 4725 | ||
4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4737 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4727 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4738 | <source>Update configuration</source> | 4728 | <source>Update configuration</source> |
4739 | <target state="new">Update configuration</target> | 4729 | <target state="new">Update configuration</target> |
4740 | 4730 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4742 | 4732 | ||
4743 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4733 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4744 | <source>VIDEO SETTINGS</source> | 4734 | <source>VIDEO SETTINGS</source> |
@@ -7515,7 +7505,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7515 | <source>any language</source> | 7505 | <source>any language</source> |
7516 | <target state="new">any language</target> | 7506 | <target state="new">any language</target> |
7517 | 7507 | ||
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7519 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7509 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7523,22 +7513,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7523 | <source>hide</source> | 7513 | <source>hide</source> |
7524 | <target state="new">hide</target> | 7514 | <target state="new">hide</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7527 | <trans-unit id="8603861867909474404" datatype="html"> | 7517 | <trans-unit id="8603861867909474404" datatype="html"> |
7528 | <source>blur</source> | 7518 | <source>blur</source> |
7529 | <target state="new">blur</target> | 7519 | <target state="new">blur</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7532 | <trans-unit id="4534458451100881847" datatype="html"> | 7522 | <trans-unit id="4534458451100881847" datatype="html"> |
7533 | <source>display</source> | 7523 | <source>display</source> |
7534 | <target state="new">display</target> | 7524 | <target state="new">display</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7537 | <trans-unit id="4467323362722952678" datatype="html"> | 7527 | <trans-unit id="4467323362722952678" datatype="html"> |
7538 | <source>Unknown</source> | 7528 | <source>Unknown</source> |
7539 | <target state="new">Unknown</target> | 7529 | <target state="new">Unknown</target> |
7540 | 7530 | ||
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7542 | <trans-unit id="8781423666414310853" datatype="html"> | 7532 | <trans-unit id="8781423666414310853" datatype="html"> |
7543 | <source>Your password has been successfully reset!</source> | 7533 | <source>Your password has been successfully reset!</source> |
7544 | <target state="new">Your password has been successfully reset!</target> | 7534 | <target state="new">Your password has been successfully reset!</target> |
@@ -8549,13 +8539,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8549 | <source>Instance languages</source> | 8539 | <source>Instance languages</source> |
8550 | <target state="new">Instance languages</target> | 8540 | <target state="new">Instance languages</target> |
8551 | 8541 | ||
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8553 | <trans-unit id="40119547597591062" datatype="html"> | 8543 | <trans-unit id="40119547597591062" datatype="html"> |
8554 | <source>All languages</source> | 8544 | <source>All languages</source> |
8555 | <target state="new">All languages</target> | 8545 | <target state="new">All languages</target> |
8556 | 8546 | ||
8557 | 8547 | ||
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8559 | <trans-unit id="996392855508119363" datatype="html"> | 8549 | <trans-unit id="996392855508119363" datatype="html"> |
8560 | <source>Hidden</source> | 8550 | <source>Hidden</source> |
8561 | <target state="new">Hidden</target> | 8551 | <target state="new">Hidden</target> |
@@ -9330,7 +9320,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9330 | <source>Only users of this instance can see this video</source> | 9320 | <source>Only users of this instance can see this video</source> |
9331 | <target state="new">Only users of this instance can see this video</target> | 9321 | <target state="new">Only users of this instance can see this video</target> |
9332 | 9322 | ||
9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9324 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9327 | <context context-type="linenumber">211</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9330 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9333 | <context context-type="linenumber">214</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9334 | <source>Close</source><target state="new">Close</target> | 9336 | <source>Close</source><target state="new">Close</target> |
9335 | 9337 | ||
9336 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.oc.xlf b/client/src/locale/angular.oc.xlf index 490c33475..30a287a80 100644 --- a/client/src/locale/angular.oc.xlf +++ b/client/src/locale/angular.oc.xlf | |||
@@ -384,19 +384,27 @@ | |||
384 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizacions} } | 384 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizacions} } |
385 | </target> | 385 | </target> |
386 | 386 | ||
387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
388 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
389 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
390 | "/> </target> | ||
391 | <context-group purpose="location"> | ||
392 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
393 | <context context-type="linenumber">32,33</context> | ||
394 | </context-group> | ||
395 | </trans-unit> | ||
388 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 396 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
389 | <source>Blocked</source> | 397 | <source>Blocked</source> |
390 | <target state="new">Blocked</target> | 398 | <target state="new">Blocked</target> |
391 | 399 | ||
392 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 400 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
393 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 401 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
394 | <source>Sensitive</source> | 402 | <source>Sensitive</source> |
395 | <target> | 403 | <target> |
396 | Sensible | 404 | Sensible |
397 | </target> | 405 | </target> |
398 | 406 | ||
399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
400 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 408 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
401 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 409 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
402 | <target>{VAR_PLURAL, plural, =0 {Cap de vidèo} =1 {1 vidèo} other { | 410 | <target>{VAR_PLURAL, plural, =0 {Cap de vidèo} =1 {1 vidèo} other { |
@@ -1152,13 +1160,7 @@ The link will expire within 1 hour.</target> | |||
1152 | <target state="new">Sensitive:</target> | 1160 | <target state="new">Sensitive:</target> |
1153 | 1161 | ||
1154 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1162 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1155 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1163 | |
1156 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1157 | <target state="translated">Interfàcia : | ||
1158 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1159 | </target> | ||
1160 | |||
1161 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1162 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1164 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1163 | <source>Help share videos</source> | 1165 | <source>Help share videos</source> |
1164 | <target state="translated">Ajudatz a partejar de vidèos</target> | 1166 | <target state="translated">Ajudatz a partejar de vidèos</target> |
@@ -1242,7 +1244,13 @@ The link will expire within 1 hour.</target> | |||
1242 | <source>Videos</source> | 1244 | <source>Videos</source> |
1243 | <target>Vidèos</target> | 1245 | <target>Vidèos</target> |
1244 | 1246 | ||
1245 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1247 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1248 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1249 | <context-group purpose="location"> | ||
1250 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1251 | <context context-type="linenumber">171</context> | ||
1252 | </context-group> | ||
1253 | </trans-unit> | ||
1246 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1254 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1247 | <source>Playlists</source> | 1255 | <source>Playlists</source> |
1248 | <target>Lista de lectura</target> | 1256 | <target>Lista de lectura</target> |
@@ -1806,12 +1814,12 @@ The link will expire within 1 hour.</target> | |||
1806 | <source>Scheduled</source> | 1814 | <source>Scheduled</source> |
1807 | <target>Programada</target> | 1815 | <target>Programada</target> |
1808 | 1816 | ||
1809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1810 | <trans-unit id="1435317307066082710" datatype="html"> | 1818 | <trans-unit id="1435317307066082710" datatype="html"> |
1811 | <source>Hide the video until a specific date</source> | 1819 | <source>Hide the video until a specific date</source> |
1812 | <target state="new">Hide the video until a specific date</target> | 1820 | <target state="new">Hide the video until a specific date</target> |
1813 | 1821 | ||
1814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1815 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 1823 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
1816 | <source>Video background image</source> | 1824 | <source>Video background image</source> |
1817 | <target>Imatge de rèire-plan de la vidèo</target> | 1825 | <target>Imatge de rèire-plan de la vidèo</target> |
@@ -2489,7 +2497,7 @@ The link will expire within 1 hour.</target> | |||
2489 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2497 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2490 | <context context-type="linenumber">8</context> | 2498 | <context context-type="linenumber">8</context> |
2491 | </context-group> | 2499 | </context-group> |
2492 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2500 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2493 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2501 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2494 | <context-group purpose="location"> | 2502 | <context-group purpose="location"> |
2495 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2503 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4022,107 +4030,97 @@ The link will expire within 1 hour.</target> | |||
4022 | <source>Basic configuration</source> | 4030 | <source>Basic configuration</source> |
4023 | <target>Configuracion de basa</target> | 4031 | <target>Configuracion de basa</target> |
4024 | 4032 | ||
4025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4034 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4035 | <context-group purpose="location"> | ||
4036 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4037 | <context context-type="linenumber">700</context> | ||
4038 | </context-group> | ||
4039 | </trans-unit> | ||
4026 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4040 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4027 | <source>TWITTER</source> | 4041 | <source>TWITTER</source> |
4028 | <target state="translated">TWITTER</target> | 4042 | <target state="translated">TWITTER</target> |
4029 | 4043 | ||
4030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4031 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4045 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4032 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4046 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4033 | <target state="new"> | 4047 | <target state="new"> |
4034 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4048 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4035 | </target> | 4049 | </target> |
4036 | 4050 | ||
4037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4038 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4052 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4039 | <source>Your Twitter username</source> | 4053 | <source>Your Twitter username</source> |
4040 | <target>Vòstre nom d’utilizaire Twitter</target> | 4054 | <target>Vòstre nom d’utilizaire Twitter</target> |
4041 | 4055 | ||
4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4043 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4057 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4044 | <source>Instance allowed by Twitter</source> | 4058 | <source>Instance allowed by Twitter</source> |
4045 | <target state="new">Instance allowed by Twitter</target> | 4059 | <target state="new">Instance allowed by Twitter</target> |
4046 | 4060 | ||
4047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4048 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4062 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4049 | 4063 | ||
4050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4051 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4065 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4052 | <source>LIVE</source><target state="new">LIVE</target> | 4066 | <source>LIVE</source><target state="new">LIVE</target> |
4053 | 4067 | ||
4054 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4068 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4055 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4069 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4056 | 4070 | ||
4057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4058 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4072 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4059 | 4073 | ||
4060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4061 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4075 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4062 | 4076 | ||
4063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4064 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4078 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4065 | 4079 | ||
4066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4067 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4081 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4068 | 4082 | ||
4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4070 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4084 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4071 | <context-group purpose="location"> | 4085 | |
4072 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4073 | <context context-type="linenumber">751</context> | ||
4074 | </context-group> | ||
4075 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4076 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4087 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4077 | 4088 | ||
4078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4079 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4090 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4080 | <context-group purpose="location"> | 4091 | |
4081 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4082 | <context context-type="linenumber">759</context> | ||
4083 | </context-group> | ||
4084 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4085 | <source>Max live duration</source><target state="new">Max live duration</target> | 4093 | <source>Max live duration</source><target state="new">Max live duration</target> |
4086 | 4094 | ||
4087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4088 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4096 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4089 | 4097 | ||
4090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4091 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4099 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4092 | 4100 | ||
4093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4094 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4102 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4095 | 4103 | ||
4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4097 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4105 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4098 | 4106 | ||
4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4100 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4108 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4101 | 4109 | ||
4102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4103 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4111 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4104 | <context-group purpose="location"> | ||
4105 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4106 | <context context-type="linenumber">793</context> | ||
4107 | </context-group> | ||
4108 | <context-group purpose="location"> | ||
4109 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4110 | <context context-type="linenumber">935</context> | ||
4111 | </context-group> | ||
4112 | </trans-unit> | ||
4113 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4114 | <source>Services</source> | ||
4115 | <target>Servicis</target> | ||
4116 | 4112 | ||
4117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4113 | |
4114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4115 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4118 | <source>Live streaming</source><target state="new">Live streaming</target> | 4116 | <source>Live streaming</source><target state="new">Live streaming</target> |
4119 | 4117 | ||
4120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4121 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4119 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4122 | <source>TRANSCODING</source> | 4120 | <source>TRANSCODING</source> |
4123 | <target state="new">TRANSCODING</target> | 4121 | <target state="new">TRANSCODING</target> |
4124 | 4122 | ||
4125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4126 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4124 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4127 | <source>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.</source> | 4125 | <source>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.</source> |
4128 | <target state="new"> | 4126 | <target state="new"> |
@@ -4130,55 +4128,53 @@ The link will expire within 1 hour.</target> | |||
4130 | resources, this is a critical part of PeerTube, so tread carefully. | 4128 | resources, this is a critical part of PeerTube, so tread carefully. |
4131 | </target> | 4129 | </target> |
4132 | 4130 | ||
4133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4134 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4132 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4135 | <source>Transcoding enabled</source> | 4133 | <source>Transcoding enabled</source> |
4136 | <target>Transcodatge activat</target> | 4134 | <target>Transcodatge activat</target> |
4137 | 4135 | ||
4138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4139 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4137 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4140 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4138 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4141 | <target>Se desactivatz lo transcodatge, un fum de vidèos de vòstres utilizaires foncionaràn pas !</target> | 4139 | <target>Se desactivatz lo transcodatge, un fum de vidèos de vòstres utilizaires foncionaràn pas !</target> |
4142 | 4140 | ||
4143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4142 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4143 | |||
4144 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4145 | |||
4146 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4147 | <context-group purpose="location"> | ||
4148 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4149 | <context context-type="linenumber">759,763</context> | ||
4150 | </context-group> | ||
4151 | </trans-unit> | ||
4144 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4152 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4145 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4153 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4146 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4154 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4147 | 4155 | ||
4148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4149 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4157 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4150 | <source>Allow additional extensions</source> | 4158 | <source>Allow additional extensions</source> |
4151 | <target>Permetre mai d’extensions</target> | 4159 | <target>Permetre mai d’extensions</target> |
4152 | 4160 | ||
4153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4154 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4162 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4155 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4163 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4156 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4164 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4157 | 4165 | ||
4158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4159 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 4167 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
4160 | <source>Allow audio files upload</source> | 4168 | <source>Allow audio files upload</source> |
4161 | <target>Autorizar lo mandadís de fichièrs àudio</target> | 4169 | <target>Autorizar lo mandadís de fichièrs àudio</target> |
4162 | 4170 | ||
4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4164 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4172 | |
4165 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4166 | <target state="new"> | ||
4167 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4168 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4169 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4170 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4171 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4172 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4173 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4174 | </target> | ||
4175 | |||
4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4177 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4173 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4178 | <source>WebTorrent support enabled</source> | 4174 | <source>WebTorrent support enabled</source> |
4179 | <target state="translated">Compatibilitat WebTorrent activada</target> | 4175 | <target state="translated">Compatibilitat WebTorrent activada</target> |
4180 | 4176 | ||
4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4177 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4182 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4178 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4183 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4179 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4184 | <target state="new"> | 4180 | <target state="new"> |
@@ -4198,73 +4194,67 @@ The link will expire within 1 hour.</target> | |||
4198 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4194 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4199 | </target> | 4195 | </target> |
4200 | 4196 | ||
4201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4202 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4198 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4203 | <source>HLS with P2P support enabled</source> | 4199 | <source>HLS with P2P support enabled</source> |
4204 | <target state="new">HLS with P2P support enabled</target> | 4200 | <target state="new">HLS with P2P support enabled</target> |
4205 | 4201 | ||
4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4207 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4203 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4208 | <source>Transcoding threads</source> | 4204 | <source>Transcoding threads</source> |
4209 | <target>Transcodatge dels threads</target> | 4205 | <target>Transcodatge dels threads</target> |
4210 | 4206 | ||
4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4212 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4208 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4213 | <source>Resolutions to generate</source> | 4209 | <source>Resolutions to generate</source> |
4214 | <target state="new">Resolutions to generate</target> | 4210 | <target state="new">Resolutions to generate</target> |
4215 | 4211 | ||
4216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4217 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4213 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4218 | <source>CACHE</source> | 4214 | <source>CACHE</source> |
4219 | <target state="translated">CACHE</target> | 4215 | <target state="translated">CACHE</target> |
4220 | 4216 | ||
4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4222 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4218 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4223 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4219 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4224 | <target state="new"> | 4220 | <target state="new"> |
4225 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4221 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4226 | </target> | 4222 | </target> |
4227 | 4223 | ||
4228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4229 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4225 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4230 | <source>Number of previews to keep in cache</source> | 4226 | <source>Number of previews to keep in cache</source> |
4231 | <target state="new">Number of previews to keep in cache</target> | 4227 | <target state="new">Number of previews to keep in cache</target> |
4232 | 4228 | ||
4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4234 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4230 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4235 | <context-group purpose="location"> | 4231 | |
4236 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4237 | <context context-type="linenumber">986</context> | ||
4238 | </context-group> | ||
4239 | </trans-unit> | ||
4240 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4233 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4241 | <source>Number of video captions to keep in cache</source> | 4234 | <source>Number of video captions to keep in cache</source> |
4242 | <target state="new">Number of video captions to keep in cache</target> | 4235 | <target state="new">Number of video captions to keep in cache</target> |
4243 | 4236 | ||
4244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4245 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4238 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4246 | <context-group purpose="location"> | 4239 | |
4247 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4248 | <context context-type="linenumber">998</context> | ||
4249 | </context-group> | ||
4250 | </trans-unit> | ||
4251 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4241 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4252 | <source>CUSTOMIZATIONS</source> | 4242 | <source>CUSTOMIZATIONS</source> |
4253 | <target state="translated">PERSONALIZACIONS</target> | 4243 | <target state="translated">PERSONALIZACIONS</target> |
4254 | 4244 | ||
4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4256 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4246 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4257 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4247 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4258 | <target state="new"> | 4248 | <target state="new"> |
4259 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4249 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4260 | </target> | 4250 | </target> |
4261 | 4251 | ||
4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4263 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4253 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4264 | <source>JavaScript</source> | 4254 | <source>JavaScript</source> |
4265 | <target>JavaScript</target> | 4255 | <target>JavaScript</target> |
4266 | 4256 | ||
4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4268 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4258 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4269 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4259 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4270 | <target state="new"> | 4260 | <target state="new"> |
@@ -4274,7 +4264,7 @@ The link will expire within 1 hour.</target> | |||
4274 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4264 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4275 | </target> | 4265 | </target> |
4276 | 4266 | ||
4277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4278 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4268 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4279 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4269 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4280 | color: red; | 4270 | color: red; |
@@ -4306,23 +4296,23 @@ The link will expire within 1 hour.</target> | |||
4306 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4296 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4307 | </target> | 4297 | </target> |
4308 | 4298 | ||
4309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4310 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4300 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4311 | 4301 | ||
4312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4313 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4303 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4314 | 4304 | ||
4315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4316 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4306 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4317 | <source>Advanced configuration</source> | 4307 | <source>Advanced configuration</source> |
4318 | <target>Configuracion avançada</target> | 4308 | <target>Configuracion avançada</target> |
4319 | 4309 | ||
4320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4321 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4311 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4322 | <source>Update configuration</source> | 4312 | <source>Update configuration</source> |
4323 | <target>Actualizar la configuracion</target> | 4313 | <target>Actualizar la configuracion</target> |
4324 | 4314 | ||
4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4326 | 4316 | ||
4327 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4317 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4328 | <source>VIDEO SETTINGS</source> | 4318 | <source>VIDEO SETTINGS</source> |
@@ -7018,7 +7008,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7018 | <source>any language</source> | 7008 | <source>any language</source> |
7019 | <target state="translated">tota lenga</target> | 7009 | <target state="translated">tota lenga</target> |
7020 | 7010 | ||
7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7011 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7022 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7012 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7023 | 7013 | ||
7024 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7014 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7026,22 +7016,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7026 | <source>hide</source> | 7016 | <source>hide</source> |
7027 | <target state="translated">amagar</target> | 7017 | <target state="translated">amagar</target> |
7028 | 7018 | ||
7029 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7019 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7030 | <trans-unit id="8603861867909474404" datatype="html"> | 7020 | <trans-unit id="8603861867909474404" datatype="html"> |
7031 | <source>blur</source> | 7021 | <source>blur</source> |
7032 | <target state="new">blur</target> | 7022 | <target state="new">blur</target> |
7033 | 7023 | ||
7034 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7024 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7035 | <trans-unit id="4534458451100881847" datatype="html"> | 7025 | <trans-unit id="4534458451100881847" datatype="html"> |
7036 | <source>display</source> | 7026 | <source>display</source> |
7037 | <target state="translated">mostrar</target> | 7027 | <target state="translated">mostrar</target> |
7038 | 7028 | ||
7039 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7029 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7040 | <trans-unit id="4467323362722952678" datatype="html"> | 7030 | <trans-unit id="4467323362722952678" datatype="html"> |
7041 | <source>Unknown</source> | 7031 | <source>Unknown</source> |
7042 | <target state="new">Unknown</target> | 7032 | <target state="new">Unknown</target> |
7043 | 7033 | ||
7044 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7034 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7045 | <trans-unit id="8781423666414310853"> | 7035 | <trans-unit id="8781423666414310853"> |
7046 | <source>Your password has been successfully reset!</source> | 7036 | <source>Your password has been successfully reset!</source> |
7047 | <target>Vòstre senhal es estat corrèctament reïnicializat !</target> | 7037 | <target>Vòstre senhal es estat corrèctament reïnicializat !</target> |
@@ -8024,12 +8014,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8024 | <source>Instance languages</source> | 8014 | <source>Instance languages</source> |
8025 | <target state="new">Instance languages</target> | 8015 | <target state="new">Instance languages</target> |
8026 | 8016 | ||
8027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8028 | <trans-unit id="40119547597591062" datatype="html"> | 8018 | <trans-unit id="40119547597591062" datatype="html"> |
8029 | <source>All languages</source> | 8019 | <source>All languages</source> |
8030 | <target state="new">All languages</target> | 8020 | <target state="new">All languages</target> |
8031 | 8021 | ||
8032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8033 | <trans-unit id="996392855508119363"> | 8023 | <trans-unit id="996392855508119363"> |
8034 | <source>Hidden</source> | 8024 | <source>Hidden</source> |
8035 | <target>Amagada</target> | 8025 | <target>Amagada</target> |
@@ -8782,7 +8772,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8782 | <source>Only users of this instance can see this video</source> | 8772 | <source>Only users of this instance can see this video</source> |
8783 | <target state="translated">Pas que los utilizaires d’aquesta instància pòdon veire aquesta vidèo</target> | 8773 | <target state="translated">Pas que los utilizaires d’aquesta instància pòdon veire aquesta vidèo</target> |
8784 | 8774 | ||
8785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8776 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8777 | <context-group purpose="location"> | ||
8778 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8779 | <context context-type="linenumber">211</context> | ||
8780 | </context-group> | ||
8781 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8782 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8783 | <context-group purpose="location"> | ||
8784 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8785 | <context context-type="linenumber">214</context> | ||
8786 | </context-group> | ||
8787 | </trans-unit> | ||
8786 | <trans-unit id="ngb.alert.close" datatype="html"> | 8788 | <trans-unit id="ngb.alert.close" datatype="html"> |
8787 | <source>Close</source> | 8789 | <source>Close</source> |
8788 | <target state="new">Close</target> | 8790 | <target state="new">Close</target> |
diff --git a/client/src/locale/angular.pl-PL.xlf b/client/src/locale/angular.pl-PL.xlf index 57ea5dd7d..15400b433 100644 --- a/client/src/locale/angular.pl-PL.xlf +++ b/client/src/locale/angular.pl-PL.xlf | |||
@@ -495,17 +495,25 @@ | |||
495 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetleń} } | 495 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetleń} } |
496 | </target> | 496 | </target> |
497 | 497 | ||
498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
499 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
500 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
501 | "/> </target> | ||
502 | <context-group purpose="location"> | ||
503 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
504 | <context context-type="linenumber">32,33</context> | ||
505 | </context-group> | ||
506 | </trans-unit> | ||
499 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 507 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
500 | <source>Blocked</source> | 508 | <source>Blocked</source> |
501 | <target state="new">Blocked</target> | 509 | <target state="new">Blocked</target> |
502 | 510 | ||
503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
504 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 512 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
505 | <source>Sensitive</source> | 513 | <source>Sensitive</source> |
506 | <target state="translated">Wrażliwe</target> | 514 | <target state="translated">Wrażliwe</target> |
507 | 515 | ||
508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
509 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 517 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
510 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 518 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
511 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 519 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1323,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1323 | <target state="new">Sensitive:</target> | 1331 | <target state="new">Sensitive:</target> |
1324 | 1332 | ||
1325 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1333 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1326 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1334 | |
1327 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1328 | <target state="translated">Interfejs: | ||
1329 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1330 | </target> | ||
1331 | |||
1332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1333 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1335 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1334 | <source>Help share videos</source> | 1336 | <source>Help share videos</source> |
1335 | <target state="translated">Pomóż udostępniać filmy</target> | 1337 | <target state="translated">Pomóż udostępniać filmy</target> |
@@ -1405,7 +1407,13 @@ The link will expire within 1 hour.</target> | |||
1405 | <source>Videos</source> | 1407 | <source>Videos</source> |
1406 | <target>Filmy</target> | 1408 | <target>Filmy</target> |
1407 | 1409 | ||
1408 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1410 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1411 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1412 | <context-group purpose="location"> | ||
1413 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1414 | <context context-type="linenumber">171</context> | ||
1415 | </context-group> | ||
1416 | </trans-unit> | ||
1409 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1417 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1410 | <source>Playlists</source> | 1418 | <source>Playlists</source> |
1411 | <target state="translated">Playlisty</target> | 1419 | <target state="translated">Playlisty</target> |
@@ -2014,12 +2022,12 @@ The link will expire within 1 hour.</target> | |||
2014 | <source>Scheduled</source> | 2022 | <source>Scheduled</source> |
2015 | <target state="translated">Zaplanowany</target> | 2023 | <target state="translated">Zaplanowany</target> |
2016 | 2024 | ||
2017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2018 | <trans-unit id="1435317307066082710" datatype="html"> | 2026 | <trans-unit id="1435317307066082710" datatype="html"> |
2019 | <source>Hide the video until a specific date</source> | 2027 | <source>Hide the video until a specific date</source> |
2020 | <target state="new">Hide the video until a specific date</target> | 2028 | <target state="new">Hide the video until a specific date</target> |
2021 | 2029 | ||
2022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2023 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2031 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2024 | <source>Video background image</source> | 2032 | <source>Video background image</source> |
2025 | <target state="translated">Tło filmu</target> | 2033 | <target state="translated">Tło filmu</target> |
@@ -2633,7 +2641,7 @@ The link will expire within 1 hour.</target> | |||
2633 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2641 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2634 | <context context-type="linenumber">8</context> | 2642 | <context context-type="linenumber">8</context> |
2635 | </context-group> | 2643 | </context-group> |
2636 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2644 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2637 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2645 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2638 | <context-group purpose="location"> | 2646 | <context-group purpose="location"> |
2639 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2647 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4253,107 +4261,97 @@ The link will expire within 1 hour.</target> | |||
4253 | <source>Basic configuration</source> | 4261 | <source>Basic configuration</source> |
4254 | <target>Podstawowa konfiguracja</target> | 4262 | <target>Podstawowa konfiguracja</target> |
4255 | 4263 | ||
4256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4265 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4266 | <context-group purpose="location"> | ||
4267 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4268 | <context context-type="linenumber">700</context> | ||
4269 | </context-group> | ||
4270 | </trans-unit> | ||
4257 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4271 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4258 | <source>TWITTER</source> | 4272 | <source>TWITTER</source> |
4259 | <target state="new">TWITTER</target> | 4273 | <target state="new">TWITTER</target> |
4260 | 4274 | ||
4261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4262 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4276 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4263 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4277 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4264 | <target state="new"> | 4278 | <target state="new"> |
4265 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4279 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4266 | </target> | 4280 | </target> |
4267 | 4281 | ||
4268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4269 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4283 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4270 | <source>Your Twitter username</source> | 4284 | <source>Your Twitter username</source> |
4271 | <target>Twoja nazwa użytkownika na Twitterze</target> | 4285 | <target>Twoja nazwa użytkownika na Twitterze</target> |
4272 | 4286 | ||
4273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4274 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4288 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4275 | <source>Instance allowed by Twitter</source> | 4289 | <source>Instance allowed by Twitter</source> |
4276 | <target state="new">Instance allowed by Twitter</target> | 4290 | <target state="new">Instance allowed by Twitter</target> |
4277 | 4291 | ||
4278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4279 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4293 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4280 | 4294 | ||
4281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4282 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4296 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4283 | <source>LIVE</source><target state="new">LIVE</target> | 4297 | <source>LIVE</source><target state="new">LIVE</target> |
4284 | 4298 | ||
4285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4299 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4286 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4300 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4287 | 4301 | ||
4288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4289 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4303 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4290 | 4304 | ||
4291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4292 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4306 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4293 | 4307 | ||
4294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4295 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4309 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4296 | 4310 | ||
4297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4298 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4312 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4299 | 4313 | ||
4300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4301 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4315 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4302 | <context-group purpose="location"> | 4316 | |
4303 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4304 | <context context-type="linenumber">751</context> | ||
4305 | </context-group> | ||
4306 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4307 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4318 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4308 | 4319 | ||
4309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4310 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4321 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4311 | <context-group purpose="location"> | 4322 | |
4312 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4313 | <context context-type="linenumber">759</context> | ||
4314 | </context-group> | ||
4315 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4316 | <source>Max live duration</source><target state="new">Max live duration</target> | 4324 | <source>Max live duration</source><target state="new">Max live duration</target> |
4317 | 4325 | ||
4318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4319 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4327 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4320 | 4328 | ||
4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4322 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4330 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4323 | 4331 | ||
4324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4325 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4333 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4326 | 4334 | ||
4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4328 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4336 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4329 | 4337 | ||
4330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4331 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4339 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4332 | 4340 | ||
4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4334 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4342 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4335 | <context-group purpose="location"> | ||
4336 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4337 | <context context-type="linenumber">793</context> | ||
4338 | </context-group> | ||
4339 | <context-group purpose="location"> | ||
4340 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4341 | <context context-type="linenumber">935</context> | ||
4342 | </context-group> | ||
4343 | </trans-unit> | ||
4344 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4345 | <source>Services</source> | ||
4346 | <target>Usługi</target> | ||
4347 | 4343 | ||
4348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4344 | |
4345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4346 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4349 | <source>Live streaming</source><target state="new">Live streaming</target> | 4347 | <source>Live streaming</source><target state="new">Live streaming</target> |
4350 | 4348 | ||
4351 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4352 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4350 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4353 | <source>TRANSCODING</source> | 4351 | <source>TRANSCODING</source> |
4354 | <target state="translated">TRANSKODOWANIE</target> | 4352 | <target state="translated">TRANSKODOWANIE</target> |
4355 | 4353 | ||
4356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4357 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4355 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4358 | <source> 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. </source> | 4356 | <source> 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. </source> |
4359 | <target state="new"> | 4357 | <target state="new"> |
@@ -4361,55 +4359,53 @@ The link will expire within 1 hour.</target> | |||
4361 | resources, this is a critical part of PeerTube, so tread carefully. | 4359 | resources, this is a critical part of PeerTube, so tread carefully. |
4362 | </target> | 4360 | </target> |
4363 | 4361 | ||
4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4365 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4363 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4366 | <source>Transcoding enabled</source> | 4364 | <source>Transcoding enabled</source> |
4367 | <target>Transkodowanie jest włączone</target> | 4365 | <target>Transkodowanie jest włączone</target> |
4368 | 4366 | ||
4369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4370 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4368 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4371 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4369 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4372 | <target>Jeżeli wyłączysz transkodowanie, wiele filmów od użytkowników może nie działać!</target> | 4370 | <target>Jeżeli wyłączysz transkodowanie, wiele filmów od użytkowników może nie działać!</target> |
4373 | 4371 | ||
4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4373 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4374 | |||
4375 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4376 | |||
4377 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4378 | <context-group purpose="location"> | ||
4379 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4380 | <context context-type="linenumber">759,763</context> | ||
4381 | </context-group> | ||
4382 | </trans-unit> | ||
4375 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4383 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4376 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4384 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4377 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4385 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4378 | 4386 | ||
4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4380 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4388 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4381 | <source>Allow additional extensions</source> | 4389 | <source>Allow additional extensions</source> |
4382 | <target state="translated">Zezwól na dodatkowe wtyczki</target> | 4390 | <target state="translated">Zezwól na dodatkowe wtyczki</target> |
4383 | 4391 | ||
4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4385 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4393 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4386 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4394 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4387 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4395 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4388 | 4396 | ||
4389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4390 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4398 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4391 | <source>Allow audio files upload</source> | 4399 | <source>Allow audio files upload</source> |
4392 | <target state="translated">Zezwól na wrzucanie plików audio</target> | 4400 | <target state="translated">Zezwól na wrzucanie plików audio</target> |
4393 | 4401 | ||
4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4395 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4403 | |
4396 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4397 | <target state="new"> | ||
4398 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4399 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4400 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4401 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4402 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4403 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4404 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4405 | </target> | ||
4406 | |||
4407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4408 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4404 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4409 | <source>WebTorrent support enabled</source> | 4405 | <source>WebTorrent support enabled</source> |
4410 | <target state="translated">Wsparcie dla WebTorrent włączone</target> | 4406 | <target state="translated">Wsparcie dla WebTorrent włączone</target> |
4411 | 4407 | ||
4412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4413 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4409 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4414 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4410 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4415 | <target state="new"> | 4411 | <target state="new"> |
@@ -4429,73 +4425,67 @@ The link will expire within 1 hour.</target> | |||
4429 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4425 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4430 | </target> | 4426 | </target> |
4431 | 4427 | ||
4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4433 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4429 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4434 | <source>HLS with P2P support enabled</source> | 4430 | <source>HLS with P2P support enabled</source> |
4435 | <target state="new">HLS with P2P support enabled</target> | 4431 | <target state="new">HLS with P2P support enabled</target> |
4436 | 4432 | ||
4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4438 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4434 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4439 | <source>Transcoding threads</source> | 4435 | <source>Transcoding threads</source> |
4440 | <target>Wątki transkodowania</target> | 4436 | <target>Wątki transkodowania</target> |
4441 | 4437 | ||
4442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4443 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4439 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4444 | <source>Resolutions to generate</source> | 4440 | <source>Resolutions to generate</source> |
4445 | <target state="new">Resolutions to generate</target> | 4441 | <target state="new">Resolutions to generate</target> |
4446 | 4442 | ||
4447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4448 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4444 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4449 | <source>CACHE</source> | 4445 | <source>CACHE</source> |
4450 | <target state="translated">CACHE</target> | 4446 | <target state="translated">CACHE</target> |
4451 | 4447 | ||
4452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4453 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4449 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4454 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4450 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4455 | <target state="new"> | 4451 | <target state="new"> |
4456 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4452 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4457 | </target> | 4453 | </target> |
4458 | 4454 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4460 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4456 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4461 | <source>Number of previews to keep in cache</source> | 4457 | <source>Number of previews to keep in cache</source> |
4462 | <target state="new">Number of previews to keep in cache</target> | 4458 | <target state="new">Number of previews to keep in cache</target> |
4463 | 4459 | ||
4464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4465 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4461 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4466 | <context-group purpose="location"> | 4462 | |
4467 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4468 | <context context-type="linenumber">986</context> | ||
4469 | </context-group> | ||
4470 | </trans-unit> | ||
4471 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4464 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4472 | <source>Number of video captions to keep in cache</source> | 4465 | <source>Number of video captions to keep in cache</source> |
4473 | <target state="new">Number of video captions to keep in cache</target> | 4466 | <target state="new">Number of video captions to keep in cache</target> |
4474 | 4467 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4476 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4469 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4477 | <context-group purpose="location"> | 4470 | |
4478 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4479 | <context context-type="linenumber">998</context> | ||
4480 | </context-group> | ||
4481 | </trans-unit> | ||
4482 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4472 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4483 | <source>CUSTOMIZATIONS</source> | 4473 | <source>CUSTOMIZATIONS</source> |
4484 | <target state="translated">DOSTOSOWANIA</target> | 4474 | <target state="translated">DOSTOSOWANIA</target> |
4485 | 4475 | ||
4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4487 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4477 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4488 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4478 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4489 | <target state="new"> | 4479 | <target state="new"> |
4490 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4480 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4491 | </target> | 4481 | </target> |
4492 | 4482 | ||
4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4494 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4484 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4495 | <source>JavaScript</source> | 4485 | <source>JavaScript</source> |
4496 | <target>JavaScript</target> | 4486 | <target>JavaScript</target> |
4497 | 4487 | ||
4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4499 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4489 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4500 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4490 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4501 | <target state="new"> | 4491 | <target state="new"> |
@@ -4505,7 +4495,7 @@ The link will expire within 1 hour.</target> | |||
4505 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4495 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4506 | </target> | 4496 | </target> |
4507 | 4497 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4509 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4499 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4510 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4500 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4511 | color: red; | 4501 | color: red; |
@@ -4537,23 +4527,23 @@ The link will expire within 1 hour.</target> | |||
4537 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4527 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4538 | </target> | 4528 | </target> |
4539 | 4529 | ||
4540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4541 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4531 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4542 | 4532 | ||
4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4544 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4534 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4545 | 4535 | ||
4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4547 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4537 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4548 | <source>Advanced configuration</source> | 4538 | <source>Advanced configuration</source> |
4549 | <target>Zaawansowana konfiguracja</target> | 4539 | <target>Zaawansowana konfiguracja</target> |
4550 | 4540 | ||
4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4552 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4542 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4553 | <source>Update configuration</source> | 4543 | <source>Update configuration</source> |
4554 | <target>Aktualizuj konfigurację</target> | 4544 | <target>Aktualizuj konfigurację</target> |
4555 | 4545 | ||
4556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4557 | 4547 | ||
4558 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4548 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4559 | <source>VIDEO SETTINGS</source> | 4549 | <source>VIDEO SETTINGS</source> |
@@ -7207,7 +7197,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7207 | <source>any language</source> | 7197 | <source>any language</source> |
7208 | <target state="translated">jakikolwiek język</target> | 7198 | <target state="translated">jakikolwiek język</target> |
7209 | 7199 | ||
7210 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7200 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7211 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7201 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7212 | 7202 | ||
7213 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7203 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7215,22 +7205,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7215 | <source>hide</source> | 7205 | <source>hide</source> |
7216 | <target state="translated">ukryj</target> | 7206 | <target state="translated">ukryj</target> |
7217 | 7207 | ||
7218 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7208 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7219 | <trans-unit id="8603861867909474404" datatype="html"> | 7209 | <trans-unit id="8603861867909474404" datatype="html"> |
7220 | <source>blur</source> | 7210 | <source>blur</source> |
7221 | <target state="translated">rozmazanie</target> | 7211 | <target state="translated">rozmazanie</target> |
7222 | 7212 | ||
7223 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7213 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7224 | <trans-unit id="4534458451100881847" datatype="html"> | 7214 | <trans-unit id="4534458451100881847" datatype="html"> |
7225 | <source>display</source> | 7215 | <source>display</source> |
7226 | <target state="translated">wyświetl</target> | 7216 | <target state="translated">wyświetl</target> |
7227 | 7217 | ||
7228 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7218 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7229 | <trans-unit id="4467323362722952678" datatype="html"> | 7219 | <trans-unit id="4467323362722952678" datatype="html"> |
7230 | <source>Unknown</source> | 7220 | <source>Unknown</source> |
7231 | <target state="new">Unknown</target> | 7221 | <target state="new">Unknown</target> |
7232 | 7222 | ||
7233 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7223 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7234 | <trans-unit id="8781423666414310853"> | 7224 | <trans-unit id="8781423666414310853"> |
7235 | <source>Your password has been successfully reset!</source> | 7225 | <source>Your password has been successfully reset!</source> |
7236 | <target>Pomyślnie zresetowano hasło!</target> | 7226 | <target>Pomyślnie zresetowano hasło!</target> |
@@ -8242,13 +8232,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8242 | <source>Instance languages</source> | 8232 | <source>Instance languages</source> |
8243 | <target state="new">Instance languages</target> | 8233 | <target state="new">Instance languages</target> |
8244 | 8234 | ||
8245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8246 | <trans-unit id="40119547597591062" datatype="html"> | 8236 | <trans-unit id="40119547597591062" datatype="html"> |
8247 | <source>All languages</source> | 8237 | <source>All languages</source> |
8248 | <target state="new">All languages</target> | 8238 | <target state="new">All languages</target> |
8249 | 8239 | ||
8250 | 8240 | ||
8251 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8241 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8252 | <trans-unit id="996392855508119363" datatype="html"> | 8242 | <trans-unit id="996392855508119363" datatype="html"> |
8253 | <source>Hidden</source> | 8243 | <source>Hidden</source> |
8254 | <target state="translated">Ukryte</target> | 8244 | <target state="translated">Ukryte</target> |
@@ -9018,7 +9008,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9018 | <source>Only users of this instance can see this video</source> | 9008 | <source>Only users of this instance can see this video</source> |
9019 | <target state="translated">Tylko użytkownicy tej instancji mogą zobaczyć ten film</target> | 9009 | <target state="translated">Tylko użytkownicy tej instancji mogą zobaczyć ten film</target> |
9020 | 9010 | ||
9021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9012 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9013 | <context-group purpose="location"> | ||
9014 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9015 | <context context-type="linenumber">211</context> | ||
9016 | </context-group> | ||
9017 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9018 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9019 | <context-group purpose="location"> | ||
9020 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9021 | <context context-type="linenumber">214</context> | ||
9022 | </context-group> | ||
9023 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9022 | <source>Close</source><target state="new">Close</target> | 9024 | <source>Close</source><target state="new">Close</target> |
9023 | 9025 | ||
9024 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9026 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.pt-BR.xlf b/client/src/locale/angular.pt-BR.xlf index 770cb5613..4b14c7aae 100644 --- a/client/src/locale/angular.pt-BR.xlf +++ b/client/src/locale/angular.pt-BR.xlf | |||
@@ -421,17 +421,25 @@ | |||
421 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 421 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
422 | </target> | 422 | </target> |
423 | 423 | ||
424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
425 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
426 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
427 | "/> </target> | ||
428 | <context-group purpose="location"> | ||
429 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
430 | <context context-type="linenumber">32,33</context> | ||
431 | </context-group> | ||
432 | </trans-unit> | ||
425 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 433 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
426 | <source>Blocked</source> | 434 | <source>Blocked</source> |
427 | <target state="translated">Bloqueado</target> | 435 | <target state="translated">Bloqueado</target> |
428 | 436 | ||
429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
430 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 438 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
431 | <source>Sensitive</source> | 439 | <source>Sensitive</source> |
432 | <target state="translated">Sensível</target> | 440 | <target state="translated">Sensível</target> |
433 | 441 | ||
434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
435 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 443 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
436 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 444 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
437 | <target state="translated">{VAR_PLURAL, plural, =0 {Nenhum vídeo} =1 {1 vídeo} other { | 445 | <target state="translated">{VAR_PLURAL, plural, =0 {Nenhum vídeo} =1 {1 vídeo} other { |
@@ -1169,13 +1177,7 @@ The link will expire within 1 hour.</target> | |||
1169 | <target state="new">Sensitive:</target> | 1177 | <target state="new">Sensitive:</target> |
1170 | 1178 | ||
1171 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1179 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1172 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1180 | |
1173 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1174 | <target state="new">Interface: | ||
1175 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1176 | </target> | ||
1177 | |||
1178 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1179 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1181 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1180 | <source>Help share videos</source> | 1182 | <source>Help share videos</source> |
1181 | <target state="translated">Ajude a compartilhar vídeos</target> | 1183 | <target state="translated">Ajude a compartilhar vídeos</target> |
@@ -1259,7 +1261,13 @@ The link will expire within 1 hour.</target> | |||
1259 | <source>Videos</source> | 1261 | <source>Videos</source> |
1260 | <target>Vídeos</target> | 1262 | <target>Vídeos</target> |
1261 | 1263 | ||
1262 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1264 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1265 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1266 | <context-group purpose="location"> | ||
1267 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1268 | <context context-type="linenumber">171</context> | ||
1269 | </context-group> | ||
1270 | </trans-unit> | ||
1263 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1271 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1264 | <source>Playlists</source> | 1272 | <source>Playlists</source> |
1265 | <target state="translated">Playlists</target> | 1273 | <target state="translated">Playlists</target> |
@@ -1820,12 +1828,12 @@ The link will expire within 1 hour.</target> | |||
1820 | <source>Scheduled</source> | 1828 | <source>Scheduled</source> |
1821 | <target>Programado</target> | 1829 | <target>Programado</target> |
1822 | 1830 | ||
1823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1824 | <trans-unit id="1435317307066082710" datatype="html"> | 1832 | <trans-unit id="1435317307066082710" datatype="html"> |
1825 | <source>Hide the video until a specific date</source> | 1833 | <source>Hide the video until a specific date</source> |
1826 | <target state="new">Hide the video until a specific date</target> | 1834 | <target state="new">Hide the video until a specific date</target> |
1827 | 1835 | ||
1828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1829 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1837 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1830 | <source>Video background image</source> | 1838 | <source>Video background image</source> |
1831 | <target state="translated">Imagem de fundo do vídeo</target> | 1839 | <target state="translated">Imagem de fundo do vídeo</target> |
@@ -2445,7 +2453,7 @@ The link will expire within 1 hour.</target> | |||
2445 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2453 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2446 | <context context-type="linenumber">8</context> | 2454 | <context context-type="linenumber">8</context> |
2447 | </context-group> | 2455 | </context-group> |
2448 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2456 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2449 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2457 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2450 | <context-group purpose="location"> | 2458 | <context-group purpose="location"> |
2451 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2459 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3956,107 +3964,97 @@ The link will expire within 1 hour.</target> | |||
3956 | <source>Basic configuration</source> | 3964 | <source>Basic configuration</source> |
3957 | <target>Configurações básicas</target> | 3965 | <target>Configurações básicas</target> |
3958 | 3966 | ||
3959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3968 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3969 | <context-group purpose="location"> | ||
3970 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3971 | <context context-type="linenumber">700</context> | ||
3972 | </context-group> | ||
3973 | </trans-unit> | ||
3960 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3974 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3961 | <source>TWITTER</source> | 3975 | <source>TWITTER</source> |
3962 | <target state="new">TWITTER</target> | 3976 | <target state="new">TWITTER</target> |
3963 | 3977 | ||
3964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3965 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3979 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3966 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3980 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3967 | <target state="new"> | 3981 | <target state="new"> |
3968 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 3982 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
3969 | </target> | 3983 | </target> |
3970 | 3984 | ||
3971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3972 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3986 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3973 | <source>Your Twitter username</source> | 3987 | <source>Your Twitter username</source> |
3974 | <target>Seu nome de usuário no Twitter</target> | 3988 | <target>Seu nome de usuário no Twitter</target> |
3975 | 3989 | ||
3976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3977 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3991 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3978 | <source>Instance allowed by Twitter</source> | 3992 | <source>Instance allowed by Twitter</source> |
3979 | <target state="new">Instance allowed by Twitter</target> | 3993 | <target state="new">Instance allowed by Twitter</target> |
3980 | 3994 | ||
3981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3982 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3996 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3983 | 3997 | ||
3984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3985 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3999 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3986 | <source>LIVE</source><target state="new">LIVE</target> | 4000 | <source>LIVE</source><target state="new">LIVE</target> |
3987 | 4001 | ||
3988 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3989 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4003 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
3990 | 4004 | ||
3991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3992 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4006 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3993 | 4007 | ||
3994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3995 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4009 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
3996 | 4010 | ||
3997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3998 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4012 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
3999 | 4013 | ||
4000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4001 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4015 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4002 | 4016 | ||
4003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4004 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4018 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4005 | <context-group purpose="location"> | 4019 | |
4006 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4007 | <context context-type="linenumber">751</context> | ||
4008 | </context-group> | ||
4009 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4010 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4021 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4011 | 4022 | ||
4012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4013 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4024 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4014 | <context-group purpose="location"> | 4025 | |
4015 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4016 | <context context-type="linenumber">759</context> | ||
4017 | </context-group> | ||
4018 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4019 | <source>Max live duration</source><target state="new">Max live duration</target> | 4027 | <source>Max live duration</source><target state="new">Max live duration</target> |
4020 | 4028 | ||
4021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4022 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4030 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4023 | 4031 | ||
4024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4025 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4033 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4026 | 4034 | ||
4027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4028 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4036 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4029 | 4037 | ||
4030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4031 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4039 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4032 | 4040 | ||
4033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4034 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4042 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4035 | 4043 | ||
4036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4037 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4045 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4038 | <context-group purpose="location"> | ||
4039 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4040 | <context context-type="linenumber">793</context> | ||
4041 | </context-group> | ||
4042 | <context-group purpose="location"> | ||
4043 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4044 | <context context-type="linenumber">935</context> | ||
4045 | </context-group> | ||
4046 | </trans-unit> | ||
4047 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4048 | <source>Services</source> | ||
4049 | <target>Serviços</target> | ||
4050 | 4046 | ||
4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4047 | |
4048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4049 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4052 | <source>Live streaming</source><target state="new">Live streaming</target> | 4050 | <source>Live streaming</source><target state="new">Live streaming</target> |
4053 | 4051 | ||
4054 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4055 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4053 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4056 | <source>TRANSCODING</source> | 4054 | <source>TRANSCODING</source> |
4057 | <target state="new">TRANSCODING</target> | 4055 | <target state="new">TRANSCODING</target> |
4058 | 4056 | ||
4059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4060 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4058 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4061 | <source>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.</source> | 4059 | <source>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.</source> |
4062 | <target state="new"> | 4060 | <target state="new"> |
@@ -4064,55 +4062,53 @@ The link will expire within 1 hour.</target> | |||
4064 | resources, this is a critical part of PeerTube, so tread carefully. | 4062 | resources, this is a critical part of PeerTube, so tread carefully. |
4065 | </target> | 4063 | </target> |
4066 | 4064 | ||
4067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4068 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4066 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4069 | <source>Transcoding enabled</source> | 4067 | <source>Transcoding enabled</source> |
4070 | <target>Transcodificação ativada</target> | 4068 | <target>Transcodificação ativada</target> |
4071 | 4069 | ||
4072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4073 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4071 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4074 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4072 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4075 | <target>Se você desativar a transcodificação, muitos vídeos dos seus usuários não funcionarão!</target> | 4073 | <target>Se você desativar a transcodificação, muitos vídeos dos seus usuários não funcionarão!</target> |
4076 | 4074 | ||
4077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4076 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4077 | |||
4078 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4079 | |||
4080 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4081 | <context-group purpose="location"> | ||
4082 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4083 | <context context-type="linenumber">759,763</context> | ||
4084 | </context-group> | ||
4085 | </trans-unit> | ||
4078 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4086 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4079 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4087 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4080 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4088 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4081 | 4089 | ||
4082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4083 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4091 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4084 | <source>Allow additional extensions</source> | 4092 | <source>Allow additional extensions</source> |
4085 | <target>Permitir extensões adicionais</target> | 4093 | <target>Permitir extensões adicionais</target> |
4086 | 4094 | ||
4087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4088 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4096 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4089 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4097 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4090 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4098 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4091 | 4099 | ||
4092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4093 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4101 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4094 | <source>Allow audio files upload</source> | 4102 | <source>Allow audio files upload</source> |
4095 | <target state="translated">Permitir envio de arquivos de áudio</target> | 4103 | <target state="translated">Permitir envio de arquivos de áudio</target> |
4096 | 4104 | ||
4097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4098 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4106 | |
4099 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4100 | <target state="new"> | ||
4101 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4102 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4103 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4104 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4105 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4106 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4107 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4108 | </target> | ||
4109 | |||
4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4111 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4107 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4112 | <source>WebTorrent support enabled</source> | 4108 | <source>WebTorrent support enabled</source> |
4113 | <target state="translated">Suporte WebTorrent ativado</target> | 4109 | <target state="translated">Suporte WebTorrent ativado</target> |
4114 | 4110 | ||
4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4116 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4112 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4117 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4113 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4118 | <target state="new"> | 4114 | <target state="new"> |
@@ -4132,73 +4128,67 @@ The link will expire within 1 hour.</target> | |||
4132 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4128 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4133 | </target> | 4129 | </target> |
4134 | 4130 | ||
4135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4136 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4132 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4137 | <source>HLS with P2P support enabled</source> | 4133 | <source>HLS with P2P support enabled</source> |
4138 | <target state="new">HLS with P2P support enabled</target> | 4134 | <target state="new">HLS with P2P support enabled</target> |
4139 | 4135 | ||
4140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4141 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4137 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4142 | <source>Transcoding threads</source> | 4138 | <source>Transcoding threads</source> |
4143 | <target>Threads de transcodificação</target> | 4139 | <target>Threads de transcodificação</target> |
4144 | 4140 | ||
4145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4146 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4142 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4147 | <source>Resolutions to generate</source> | 4143 | <source>Resolutions to generate</source> |
4148 | <target state="new">Resolutions to generate</target> | 4144 | <target state="new">Resolutions to generate</target> |
4149 | 4145 | ||
4150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4151 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4147 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4152 | <source>CACHE</source> | 4148 | <source>CACHE</source> |
4153 | <target state="new">CACHE</target> | 4149 | <target state="new">CACHE</target> |
4154 | 4150 | ||
4155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4156 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4152 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4157 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4153 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4158 | <target state="new"> | 4154 | <target state="new"> |
4159 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4155 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4160 | </target> | 4156 | </target> |
4161 | 4157 | ||
4162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4163 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4159 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4164 | <source>Number of previews to keep in cache</source> | 4160 | <source>Number of previews to keep in cache</source> |
4165 | <target state="new">Number of previews to keep in cache</target> | 4161 | <target state="new">Number of previews to keep in cache</target> |
4166 | 4162 | ||
4167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4168 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4164 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4169 | <context-group purpose="location"> | 4165 | |
4170 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4171 | <context context-type="linenumber">986</context> | ||
4172 | </context-group> | ||
4173 | </trans-unit> | ||
4174 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4167 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4175 | <source>Number of video captions to keep in cache</source> | 4168 | <source>Number of video captions to keep in cache</source> |
4176 | <target state="new">Number of video captions to keep in cache</target> | 4169 | <target state="new">Number of video captions to keep in cache</target> |
4177 | 4170 | ||
4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4179 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4172 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4180 | <context-group purpose="location"> | 4173 | |
4181 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4182 | <context context-type="linenumber">998</context> | ||
4183 | </context-group> | ||
4184 | </trans-unit> | ||
4185 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4175 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4186 | <source>CUSTOMIZATIONS</source> | 4176 | <source>CUSTOMIZATIONS</source> |
4187 | <target state="new">CUSTOMIZATIONS</target> | 4177 | <target state="new">CUSTOMIZATIONS</target> |
4188 | 4178 | ||
4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4190 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4180 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4191 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4181 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4192 | <target state="new"> | 4182 | <target state="new"> |
4193 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4183 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4194 | </target> | 4184 | </target> |
4195 | 4185 | ||
4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4197 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4187 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4198 | <source>JavaScript</source> | 4188 | <source>JavaScript</source> |
4199 | <target>JavaScript</target> | 4189 | <target>JavaScript</target> |
4200 | 4190 | ||
4201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4202 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4192 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4203 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4193 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4204 | <target state="new"> | 4194 | <target state="new"> |
@@ -4208,7 +4198,7 @@ The link will expire within 1 hour.</target> | |||
4208 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4198 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4209 | </target> | 4199 | </target> |
4210 | 4200 | ||
4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4212 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4202 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4213 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4203 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4214 | color: red; | 4204 | color: red; |
@@ -4240,23 +4230,23 @@ The link will expire within 1 hour.</target> | |||
4240 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4230 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4241 | </target> | 4231 | </target> |
4242 | 4232 | ||
4243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4244 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4234 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4245 | 4235 | ||
4246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4247 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4237 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4248 | 4238 | ||
4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4250 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4240 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4251 | <source>Advanced configuration</source> | 4241 | <source>Advanced configuration</source> |
4252 | <target>Configurações avançadas</target> | 4242 | <target>Configurações avançadas</target> |
4253 | 4243 | ||
4254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4255 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4245 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4256 | <source>Update configuration</source> | 4246 | <source>Update configuration</source> |
4257 | <target>Atualizar configuração</target> | 4247 | <target>Atualizar configuração</target> |
4258 | 4248 | ||
4259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4260 | 4250 | ||
4261 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4251 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4262 | <source>VIDEO SETTINGS</source> | 4252 | <source>VIDEO SETTINGS</source> |
@@ -6838,7 +6828,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6838 | <source>any language</source> | 6828 | <source>any language</source> |
6839 | <target state="new">any language</target> | 6829 | <target state="new">any language</target> |
6840 | 6830 | ||
6841 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6831 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6842 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6832 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6843 | 6833 | ||
6844 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6834 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6846,22 +6836,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6846 | <source>hide</source> | 6836 | <source>hide</source> |
6847 | <target state="new">hide</target> | 6837 | <target state="new">hide</target> |
6848 | 6838 | ||
6849 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6839 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6850 | <trans-unit id="8603861867909474404" datatype="html"> | 6840 | <trans-unit id="8603861867909474404" datatype="html"> |
6851 | <source>blur</source> | 6841 | <source>blur</source> |
6852 | <target state="new">blur</target> | 6842 | <target state="new">blur</target> |
6853 | 6843 | ||
6854 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6844 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6855 | <trans-unit id="4534458451100881847" datatype="html"> | 6845 | <trans-unit id="4534458451100881847" datatype="html"> |
6856 | <source>display</source> | 6846 | <source>display</source> |
6857 | <target state="new">display</target> | 6847 | <target state="new">display</target> |
6858 | 6848 | ||
6859 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6849 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6860 | <trans-unit id="4467323362722952678" datatype="html"> | 6850 | <trans-unit id="4467323362722952678" datatype="html"> |
6861 | <source>Unknown</source> | 6851 | <source>Unknown</source> |
6862 | <target state="new">Unknown</target> | 6852 | <target state="new">Unknown</target> |
6863 | 6853 | ||
6864 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6854 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6865 | <trans-unit id="8781423666414310853"> | 6855 | <trans-unit id="8781423666414310853"> |
6866 | <source>Your password has been successfully reset!</source> | 6856 | <source>Your password has been successfully reset!</source> |
6867 | <target>Sua senha foi redefinida com sucesso!</target> | 6857 | <target>Sua senha foi redefinida com sucesso!</target> |
@@ -7844,12 +7834,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7844 | <source>Instance languages</source> | 7834 | <source>Instance languages</source> |
7845 | <target state="new">Instance languages</target> | 7835 | <target state="new">Instance languages</target> |
7846 | 7836 | ||
7847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7848 | <trans-unit id="40119547597591062" datatype="html"> | 7838 | <trans-unit id="40119547597591062" datatype="html"> |
7849 | <source>All languages</source> | 7839 | <source>All languages</source> |
7850 | <target state="new">All languages</target> | 7840 | <target state="new">All languages</target> |
7851 | 7841 | ||
7852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7842 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7853 | <trans-unit id="996392855508119363" datatype="html"> | 7843 | <trans-unit id="996392855508119363" datatype="html"> |
7854 | <source>Hidden</source> | 7844 | <source>Hidden</source> |
7855 | <target state="translated">Escondido</target> | 7845 | <target state="translated">Escondido</target> |
@@ -8596,7 +8586,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8596 | <source>Only users of this instance can see this video</source> | 8586 | <source>Only users of this instance can see this video</source> |
8597 | <target state="translated">Apenas utilizadores desta instância podem ver este vídeo</target> | 8587 | <target state="translated">Apenas utilizadores desta instância podem ver este vídeo</target> |
8598 | 8588 | ||
8599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 8589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8590 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8591 | <context-group purpose="location"> | ||
8592 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8593 | <context context-type="linenumber">211</context> | ||
8594 | </context-group> | ||
8595 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8596 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8597 | <context-group purpose="location"> | ||
8598 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8599 | <context context-type="linenumber">214</context> | ||
8600 | </context-group> | ||
8601 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
8600 | <source>Close</source><target state="new">Close</target> | 8602 | <source>Close</source><target state="new">Close</target> |
8601 | 8603 | ||
8602 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 8604 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.pt-PT.xlf b/client/src/locale/angular.pt-PT.xlf index 31564eb4c..d3b90b606 100644 --- a/client/src/locale/angular.pt-PT.xlf +++ b/client/src/locale/angular.pt-PT.xlf | |||
@@ -506,19 +506,27 @@ | |||
506 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 506 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
507 | </target> | 507 | </target> |
508 | 508 | ||
509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
510 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
511 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
512 | "/> </target> | ||
513 | <context-group purpose="location"> | ||
514 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
515 | <context context-type="linenumber">32,33</context> | ||
516 | </context-group> | ||
517 | </trans-unit> | ||
510 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 518 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
511 | <source>Blocked</source> | 519 | <source>Blocked</source> |
512 | <target state="new">Blocked</target> | 520 | <target state="new">Blocked</target> |
513 | 521 | ||
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
515 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 523 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
516 | <source>Sensitive</source> | 524 | <source>Sensitive</source> |
517 | <target> | 525 | <target> |
518 | Sensível | 526 | Sensível |
519 | </target> | 527 | </target> |
520 | 528 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
522 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 530 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
523 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 531 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
524 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 532 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1331,13 +1339,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <target state="new">Sensitive:</target> | 1339 | <target state="new">Sensitive:</target> |
1332 | 1340 | ||
1333 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1341 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1334 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1342 | |
1335 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1336 | <target state="new">Interface: | ||
1337 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1338 | </target> | ||
1339 | |||
1340 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1341 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1343 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1342 | <source>Help share videos</source> | 1344 | <source>Help share videos</source> |
1343 | <target state="translated">Ajude a partilhar vídeos</target> | 1345 | <target state="translated">Ajude a partilhar vídeos</target> |
@@ -1413,7 +1415,13 @@ The link will expire within 1 hour.</target> | |||
1413 | <source>Videos</source> | 1415 | <source>Videos</source> |
1414 | <target>Vídeos</target> | 1416 | <target>Vídeos</target> |
1415 | 1417 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1419 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1420 | <context-group purpose="location"> | ||
1421 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1422 | <context context-type="linenumber">171</context> | ||
1423 | </context-group> | ||
1424 | </trans-unit> | ||
1417 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1425 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1418 | <source>Playlists</source> | 1426 | <source>Playlists</source> |
1419 | <target state="translated">Listas de reprodução</target> | 1427 | <target state="translated">Listas de reprodução</target> |
@@ -2032,12 +2040,12 @@ The link will expire within 1 hour.</target> | |||
2032 | <source>Scheduled</source> | 2040 | <source>Scheduled</source> |
2033 | <target state="new">Scheduled</target> | 2041 | <target state="new">Scheduled</target> |
2034 | 2042 | ||
2035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2036 | <trans-unit id="1435317307066082710" datatype="html"> | 2044 | <trans-unit id="1435317307066082710" datatype="html"> |
2037 | <source>Hide the video until a specific date</source> | 2045 | <source>Hide the video until a specific date</source> |
2038 | <target state="new">Hide the video until a specific date</target> | 2046 | <target state="new">Hide the video until a specific date</target> |
2039 | 2047 | ||
2040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2041 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2049 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2042 | <source>Video background image</source> | 2050 | <source>Video background image</source> |
2043 | <target state="new">Video background image</target> | 2051 | <target state="new">Video background image</target> |
@@ -2696,7 +2704,7 @@ The link will expire within 1 hour.</target> | |||
2696 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2704 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2697 | <context context-type="linenumber">8</context> | 2705 | <context context-type="linenumber">8</context> |
2698 | </context-group> | 2706 | </context-group> |
2699 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2707 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2700 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2708 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2701 | <context-group purpose="location"> | 2709 | <context-group purpose="location"> |
2702 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2710 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4318,107 +4326,97 @@ The link will expire within 1 hour.</target> | |||
4318 | <source>Basic configuration</source> | 4326 | <source>Basic configuration</source> |
4319 | <target>Configurações básicas</target> | 4327 | <target>Configurações básicas</target> |
4320 | 4328 | ||
4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4330 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4331 | <context-group purpose="location"> | ||
4332 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4333 | <context context-type="linenumber">700</context> | ||
4334 | </context-group> | ||
4335 | </trans-unit> | ||
4322 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4336 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4323 | <source>TWITTER</source> | 4337 | <source>TWITTER</source> |
4324 | <target state="new">TWITTER</target> | 4338 | <target state="new">TWITTER</target> |
4325 | 4339 | ||
4326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4327 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4341 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4328 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4342 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4329 | <target state="new"> | 4343 | <target state="new"> |
4330 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4344 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4331 | </target> | 4345 | </target> |
4332 | 4346 | ||
4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4334 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4348 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4335 | <source>Your Twitter username</source> | 4349 | <source>Your Twitter username</source> |
4336 | <target>Seu nome de usuário no Twitter</target> | 4350 | <target>Seu nome de usuário no Twitter</target> |
4337 | 4351 | ||
4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4339 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4353 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4340 | <source>Instance allowed by Twitter</source> | 4354 | <source>Instance allowed by Twitter</source> |
4341 | <target state="new">Instance allowed by Twitter</target> | 4355 | <target state="new">Instance allowed by Twitter</target> |
4342 | 4356 | ||
4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4344 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4358 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4345 | 4359 | ||
4346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4347 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4361 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4348 | <source>LIVE</source><target state="new">LIVE</target> | 4362 | <source>LIVE</source><target state="new">LIVE</target> |
4349 | 4363 | ||
4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4351 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4365 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4352 | 4366 | ||
4353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4354 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4368 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4355 | 4369 | ||
4356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4357 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4371 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4358 | 4372 | ||
4359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4360 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4374 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4361 | 4375 | ||
4362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4363 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4377 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4364 | 4378 | ||
4365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4366 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4380 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4367 | <context-group purpose="location"> | 4381 | |
4368 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4369 | <context context-type="linenumber">751</context> | ||
4370 | </context-group> | ||
4371 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4372 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4383 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4373 | 4384 | ||
4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4375 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4386 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4376 | <context-group purpose="location"> | 4387 | |
4377 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4378 | <context context-type="linenumber">759</context> | ||
4379 | </context-group> | ||
4380 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4381 | <source>Max live duration</source><target state="new">Max live duration</target> | 4389 | <source>Max live duration</source><target state="new">Max live duration</target> |
4382 | 4390 | ||
4383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4384 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4392 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4385 | 4393 | ||
4386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4387 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4395 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4388 | 4396 | ||
4389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4390 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4398 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4391 | 4399 | ||
4392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4393 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4401 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4394 | 4402 | ||
4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4396 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4404 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4397 | 4405 | ||
4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4399 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4407 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4400 | <context-group purpose="location"> | ||
4401 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4402 | <context context-type="linenumber">793</context> | ||
4403 | </context-group> | ||
4404 | <context-group purpose="location"> | ||
4405 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4406 | <context context-type="linenumber">935</context> | ||
4407 | </context-group> | ||
4408 | </trans-unit> | ||
4409 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4410 | <source>Services</source> | ||
4411 | <target>Serviços</target> | ||
4412 | 4408 | ||
4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4409 | |
4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4411 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4414 | <source>Live streaming</source><target state="new">Live streaming</target> | 4412 | <source>Live streaming</source><target state="new">Live streaming</target> |
4415 | 4413 | ||
4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4417 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4415 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4418 | <source>TRANSCODING</source> | 4416 | <source>TRANSCODING</source> |
4419 | <target state="new">TRANSCODING</target> | 4417 | <target state="new">TRANSCODING</target> |
4420 | 4418 | ||
4421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4422 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4420 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4423 | <source> 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. </source> | 4421 | <source> 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. </source> |
4424 | <target state="new"> | 4422 | <target state="new"> |
@@ -4426,55 +4424,53 @@ The link will expire within 1 hour.</target> | |||
4426 | resources, this is a critical part of PeerTube, so tread carefully. | 4424 | resources, this is a critical part of PeerTube, so tread carefully. |
4427 | </target> | 4425 | </target> |
4428 | 4426 | ||
4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4430 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4428 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4431 | <source>Transcoding enabled</source> | 4429 | <source>Transcoding enabled</source> |
4432 | <target>Transcodificação ativada</target> | 4430 | <target>Transcodificação ativada</target> |
4433 | 4431 | ||
4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4435 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4433 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4436 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4434 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4437 | <target>Se você desativar a transcodificação, muitos vídeos dos seus usuários não funcionarão!</target> | 4435 | <target>Se você desativar a transcodificação, muitos vídeos dos seus usuários não funcionarão!</target> |
4438 | 4436 | ||
4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4438 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4439 | |||
4440 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4441 | |||
4442 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4443 | <context-group purpose="location"> | ||
4444 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4445 | <context context-type="linenumber">759,763</context> | ||
4446 | </context-group> | ||
4447 | </trans-unit> | ||
4440 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4448 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4441 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4449 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4442 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4450 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4443 | 4451 | ||
4444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4445 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4453 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4446 | <source>Allow additional extensions</source> | 4454 | <source>Allow additional extensions</source> |
4447 | <target state="new">Allow additional extensions</target> | 4455 | <target state="new">Allow additional extensions</target> |
4448 | 4456 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4450 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4458 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4451 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4459 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4452 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4460 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4453 | 4461 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4455 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4463 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4456 | <source>Allow audio files upload</source> | 4464 | <source>Allow audio files upload</source> |
4457 | <target state="new">Allow audio files upload</target> | 4465 | <target state="new">Allow audio files upload</target> |
4458 | 4466 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4460 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4468 | |
4461 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4462 | <target state="new"> | ||
4463 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4464 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4465 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4466 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4467 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4468 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4469 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4470 | </target> | ||
4471 | |||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4473 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4469 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4474 | <source>WebTorrent support enabled</source> | 4470 | <source>WebTorrent support enabled</source> |
4475 | <target state="new">WebTorrent support enabled</target> | 4471 | <target state="new">WebTorrent support enabled</target> |
4476 | 4472 | ||
4477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4478 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4474 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4479 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4475 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4480 | <target state="new"> | 4476 | <target state="new"> |
@@ -4494,73 +4490,67 @@ The link will expire within 1 hour.</target> | |||
4494 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4490 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4495 | </target> | 4491 | </target> |
4496 | 4492 | ||
4497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4498 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4494 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4499 | <source>HLS with P2P support enabled</source> | 4495 | <source>HLS with P2P support enabled</source> |
4500 | <target state="new">HLS with P2P support enabled</target> | 4496 | <target state="new">HLS with P2P support enabled</target> |
4501 | 4497 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4503 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4499 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4504 | <source>Transcoding threads</source> | 4500 | <source>Transcoding threads</source> |
4505 | <target>Threads de transcodificação</target> | 4501 | <target>Threads de transcodificação</target> |
4506 | 4502 | ||
4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4508 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4504 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4509 | <source>Resolutions to generate</source> | 4505 | <source>Resolutions to generate</source> |
4510 | <target state="new">Resolutions to generate</target> | 4506 | <target state="new">Resolutions to generate</target> |
4511 | 4507 | ||
4512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4513 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4509 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4514 | <source>CACHE</source> | 4510 | <source>CACHE</source> |
4515 | <target state="new">CACHE</target> | 4511 | <target state="new">CACHE</target> |
4516 | 4512 | ||
4517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4518 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4514 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4519 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4515 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4520 | <target state="new"> | 4516 | <target state="new"> |
4521 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4517 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4522 | </target> | 4518 | </target> |
4523 | 4519 | ||
4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4525 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4521 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4526 | <source>Number of previews to keep in cache</source> | 4522 | <source>Number of previews to keep in cache</source> |
4527 | <target state="new">Number of previews to keep in cache</target> | 4523 | <target state="new">Number of previews to keep in cache</target> |
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4530 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4526 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4531 | <context-group purpose="location"> | 4527 | |
4532 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4533 | <context context-type="linenumber">986</context> | ||
4534 | </context-group> | ||
4535 | </trans-unit> | ||
4536 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4529 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4537 | <source>Number of video captions to keep in cache</source> | 4530 | <source>Number of video captions to keep in cache</source> |
4538 | <target state="new">Number of video captions to keep in cache</target> | 4531 | <target state="new">Number of video captions to keep in cache</target> |
4539 | 4532 | ||
4540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4541 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4534 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4542 | <context-group purpose="location"> | 4535 | |
4543 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4544 | <context context-type="linenumber">998</context> | ||
4545 | </context-group> | ||
4546 | </trans-unit> | ||
4547 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4537 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4548 | <source>CUSTOMIZATIONS</source> | 4538 | <source>CUSTOMIZATIONS</source> |
4549 | <target state="new">CUSTOMIZATIONS</target> | 4539 | <target state="new">CUSTOMIZATIONS</target> |
4550 | 4540 | ||
4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4552 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4542 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4553 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4543 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4554 | <target state="new"> | 4544 | <target state="new"> |
4555 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4545 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4556 | </target> | 4546 | </target> |
4557 | 4547 | ||
4558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4559 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4549 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4560 | <source>JavaScript</source> | 4550 | <source>JavaScript</source> |
4561 | <target>JavaScript</target> | 4551 | <target>JavaScript</target> |
4562 | 4552 | ||
4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4564 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4554 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4565 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4555 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4566 | <target state="new"> | 4556 | <target state="new"> |
@@ -4570,7 +4560,7 @@ The link will expire within 1 hour.</target> | |||
4570 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4560 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4571 | </target> | 4561 | </target> |
4572 | 4562 | ||
4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4574 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4564 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4575 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4565 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4576 | color: red; | 4566 | color: red; |
@@ -4602,23 +4592,23 @@ The link will expire within 1 hour.</target> | |||
4602 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4592 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4603 | </target> | 4593 | </target> |
4604 | 4594 | ||
4605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4606 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4596 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4607 | 4597 | ||
4608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4609 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4599 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4610 | 4600 | ||
4611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4612 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4602 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4613 | <source>Advanced configuration</source> | 4603 | <source>Advanced configuration</source> |
4614 | <target>Configurações avançadas</target> | 4604 | <target>Configurações avançadas</target> |
4615 | 4605 | ||
4616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4617 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4607 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4618 | <source>Update configuration</source> | 4608 | <source>Update configuration</source> |
4619 | <target>Atualizar configuração</target> | 4609 | <target>Atualizar configuração</target> |
4620 | 4610 | ||
4621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4622 | 4612 | ||
4623 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4613 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4624 | <source>VIDEO SETTINGS</source> | 4614 | <source>VIDEO SETTINGS</source> |
@@ -7361,7 +7351,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7361 | <source>any language</source> | 7351 | <source>any language</source> |
7362 | <target state="new">any language</target> | 7352 | <target state="new">any language</target> |
7363 | 7353 | ||
7364 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7354 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7365 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7355 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7366 | 7356 | ||
7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7357 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7369,22 +7359,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7369 | <source>hide</source> | 7359 | <source>hide</source> |
7370 | <target state="new">hide</target> | 7360 | <target state="new">hide</target> |
7371 | 7361 | ||
7372 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7362 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7373 | <trans-unit id="8603861867909474404" datatype="html"> | 7363 | <trans-unit id="8603861867909474404" datatype="html"> |
7374 | <source>blur</source> | 7364 | <source>blur</source> |
7375 | <target state="new">blur</target> | 7365 | <target state="new">blur</target> |
7376 | 7366 | ||
7377 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7378 | <trans-unit id="4534458451100881847" datatype="html"> | 7368 | <trans-unit id="4534458451100881847" datatype="html"> |
7379 | <source>display</source> | 7369 | <source>display</source> |
7380 | <target state="new">display</target> | 7370 | <target state="new">display</target> |
7381 | 7371 | ||
7382 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7372 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7383 | <trans-unit id="4467323362722952678" datatype="html"> | 7373 | <trans-unit id="4467323362722952678" datatype="html"> |
7384 | <source>Unknown</source> | 7374 | <source>Unknown</source> |
7385 | <target state="new">Unknown</target> | 7375 | <target state="new">Unknown</target> |
7386 | 7376 | ||
7387 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7377 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7388 | <trans-unit id="8781423666414310853"> | 7378 | <trans-unit id="8781423666414310853"> |
7389 | <source>Your password has been successfully reset!</source> | 7379 | <source>Your password has been successfully reset!</source> |
7390 | <target>Sua senha foi redefinida com sucesso!</target> | 7380 | <target>Sua senha foi redefinida com sucesso!</target> |
@@ -8396,13 +8386,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8396 | <source>Instance languages</source> | 8386 | <source>Instance languages</source> |
8397 | <target state="new">Instance languages</target> | 8387 | <target state="new">Instance languages</target> |
8398 | 8388 | ||
8399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8400 | <trans-unit id="40119547597591062" datatype="html"> | 8390 | <trans-unit id="40119547597591062" datatype="html"> |
8401 | <source>All languages</source> | 8391 | <source>All languages</source> |
8402 | <target state="new">All languages</target> | 8392 | <target state="new">All languages</target> |
8403 | 8393 | ||
8404 | 8394 | ||
8405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8395 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8406 | <trans-unit id="996392855508119363" datatype="html"> | 8396 | <trans-unit id="996392855508119363" datatype="html"> |
8407 | <source>Hidden</source> | 8397 | <source>Hidden</source> |
8408 | <target state="new">Hidden</target> | 8398 | <target state="new">Hidden</target> |
@@ -9172,7 +9162,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9172 | <source>Only users of this instance can see this video</source> | 9162 | <source>Only users of this instance can see this video</source> |
9173 | <target state="new">Only users of this instance can see this video</target> | 9163 | <target state="new">Only users of this instance can see this video</target> |
9174 | 9164 | ||
9175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9166 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9167 | <context-group purpose="location"> | ||
9168 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9169 | <context context-type="linenumber">211</context> | ||
9170 | </context-group> | ||
9171 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9172 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9173 | <context-group purpose="location"> | ||
9174 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9175 | <context context-type="linenumber">214</context> | ||
9176 | </context-group> | ||
9177 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9176 | <source>Close</source><target state="new">Close</target> | 9178 | <source>Close</source><target state="new">Close</target> |
9177 | 9179 | ||
9178 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9180 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index f37285a70..f3cbc4c5a 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf | |||
@@ -303,17 +303,25 @@ | |||
303 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 303 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
304 | <target state="translated">{VAR_PLURAL, plural, =1 {1 просмотр} other {<x id="INTERPOLATION"/> просмотров}}</target> | 304 | <target state="translated">{VAR_PLURAL, plural, =1 {1 просмотр} other {<x id="INTERPOLATION"/> просмотров}}</target> |
305 | 305 | ||
306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
307 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
308 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
309 | "/> </target> | ||
310 | <context-group purpose="location"> | ||
311 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
312 | <context context-type="linenumber">32,33</context> | ||
313 | </context-group> | ||
314 | </trans-unit> | ||
307 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 315 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
308 | <source>Blocked</source> | 316 | <source>Blocked</source> |
309 | <target state="translated">Заблокировано</target> | 317 | <target state="translated">Заблокировано</target> |
310 | 318 | ||
311 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
312 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 320 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
313 | <source>Sensitive</source> | 321 | <source>Sensitive</source> |
314 | <target state="translated">Чувствительный</target> | 322 | <target state="translated">Чувствительный</target> |
315 | 323 | ||
316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
317 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 325 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
318 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 326 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
319 | <target state="translated">{VAR_PLURAL, plural, =0 {Нет видео} other {<x id="INTERPOLATION"/> видео}}</target> | 327 | <target state="translated">{VAR_PLURAL, plural, =0 {Нет видео} other {<x id="INTERPOLATION"/> видео}}</target> |
@@ -972,11 +980,7 @@ The link will expire within 1 hour.</source> | |||
972 | <target state="translated">Чувствительный:</target> | 980 | <target state="translated">Чувствительный:</target> |
973 | 981 | ||
974 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 982 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
975 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 983 | |
976 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
977 | <target state="translated">Интерфейс: <x id="INTERPOLATION"/></target> | ||
978 | |||
979 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
980 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 984 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
981 | <source>Help share videos</source> | 985 | <source>Help share videos</source> |
982 | <target state="translated">Помогите поделиться видео</target> | 986 | <target state="translated">Помогите поделиться видео</target> |
@@ -1060,7 +1064,13 @@ The link will expire within 1 hour.</source> | |||
1060 | <source>Videos</source> | 1064 | <source>Videos</source> |
1061 | <target>Видео</target> | 1065 | <target>Видео</target> |
1062 | 1066 | ||
1063 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1067 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1068 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1069 | <context-group purpose="location"> | ||
1070 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1071 | <context context-type="linenumber">171</context> | ||
1072 | </context-group> | ||
1073 | </trans-unit> | ||
1064 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1074 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1065 | <source>Playlists</source> | 1075 | <source>Playlists</source> |
1066 | <target>Плейлисты</target> | 1076 | <target>Плейлисты</target> |
@@ -1601,12 +1611,12 @@ The link will expire within 1 hour.</source> | |||
1601 | <source>Scheduled</source> | 1611 | <source>Scheduled</source> |
1602 | <target>Запланировано</target> | 1612 | <target>Запланировано</target> |
1603 | 1613 | ||
1604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1605 | <trans-unit id="1435317307066082710" datatype="html"> | 1615 | <trans-unit id="1435317307066082710" datatype="html"> |
1606 | <source>Hide the video until a specific date</source> | 1616 | <source>Hide the video until a specific date</source> |
1607 | <target state="translated">Скрыть видео до указанной даты</target> | 1617 | <target state="translated">Скрыть видео до указанной даты</target> |
1608 | 1618 | ||
1609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1610 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1620 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1611 | <source>Video background image</source> | 1621 | <source>Video background image</source> |
1612 | <target state="translated">Фоновое изображение видео</target> | 1622 | <target state="translated">Фоновое изображение видео</target> |
@@ -2228,7 +2238,7 @@ The link will expire within 1 hour.</source> | |||
2228 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2238 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2229 | <context context-type="linenumber">8</context> | 2239 | <context context-type="linenumber">8</context> |
2230 | </context-group> | 2240 | </context-group> |
2231 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2241 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2232 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2242 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2233 | <context-group purpose="location"> | 2243 | <context-group purpose="location"> |
2234 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2244 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3616,222 +3626,212 @@ The link will expire within 1 hour.</source> | |||
3616 | <source>Basic configuration</source> | 3626 | <source>Basic configuration</source> |
3617 | <target>Базовая конфигурация</target> | 3627 | <target>Базовая конфигурация</target> |
3618 | 3628 | ||
3619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3630 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3631 | <context-group purpose="location"> | ||
3632 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3633 | <context context-type="linenumber">700</context> | ||
3634 | </context-group> | ||
3635 | </trans-unit> | ||
3620 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3636 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3621 | <source>TWITTER</source> | 3637 | <source>TWITTER</source> |
3622 | <target state="translated">TWITTER</target> | 3638 | <target state="translated">TWITTER</target> |
3623 | 3639 | ||
3624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3625 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3641 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3626 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3642 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3627 | <target state="translated">По желанию. Если есть, предоставьте учетную запись Twitter, представляющую ваш экземпляр, чтобы улучшить предварительный просмотр ссылок.</target> | 3643 | <target state="translated">По желанию. Если есть, предоставьте учетную запись Twitter, представляющую ваш экземпляр, чтобы улучшить предварительный просмотр ссылок.</target> |
3628 | 3644 | ||
3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3630 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3646 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3631 | <source>Your Twitter username</source> | 3647 | <source>Your Twitter username</source> |
3632 | <target>Ваше имя пользователя Twitter</target> | 3648 | <target>Ваше имя пользователя Twitter</target> |
3633 | 3649 | ||
3634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3635 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3651 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3636 | <source>Instance allowed by Twitter</source> | 3652 | <source>Instance allowed by Twitter</source> |
3637 | <target state="translated">Экземпляр, разрешенный Twitter</target> | 3653 | <target state="translated">Экземпляр, разрешенный Twitter</target> |
3638 | 3654 | ||
3639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3640 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3656 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3641 | 3657 | ||
3642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3643 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3659 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3644 | <source>LIVE</source><target state="new">LIVE</target> | 3660 | <source>LIVE</source><target state="new">LIVE</target> |
3645 | 3661 | ||
3646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3662 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3647 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 3663 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
3648 | 3664 | ||
3649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3650 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 3666 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
3651 | 3667 | ||
3652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3653 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 3669 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
3654 | 3670 | ||
3655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3656 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 3672 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
3657 | 3673 | ||
3658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3659 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 3675 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
3660 | 3676 | ||
3661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3662 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3678 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3663 | <context-group purpose="location"> | 3679 | |
3664 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3665 | <context context-type="linenumber">751</context> | ||
3666 | </context-group> | ||
3667 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
3668 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 3681 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
3669 | 3682 | ||
3670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3671 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3684 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3672 | <context-group purpose="location"> | 3685 | |
3673 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3674 | <context context-type="linenumber">759</context> | ||
3675 | </context-group> | ||
3676 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
3677 | <source>Max live duration</source><target state="new">Max live duration</target> | 3687 | <source>Max live duration</source><target state="new">Max live duration</target> |
3678 | 3688 | ||
3679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3680 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 3690 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
3681 | 3691 | ||
3682 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3683 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 3693 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
3684 | 3694 | ||
3685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3686 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 3696 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
3687 | 3697 | ||
3688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3689 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 3699 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
3690 | 3700 | ||
3691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3692 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 3702 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
3693 | 3703 | ||
3694 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3695 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3705 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3696 | <context-group purpose="location"> | ||
3697 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3698 | <context context-type="linenumber">793</context> | ||
3699 | </context-group> | ||
3700 | <context-group purpose="location"> | ||
3701 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3702 | <context context-type="linenumber">935</context> | ||
3703 | </context-group> | ||
3704 | </trans-unit> | ||
3705 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
3706 | <source>Services</source> | ||
3707 | <target>Сервисы</target> | ||
3708 | 3706 | ||
3709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 3707 | |
3708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
3709 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
3710 | <source>Live streaming</source><target state="new">Live streaming</target> | 3710 | <source>Live streaming</source><target state="new">Live streaming</target> |
3711 | 3711 | ||
3712 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3712 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3713 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3713 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3714 | <source>TRANSCODING</source> | 3714 | <source>TRANSCODING</source> |
3715 | <target state="translated">ТРАНСКОДИРОВАНИЕ</target> | 3715 | <target state="translated">ТРАНСКОДИРОВАНИЕ</target> |
3716 | 3716 | ||
3717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3718 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3718 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3719 | <source>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.</source> | 3719 | <source>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.</source> |
3720 | <target state="translated">Обработайте загруженные видео, чтобы они были в потоковой форме, которую можно было воспроизвести на любом устройстве. Хотя это требует больших ресурсов, это важная часть PeerTube, так что действуйте осторожно.</target> | 3720 | <target state="translated">Обработайте загруженные видео, чтобы они были в потоковой форме, которую можно было воспроизвести на любом устройстве. Хотя это требует больших ресурсов, это важная часть PeerTube, так что действуйте осторожно.</target> |
3721 | 3721 | ||
3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3723 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 3723 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
3724 | <source>Transcoding enabled</source> | 3724 | <source>Transcoding enabled</source> |
3725 | <target>Транскодирование активировано</target> | 3725 | <target>Транскодирование активировано</target> |
3726 | 3726 | ||
3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3728 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 3728 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
3729 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3729 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3730 | <target>Если вы отключите транскодирование, многие видео пользователей перестанут работать!</target> | 3730 | <target>Если вы отключите транскодирование, многие видео пользователей перестанут работать!</target> |
3731 | 3731 | ||
3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3733 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3734 | |||
3735 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3736 | |||
3737 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3738 | <context-group purpose="location"> | ||
3739 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3740 | <context context-type="linenumber">759,763</context> | ||
3741 | </context-group> | ||
3742 | </trans-unit> | ||
3733 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3743 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3734 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3744 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3735 | <target state="translated">Позволяет загружать форматы .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut видео.</target> | 3745 | <target state="translated">Позволяет загружать форматы .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut видео.</target> |
3736 | 3746 | ||
3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3738 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 3748 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
3739 | <source>Allow additional extensions</source> | 3749 | <source>Allow additional extensions</source> |
3740 | <target>Разрешить дополнительные расширения</target> | 3750 | <target>Разрешить дополнительные расширения</target> |
3741 | 3751 | ||
3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3743 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3753 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3744 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3754 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3745 | <target state="translated">Позволяет пользователям загружать аудиофайлы, которые будут объединены с файлом предварительного просмотра при загрузке.</target> | 3755 | <target state="translated">Позволяет пользователям загружать аудиофайлы, которые будут объединены с файлом предварительного просмотра при загрузке.</target> |
3746 | 3756 | ||
3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3748 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 3758 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
3749 | <source>Allow audio files upload</source> | 3759 | <source>Allow audio files upload</source> |
3750 | <target state="translated">Разрешить загрузку аудиофайлов</target> | 3760 | <target state="translated">Разрешить загрузку аудиофайлов</target> |
3751 | 3761 | ||
3752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3753 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3763 | |
3754 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3755 | <target state="translated"><x id="START_TAG_STRONG"/>Экспериментально, предлагаем вам пока не отключать поддержку веб-торрента<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Если вы также включили поддержку HLS, объем хранилища видео увеличится в 2 раза.<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>Если отключено, отключает федерацию с экземплярами PeerTube. < 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
3756 | |||
3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3758 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3764 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3759 | <source>WebTorrent support enabled</source> | 3765 | <source>WebTorrent support enabled</source> |
3760 | <target state="translated">Включена поддержка WebTorrent</target> | 3766 | <target state="translated">Включена поддержка WebTorrent</target> |
3761 | 3767 | ||
3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3763 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3769 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3764 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3770 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3765 | <target state="translated"><x id="START_TAG_STRONG"/>Требуется ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Создание списков воспроизведения HLS и фрагментированных файлов MP4, обеспечивающих лучшее воспроизведение, чем при использовании текущего проигрывателя по умолчанию:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Изменение разрешения более плавное<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Более быстрое воспроизведение, особенно с длинными видео<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Более стабильное воспроизведение (меньше ошибок / бесконечная загрузка)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Если вы также включили поддержку WebTorrent, объем хранилища видео увеличится в 2 раза.<x id="CLOSE_PARAGRAPH"/></target> | 3771 | <target state="translated"><x id="START_TAG_STRONG"/>Требуется ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Создание списков воспроизведения HLS и фрагментированных файлов MP4, обеспечивающих лучшее воспроизведение, чем при использовании текущего проигрывателя по умолчанию:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Изменение разрешения более плавное<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Более быстрое воспроизведение, особенно с длинными видео<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Более стабильное воспроизведение (меньше ошибок / бесконечная загрузка)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Если вы также включили поддержку WebTorrent, объем хранилища видео увеличится в 2 раза.<x id="CLOSE_PARAGRAPH"/></target> |
3766 | 3772 | ||
3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3773 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3768 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3774 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3769 | <source>HLS with P2P support enabled</source> | 3775 | <source>HLS with P2P support enabled</source> |
3770 | <target state="translated">поддержка HLS с P2P включена</target> | 3776 | <target state="translated">поддержка HLS с P2P включена</target> |
3771 | 3777 | ||
3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3773 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 3779 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
3774 | <source>Transcoding threads</source> | 3780 | <source>Transcoding threads</source> |
3775 | <target>Количество потоков для транскодирования</target> | 3781 | <target>Количество потоков для транскодирования</target> |
3776 | 3782 | ||
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3778 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3784 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3779 | <source>Resolutions to generate</source> | 3785 | <source>Resolutions to generate</source> |
3780 | <target state="translated">Разрешения для генерации видео</target> | 3786 | <target state="translated">Разрешения для генерации видео</target> |
3781 | 3787 | ||
3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3783 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3789 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3784 | <source>CACHE</source> | 3790 | <source>CACHE</source> |
3785 | <target state="translated">КЭШ</target> | 3791 | <target state="translated">КЭШ</target> |
3786 | 3792 | ||
3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3788 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3794 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3789 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3795 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3790 | <target state="translated">Некоторые файлы не объединены и извлекаются при необходимости. Определите их политики кеширования.</target> | 3796 | <target state="translated">Некоторые файлы не объединены и извлекаются при необходимости. Определите их политики кеширования.</target> |
3791 | 3797 | ||
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3793 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3799 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3794 | <source>Number of previews to keep in cache</source> | 3800 | <source>Number of previews to keep in cache</source> |
3795 | <target state="translated">Количество превью для сохранения в кеше</target> | 3801 | <target state="translated">Количество превью для сохранения в кеше</target> |
3796 | 3802 | ||
3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3798 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3804 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3799 | <context-group purpose="location"> | 3805 | |
3800 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3801 | <context context-type="linenumber">986</context> | ||
3802 | </context-group> | ||
3803 | </trans-unit> | ||
3804 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3807 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3805 | <source>Number of video captions to keep in cache</source> | 3808 | <source>Number of video captions to keep in cache</source> |
3806 | <target state="translated">Размер субтитров к видео для хранения в кеше</target> | 3809 | <target state="translated">Размер субтитров к видео для хранения в кеше</target> |
3807 | 3810 | ||
3808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3809 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3812 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3810 | <context-group purpose="location"> | 3813 | |
3811 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3812 | <context context-type="linenumber">998</context> | ||
3813 | </context-group> | ||
3814 | </trans-unit> | ||
3815 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3815 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3816 | <source>CUSTOMIZATIONS</source> | 3816 | <source>CUSTOMIZATIONS</source> |
3817 | <target state="translated">НАСТРОЙКИ</target> | 3817 | <target state="translated">НАСТРОЙКИ</target> |
3818 | 3818 | ||
3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3820 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3820 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3821 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3821 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3822 | <target state="translated">Незначительные модификации вашего экземпляра PeerTube на случай создания плагина или темы - излишни.</target> | 3822 | <target state="translated">Незначительные модификации вашего экземпляра PeerTube на случай создания плагина или темы - излишни.</target> |
3823 | 3823 | ||
3824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3825 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 3825 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
3826 | <source>JavaScript</source> | 3826 | <source>JavaScript</source> |
3827 | <target>JavaScript</target> | 3827 | <target>JavaScript</target> |
3828 | 3828 | ||
3829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3830 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3830 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3831 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3831 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3832 | <target state="translated">Написать JavaScript код напрямую.<x id="LINE_BREAK"/>Пример: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></target> | 3832 | <target state="translated">Написать JavaScript код напрямую.<x id="LINE_BREAK"/>Пример: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></target> |
3833 | 3833 | ||
3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3835 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3835 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3836 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 3836 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3837 | color: red; | 3837 | color: red; |
@@ -3842,23 +3842,23 @@ The link will expire within 1 hour.</source> | |||
3842 | <x id="CLOSE_TAG_PRE"/></source> | 3842 | <x id="CLOSE_TAG_PRE"/></source> |
3843 | <target state="translated">Напишите код CSS напрямую. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Подготовить с <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> для переопределения стилей. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3843 | <target state="translated">Напишите код CSS напрямую. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Подготовить с <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> для переопределения стилей. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3844 | 3844 | ||
3845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3846 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 3846 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
3847 | 3847 | ||
3848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3849 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 3849 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
3850 | 3850 | ||
3851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3852 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 3852 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
3853 | <source>Advanced configuration</source> | 3853 | <source>Advanced configuration</source> |
3854 | <target>Продвинутая конфигурация</target> | 3854 | <target>Продвинутая конфигурация</target> |
3855 | 3855 | ||
3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3857 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 3857 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
3858 | <source>Update configuration</source> | 3858 | <source>Update configuration</source> |
3859 | <target>Обновить конфигурацию</target> | 3859 | <target>Обновить конфигурацию</target> |
3860 | 3860 | ||
3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3862 | 3862 | ||
3863 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3863 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3864 | <source>VIDEO SETTINGS</source> | 3864 | <source>VIDEO SETTINGS</source> |
@@ -6326,7 +6326,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6326 | <source>any language</source> | 6326 | <source>any language</source> |
6327 | <target state="translated">любой язык</target> | 6327 | <target state="translated">любой язык</target> |
6328 | 6328 | ||
6329 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6329 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6330 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6330 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6331 | 6331 | ||
6332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6334,22 +6334,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6334 | <source>hide</source> | 6334 | <source>hide</source> |
6335 | <target state="translated">скрыть</target> | 6335 | <target state="translated">скрыть</target> |
6336 | 6336 | ||
6337 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6337 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6338 | <trans-unit id="8603861867909474404" datatype="html"> | 6338 | <trans-unit id="8603861867909474404" datatype="html"> |
6339 | <source>blur</source> | 6339 | <source>blur</source> |
6340 | <target state="translated">размытие</target> | 6340 | <target state="translated">размытие</target> |
6341 | 6341 | ||
6342 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6342 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6343 | <trans-unit id="4534458451100881847" datatype="html"> | 6343 | <trans-unit id="4534458451100881847" datatype="html"> |
6344 | <source>display</source> | 6344 | <source>display</source> |
6345 | <target state="translated">отображение</target> | 6345 | <target state="translated">отображение</target> |
6346 | 6346 | ||
6347 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6347 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6348 | <trans-unit id="4467323362722952678" datatype="html"> | 6348 | <trans-unit id="4467323362722952678" datatype="html"> |
6349 | <source>Unknown</source> | 6349 | <source>Unknown</source> |
6350 | <target state="translated">Неизвестно</target> | 6350 | <target state="translated">Неизвестно</target> |
6351 | 6351 | ||
6352 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6352 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6353 | <trans-unit id="8781423666414310853"> | 6353 | <trans-unit id="8781423666414310853"> |
6354 | <source>Your password has been successfully reset!</source> | 6354 | <source>Your password has been successfully reset!</source> |
6355 | <target>Ваш пароль был успешно сброшен!</target> | 6355 | <target>Ваш пароль был успешно сброшен!</target> |
@@ -7328,12 +7328,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7328 | <source>Instance languages</source> | 7328 | <source>Instance languages</source> |
7329 | <target state="translated">Языки экземпляра</target> | 7329 | <target state="translated">Языки экземпляра</target> |
7330 | 7330 | ||
7331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7332 | <trans-unit id="40119547597591062" datatype="html"> | 7332 | <trans-unit id="40119547597591062" datatype="html"> |
7333 | <source>All languages</source> | 7333 | <source>All languages</source> |
7334 | <target state="translated">Все языки</target> | 7334 | <target state="translated">Все языки</target> |
7335 | 7335 | ||
7336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7337 | <trans-unit id="996392855508119363"> | 7337 | <trans-unit id="996392855508119363"> |
7338 | <source>Hidden</source> | 7338 | <source>Hidden</source> |
7339 | <target>Скрыто</target> | 7339 | <target>Скрыто</target> |
@@ -8039,7 +8039,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8039 | <source>Only users of this instance can see this video</source> | 8039 | <source>Only users of this instance can see this video</source> |
8040 | <target state="translated">Это видео могут просматривать только пользователи этого экземпляра</target> | 8040 | <target state="translated">Это видео могут просматривать только пользователи этого экземпляра</target> |
8041 | 8041 | ||
8042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8043 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8044 | <context-group purpose="location"> | ||
8045 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8046 | <context context-type="linenumber">211</context> | ||
8047 | </context-group> | ||
8048 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8049 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8050 | <context-group purpose="location"> | ||
8051 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8052 | <context context-type="linenumber">214</context> | ||
8053 | </context-group> | ||
8054 | </trans-unit> | ||
8043 | <trans-unit id="ngb.alert.close" datatype="html"> | 8055 | <trans-unit id="ngb.alert.close" datatype="html"> |
8044 | <source>Close</source> | 8056 | <source>Close</source> |
8045 | <target state="translated">Закрыть</target> | 8057 | <target state="translated">Закрыть</target> |
diff --git a/client/src/locale/angular.sk-SK.xlf b/client/src/locale/angular.sk-SK.xlf index 7d42fd637..4633acaef 100644 --- a/client/src/locale/angular.sk-SK.xlf +++ b/client/src/locale/angular.sk-SK.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Sensitive | 540 | Sensitive |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 546 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1388,13 +1396,7 @@ The link will expire within 1 hour.</target> | |||
1388 | <target state="new">Sensitive:</target> | 1396 | <target state="new">Sensitive:</target> |
1389 | 1397 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1391 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1399 | |
1392 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1393 | <target state="new">Interface: | ||
1394 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1395 | </target> | ||
1396 | |||
1397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1398 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1400 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1399 | <source>Help share videos</source> | 1401 | <source>Help share videos</source> |
1400 | <target state="new">Help share videos</target> | 1402 | <target state="new">Help share videos</target> |
@@ -1470,7 +1472,13 @@ The link will expire within 1 hour.</target> | |||
1470 | <source>Videos</source> | 1472 | <source>Videos</source> |
1471 | <target state="new">Videos</target> | 1473 | <target state="new">Videos</target> |
1472 | 1474 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1476 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1479 | <context context-type="linenumber">171</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1474 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1482 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1475 | <source>Playlists</source> | 1483 | <source>Playlists</source> |
1476 | <target state="new">Playlists</target> | 1484 | <target state="new">Playlists</target> |
@@ -2105,12 +2113,12 @@ The link will expire within 1 hour.</target> | |||
2105 | <source>Scheduled</source> | 2113 | <source>Scheduled</source> |
2106 | <target state="new">Scheduled</target> | 2114 | <target state="new">Scheduled</target> |
2107 | 2115 | ||
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2109 | <trans-unit id="1435317307066082710" datatype="html"> | 2117 | <trans-unit id="1435317307066082710" datatype="html"> |
2110 | <source>Hide the video until a specific date</source> | 2118 | <source>Hide the video until a specific date</source> |
2111 | <target state="new">Hide the video until a specific date</target> | 2119 | <target state="new">Hide the video until a specific date</target> |
2112 | 2120 | ||
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2114 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2122 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2115 | <source>Video background image</source> | 2123 | <source>Video background image</source> |
2116 | <target state="new">Video background image</target> | 2124 | <target state="new">Video background image</target> |
@@ -2789,7 +2797,7 @@ The link will expire within 1 hour.</target> | |||
2789 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2797 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2790 | <context context-type="linenumber">8</context> | 2798 | <context context-type="linenumber">8</context> |
2791 | </context-group> | 2799 | </context-group> |
2792 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2800 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2793 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2801 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2794 | <context-group purpose="location"> | 2802 | <context-group purpose="location"> |
2795 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2803 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4432,12 +4440,18 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>Basic configuration</source> | 4440 | <source>Basic configuration</source> |
4433 | <target state="new">Basic configuration</target> | 4441 | <target state="new">Basic configuration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4444 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">700</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4436 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4450 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4437 | <source>TWITTER</source> | 4451 | <source>TWITTER</source> |
4438 | <target state="new">TWITTER</target> | 4452 | <target state="new">TWITTER</target> |
4439 | 4453 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4441 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4455 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4442 | <source> | 4456 | <source> |
4443 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4457 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4446,95 +4460,79 @@ The link will expire within 1 hour.</target> | |||
4446 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4460 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4447 | </target> | 4461 | </target> |
4448 | 4462 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4450 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4464 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4451 | <source>Your Twitter username</source> | 4465 | <source>Your Twitter username</source> |
4452 | <target state="new">Your Twitter username</target> | 4466 | <target state="new">Your Twitter username</target> |
4453 | 4467 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4455 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4469 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4456 | <source>Instance allowed by Twitter</source> | 4470 | <source>Instance allowed by Twitter</source> |
4457 | <target state="new">Instance allowed by Twitter</target> | 4471 | <target state="new">Instance allowed by Twitter</target> |
4458 | 4472 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4460 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4474 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4463 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4477 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4464 | <source>LIVE</source><target state="new">LIVE</target> | 4478 | <source>LIVE</source><target state="new">LIVE</target> |
4465 | 4479 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4467 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4481 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4468 | 4482 | ||
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4470 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4484 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4471 | 4485 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4473 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4487 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4474 | 4488 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4476 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4490 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4477 | 4491 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4479 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4493 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4480 | 4494 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4482 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4496 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4483 | <context-group purpose="location"> | 4497 | |
4484 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4485 | <context context-type="linenumber">751</context> | ||
4486 | </context-group> | ||
4487 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4488 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4499 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4489 | 4500 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4491 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4502 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4492 | <context-group purpose="location"> | 4503 | |
4493 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4494 | <context context-type="linenumber">759</context> | ||
4495 | </context-group> | ||
4496 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4497 | <source>Max live duration</source><target state="new">Max live duration</target> | 4505 | <source>Max live duration</source><target state="new">Max live duration</target> |
4498 | 4506 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4500 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4508 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4503 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4511 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4504 | 4512 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4506 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4514 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4507 | 4515 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4509 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4517 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4512 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4520 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4515 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4523 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">793</context> | ||
4519 | </context-group> | ||
4520 | <context-group purpose="location"> | ||
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4522 | <context context-type="linenumber">935</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4526 | <source>Services</source> | ||
4527 | <target state="new">Services</target> | ||
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4525 | |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4527 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4530 | <source>Live streaming</source><target state="new">Live streaming</target> | 4528 | <source>Live streaming</source><target state="new">Live streaming</target> |
4531 | 4529 | ||
4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4533 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4531 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4534 | <source>TRANSCODING</source> | 4532 | <source>TRANSCODING</source> |
4535 | <target state="new">TRANSCODING</target> | 4533 | <target state="new">TRANSCODING</target> |
4536 | 4534 | ||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4538 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4536 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4539 | <source> 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. </source> | 4537 | <source> 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. </source> |
4540 | <target state="new"> | 4538 | <target state="new"> |
@@ -4542,55 +4540,53 @@ The link will expire within 1 hour.</target> | |||
4542 | resources, this is a critical part of PeerTube, so tread carefully. | 4540 | resources, this is a critical part of PeerTube, so tread carefully. |
4543 | </target> | 4541 | </target> |
4544 | 4542 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4546 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4544 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4547 | <source>Transcoding enabled</source> | 4545 | <source>Transcoding enabled</source> |
4548 | <target state="new">Transcoding enabled</target> | 4546 | <target state="new">Transcoding enabled</target> |
4549 | 4547 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4551 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4549 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4552 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4550 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4553 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4551 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4554 | 4552 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4554 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4555 | |||
4556 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4557 | |||
4558 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4559 | <context-group purpose="location"> | ||
4560 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4561 | <context context-type="linenumber">759,763</context> | ||
4562 | </context-group> | ||
4563 | </trans-unit> | ||
4556 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4564 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4557 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4565 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4558 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4566 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4559 | 4567 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4561 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4569 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4562 | <source>Allow additional extensions</source> | 4570 | <source>Allow additional extensions</source> |
4563 | <target state="new">Allow additional extensions</target> | 4571 | <target state="new">Allow additional extensions</target> |
4564 | 4572 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4566 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4574 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4567 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4575 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4568 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4576 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4569 | 4577 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4571 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4579 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4572 | <source>Allow audio files upload</source> | 4580 | <source>Allow audio files upload</source> |
4573 | <target state="new">Allow audio files upload</target> | 4581 | <target state="new">Allow audio files upload</target> |
4574 | 4582 | ||
4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4576 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4584 | |
4577 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4578 | <target state="new"> | ||
4579 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4580 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4581 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4582 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4583 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4584 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4585 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4586 | </target> | ||
4587 | |||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4589 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4590 | <source>WebTorrent support enabled</source> | 4586 | <source>WebTorrent support enabled</source> |
4591 | <target state="new">WebTorrent support enabled</target> | 4587 | <target state="new">WebTorrent support enabled</target> |
4592 | 4588 | ||
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4594 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4595 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4596 | <target state="new"> | 4592 | <target state="new"> |
@@ -4610,27 +4606,27 @@ The link will expire within 1 hour.</target> | |||
4610 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4611 | </target> | 4607 | </target> |
4612 | 4608 | ||
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4614 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4615 | <source>HLS with P2P support enabled</source> | 4611 | <source>HLS with P2P support enabled</source> |
4616 | <target state="new">HLS with P2P support enabled</target> | 4612 | <target state="new">HLS with P2P support enabled</target> |
4617 | 4613 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4619 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4620 | <source>Transcoding threads</source> | 4616 | <source>Transcoding threads</source> |
4621 | <target state="new">Transcoding threads</target> | 4617 | <target state="new">Transcoding threads</target> |
4622 | 4618 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4624 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4625 | <source>Resolutions to generate</source> | 4621 | <source>Resolutions to generate</source> |
4626 | <target state="new">Resolutions to generate</target> | 4622 | <target state="new">Resolutions to generate</target> |
4627 | 4623 | ||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4629 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4630 | <source>CACHE</source> | 4626 | <source>CACHE</source> |
4631 | <target state="new">CACHE</target> | 4627 | <target state="new">CACHE</target> |
4632 | 4628 | ||
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4634 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4635 | <source> | 4631 | <source> |
4636 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4632 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4639,34 +4635,28 @@ The link will expire within 1 hour.</target> | |||
4639 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4635 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4640 | </target> | 4636 | </target> |
4641 | 4637 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4643 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4644 | <source>Number of previews to keep in cache</source> | 4640 | <source>Number of previews to keep in cache</source> |
4645 | <target state="new">Number of previews to keep in cache</target> | 4641 | <target state="new">Number of previews to keep in cache</target> |
4646 | 4642 | ||
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4649 | <context-group purpose="location"> | 4645 | |
4650 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4651 | <context context-type="linenumber">986</context> | ||
4652 | </context-group> | ||
4653 | </trans-unit> | ||
4654 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4647 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4655 | <source>Number of video captions to keep in cache</source> | 4648 | <source>Number of video captions to keep in cache</source> |
4656 | <target state="new">Number of video captions to keep in cache</target> | 4649 | <target state="new">Number of video captions to keep in cache</target> |
4657 | 4650 | ||
4658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4659 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4652 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4660 | <context-group purpose="location"> | 4653 | |
4661 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4662 | <context context-type="linenumber">998</context> | ||
4663 | </context-group> | ||
4664 | </trans-unit> | ||
4665 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4655 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4666 | <source>CUSTOMIZATIONS</source> | 4656 | <source>CUSTOMIZATIONS</source> |
4667 | <target state="new">CUSTOMIZATIONS</target> | 4657 | <target state="new">CUSTOMIZATIONS</target> |
4668 | 4658 | ||
4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4670 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4660 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4671 | <source> | 4661 | <source> |
4672 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4662 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4675,12 +4665,12 @@ The link will expire within 1 hour.</target> | |||
4675 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4665 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4676 | </target> | 4666 | </target> |
4677 | 4667 | ||
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4679 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4669 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4680 | <source>JavaScript</source> | 4670 | <source>JavaScript</source> |
4681 | <target state="new">JavaScript</target> | 4671 | <target state="new">JavaScript</target> |
4682 | 4672 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4684 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4674 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4685 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4675 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4686 | <target state="new"> | 4676 | <target state="new"> |
@@ -4690,7 +4680,7 @@ The link will expire within 1 hour.</target> | |||
4690 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4680 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4691 | </target> | 4681 | </target> |
4692 | 4682 | ||
4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4694 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4684 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4695 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4685 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4696 | color: red; | 4686 | color: red; |
@@ -4722,23 +4712,23 @@ The link will expire within 1 hour.</target> | |||
4722 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4712 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4723 | </target> | 4713 | </target> |
4724 | 4714 | ||
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4726 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4716 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4727 | 4717 | ||
4728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4729 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4719 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4730 | 4720 | ||
4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4732 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4722 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4733 | <source>Advanced configuration</source> | 4723 | <source>Advanced configuration</source> |
4734 | <target state="new">Advanced configuration</target> | 4724 | <target state="new">Advanced configuration</target> |
4735 | 4725 | ||
4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4737 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4727 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4738 | <source>Update configuration</source> | 4728 | <source>Update configuration</source> |
4739 | <target state="new">Update configuration</target> | 4729 | <target state="new">Update configuration</target> |
4740 | 4730 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4742 | 4732 | ||
4743 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4733 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4744 | <source>VIDEO SETTINGS</source> | 4734 | <source>VIDEO SETTINGS</source> |
@@ -7515,7 +7505,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7515 | <source>any language</source> | 7505 | <source>any language</source> |
7516 | <target state="new">any language</target> | 7506 | <target state="new">any language</target> |
7517 | 7507 | ||
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7519 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7509 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7523,22 +7513,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7523 | <source>hide</source> | 7513 | <source>hide</source> |
7524 | <target state="new">hide</target> | 7514 | <target state="new">hide</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7527 | <trans-unit id="8603861867909474404" datatype="html"> | 7517 | <trans-unit id="8603861867909474404" datatype="html"> |
7528 | <source>blur</source> | 7518 | <source>blur</source> |
7529 | <target state="new">blur</target> | 7519 | <target state="new">blur</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7532 | <trans-unit id="4534458451100881847" datatype="html"> | 7522 | <trans-unit id="4534458451100881847" datatype="html"> |
7533 | <source>display</source> | 7523 | <source>display</source> |
7534 | <target state="new">display</target> | 7524 | <target state="new">display</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7537 | <trans-unit id="4467323362722952678" datatype="html"> | 7527 | <trans-unit id="4467323362722952678" datatype="html"> |
7538 | <source>Unknown</source> | 7528 | <source>Unknown</source> |
7539 | <target state="new">Unknown</target> | 7529 | <target state="new">Unknown</target> |
7540 | 7530 | ||
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7542 | <trans-unit id="8781423666414310853" datatype="html"> | 7532 | <trans-unit id="8781423666414310853" datatype="html"> |
7543 | <source>Your password has been successfully reset!</source> | 7533 | <source>Your password has been successfully reset!</source> |
7544 | <target state="new">Your password has been successfully reset!</target> | 7534 | <target state="new">Your password has been successfully reset!</target> |
@@ -8549,13 +8539,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8549 | <source>Instance languages</source> | 8539 | <source>Instance languages</source> |
8550 | <target state="new">Instance languages</target> | 8540 | <target state="new">Instance languages</target> |
8551 | 8541 | ||
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8553 | <trans-unit id="40119547597591062" datatype="html"> | 8543 | <trans-unit id="40119547597591062" datatype="html"> |
8554 | <source>All languages</source> | 8544 | <source>All languages</source> |
8555 | <target state="new">All languages</target> | 8545 | <target state="new">All languages</target> |
8556 | 8546 | ||
8557 | 8547 | ||
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8559 | <trans-unit id="996392855508119363" datatype="html"> | 8549 | <trans-unit id="996392855508119363" datatype="html"> |
8560 | <source>Hidden</source> | 8550 | <source>Hidden</source> |
8561 | <target state="new">Hidden</target> | 8551 | <target state="new">Hidden</target> |
@@ -9330,7 +9320,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9330 | <source>Only users of this instance can see this video</source> | 9320 | <source>Only users of this instance can see this video</source> |
9331 | <target state="new">Only users of this instance can see this video</target> | 9321 | <target state="new">Only users of this instance can see this video</target> |
9332 | 9322 | ||
9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9324 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9327 | <context context-type="linenumber">211</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9330 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9333 | <context context-type="linenumber">214</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9334 | <source>Close</source><target state="new">Close</target> | 9336 | <source>Close</source><target state="new">Close</target> |
9335 | 9337 | ||
9336 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.sl-SI.xlf b/client/src/locale/angular.sl-SI.xlf index 623f52b2c..e7b86d33b 100644 --- a/client/src/locale/angular.sl-SI.xlf +++ b/client/src/locale/angular.sl-SI.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Občutljivo | 540 | Občutljivo |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target>{VAR_PLURAL, plural, =0 {Ni videoposnetkov} =1 {1 videoposnetek} other { | 546 | <target>{VAR_PLURAL, plural, =0 {Ni videoposnetkov} =1 {1 videoposnetek} other { |
@@ -1388,13 +1396,7 @@ The link will expire within 1 hour.</target> | |||
1388 | <target state="new">Sensitive:</target> | 1396 | <target state="new">Sensitive:</target> |
1389 | 1397 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1391 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1399 | |
1392 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1393 | <target state="new">Interface: | ||
1394 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1395 | </target> | ||
1396 | |||
1397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1398 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1400 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1399 | <source>Help share videos</source> | 1401 | <source>Help share videos</source> |
1400 | <target state="new">Help share videos</target> | 1402 | <target state="new">Help share videos</target> |
@@ -1470,7 +1472,13 @@ The link will expire within 1 hour.</target> | |||
1470 | <source>Videos</source> | 1472 | <source>Videos</source> |
1471 | <target>Videoposnetki</target> | 1473 | <target>Videoposnetki</target> |
1472 | 1474 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1476 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1479 | <context context-type="linenumber">171</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1474 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1482 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1475 | <source>Playlists</source> | 1483 | <source>Playlists</source> |
1476 | <target state="new">Playlists</target> | 1484 | <target state="new">Playlists</target> |
@@ -2105,12 +2113,12 @@ The link will expire within 1 hour.</target> | |||
2105 | <source>Scheduled</source> | 2113 | <source>Scheduled</source> |
2106 | <target state="new">Scheduled</target> | 2114 | <target state="new">Scheduled</target> |
2107 | 2115 | ||
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2109 | <trans-unit id="1435317307066082710" datatype="html"> | 2117 | <trans-unit id="1435317307066082710" datatype="html"> |
2110 | <source>Hide the video until a specific date</source> | 2118 | <source>Hide the video until a specific date</source> |
2111 | <target state="new">Hide the video until a specific date</target> | 2119 | <target state="new">Hide the video until a specific date</target> |
2112 | 2120 | ||
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2114 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 2122 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
2115 | <source>Video background image</source> | 2123 | <source>Video background image</source> |
2116 | <target>Ozadje videoposnetka</target> | 2124 | <target>Ozadje videoposnetka</target> |
@@ -2789,7 +2797,7 @@ The link will expire within 1 hour.</target> | |||
2789 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2797 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2790 | <context context-type="linenumber">8</context> | 2798 | <context context-type="linenumber">8</context> |
2791 | </context-group> | 2799 | </context-group> |
2792 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2800 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2793 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2801 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2794 | <context-group purpose="location"> | 2802 | <context-group purpose="location"> |
2795 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2803 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4432,12 +4440,18 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>Basic configuration</source> | 4440 | <source>Basic configuration</source> |
4433 | <target state="new">Basic configuration</target> | 4441 | <target state="new">Basic configuration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4444 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">700</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4436 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4450 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4437 | <source>TWITTER</source> | 4451 | <source>TWITTER</source> |
4438 | <target state="new">TWITTER</target> | 4452 | <target state="new">TWITTER</target> |
4439 | 4453 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4441 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4455 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4442 | <source> | 4456 | <source> |
4443 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4457 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4446,95 +4460,79 @@ The link will expire within 1 hour.</target> | |||
4446 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4460 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4447 | </target> | 4461 | </target> |
4448 | 4462 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4450 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4464 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4451 | <source>Your Twitter username</source> | 4465 | <source>Your Twitter username</source> |
4452 | <target state="new">Your Twitter username</target> | 4466 | <target state="new">Your Twitter username</target> |
4453 | 4467 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4455 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4469 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4456 | <source>Instance allowed by Twitter</source> | 4470 | <source>Instance allowed by Twitter</source> |
4457 | <target state="new">Instance allowed by Twitter</target> | 4471 | <target state="new">Instance allowed by Twitter</target> |
4458 | 4472 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4460 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4474 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4463 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4477 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4464 | <source>LIVE</source><target state="new">LIVE</target> | 4478 | <source>LIVE</source><target state="new">LIVE</target> |
4465 | 4479 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4467 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4481 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4468 | 4482 | ||
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4470 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4484 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4471 | 4485 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4473 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4487 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4474 | 4488 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4476 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4490 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4477 | 4491 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4479 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4493 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4480 | 4494 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4482 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4496 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4483 | <context-group purpose="location"> | 4497 | |
4484 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4485 | <context context-type="linenumber">751</context> | ||
4486 | </context-group> | ||
4487 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4488 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4499 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4489 | 4500 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4491 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4502 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4492 | <context-group purpose="location"> | 4503 | |
4493 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4494 | <context context-type="linenumber">759</context> | ||
4495 | </context-group> | ||
4496 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4497 | <source>Max live duration</source><target state="new">Max live duration</target> | 4505 | <source>Max live duration</source><target state="new">Max live duration</target> |
4498 | 4506 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4500 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4508 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4503 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4511 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4504 | 4512 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4506 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4514 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4507 | 4515 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4509 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4517 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4512 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4520 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4515 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4523 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">793</context> | ||
4519 | </context-group> | ||
4520 | <context-group purpose="location"> | ||
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4522 | <context context-type="linenumber">935</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4526 | <source>Services</source> | ||
4527 | <target state="new">Services</target> | ||
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4525 | |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4527 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4530 | <source>Live streaming</source><target state="new">Live streaming</target> | 4528 | <source>Live streaming</source><target state="new">Live streaming</target> |
4531 | 4529 | ||
4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4533 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4531 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4534 | <source>TRANSCODING</source> | 4532 | <source>TRANSCODING</source> |
4535 | <target state="new">TRANSCODING</target> | 4533 | <target state="new">TRANSCODING</target> |
4536 | 4534 | ||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4538 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4536 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4539 | <source> 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. </source> | 4537 | <source> 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. </source> |
4540 | <target state="new"> | 4538 | <target state="new"> |
@@ -4542,55 +4540,53 @@ The link will expire within 1 hour.</target> | |||
4542 | resources, this is a critical part of PeerTube, so tread carefully. | 4540 | resources, this is a critical part of PeerTube, so tread carefully. |
4543 | </target> | 4541 | </target> |
4544 | 4542 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4546 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4544 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4547 | <source>Transcoding enabled</source> | 4545 | <source>Transcoding enabled</source> |
4548 | <target state="new">Transcoding enabled</target> | 4546 | <target state="new">Transcoding enabled</target> |
4549 | 4547 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4551 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4549 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4552 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4550 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4553 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4551 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4554 | 4552 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4554 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4555 | |||
4556 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4557 | |||
4558 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4559 | <context-group purpose="location"> | ||
4560 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4561 | <context context-type="linenumber">759,763</context> | ||
4562 | </context-group> | ||
4563 | </trans-unit> | ||
4556 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4564 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4557 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4565 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4558 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4566 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4559 | 4567 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4561 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4569 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4562 | <source>Allow additional extensions</source> | 4570 | <source>Allow additional extensions</source> |
4563 | <target state="new">Allow additional extensions</target> | 4571 | <target state="new">Allow additional extensions</target> |
4564 | 4572 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4566 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4574 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4567 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4575 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4568 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4576 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4569 | 4577 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4571 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4579 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4572 | <source>Allow audio files upload</source> | 4580 | <source>Allow audio files upload</source> |
4573 | <target state="new">Allow audio files upload</target> | 4581 | <target state="new">Allow audio files upload</target> |
4574 | 4582 | ||
4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4576 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4584 | |
4577 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4578 | <target state="new"> | ||
4579 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4580 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4581 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4582 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4583 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4584 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4585 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4586 | </target> | ||
4587 | |||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4589 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4590 | <source>WebTorrent support enabled</source> | 4586 | <source>WebTorrent support enabled</source> |
4591 | <target state="new">WebTorrent support enabled</target> | 4587 | <target state="new">WebTorrent support enabled</target> |
4592 | 4588 | ||
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4594 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4595 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4596 | <target state="new"> | 4592 | <target state="new"> |
@@ -4610,27 +4606,27 @@ The link will expire within 1 hour.</target> | |||
4610 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4611 | </target> | 4607 | </target> |
4612 | 4608 | ||
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4614 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4615 | <source>HLS with P2P support enabled</source> | 4611 | <source>HLS with P2P support enabled</source> |
4616 | <target state="new">HLS with P2P support enabled</target> | 4612 | <target state="new">HLS with P2P support enabled</target> |
4617 | 4613 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4619 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4620 | <source>Transcoding threads</source> | 4616 | <source>Transcoding threads</source> |
4621 | <target state="new">Transcoding threads</target> | 4617 | <target state="new">Transcoding threads</target> |
4622 | 4618 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4624 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4625 | <source>Resolutions to generate</source> | 4621 | <source>Resolutions to generate</source> |
4626 | <target state="new">Resolutions to generate</target> | 4622 | <target state="new">Resolutions to generate</target> |
4627 | 4623 | ||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4629 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4630 | <source>CACHE</source> | 4626 | <source>CACHE</source> |
4631 | <target state="new">CACHE</target> | 4627 | <target state="new">CACHE</target> |
4632 | 4628 | ||
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4634 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4635 | <source> | 4631 | <source> |
4636 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4632 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4639,34 +4635,28 @@ The link will expire within 1 hour.</target> | |||
4639 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4635 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4640 | </target> | 4636 | </target> |
4641 | 4637 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4643 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4644 | <source>Number of previews to keep in cache</source> | 4640 | <source>Number of previews to keep in cache</source> |
4645 | <target state="new">Number of previews to keep in cache</target> | 4641 | <target state="new">Number of previews to keep in cache</target> |
4646 | 4642 | ||
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4649 | <context-group purpose="location"> | 4645 | |
4650 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4651 | <context context-type="linenumber">986</context> | ||
4652 | </context-group> | ||
4653 | </trans-unit> | ||
4654 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4647 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4655 | <source>Number of video captions to keep in cache</source> | 4648 | <source>Number of video captions to keep in cache</source> |
4656 | <target state="new">Number of video captions to keep in cache</target> | 4649 | <target state="new">Number of video captions to keep in cache</target> |
4657 | 4650 | ||
4658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4659 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4652 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4660 | <context-group purpose="location"> | 4653 | |
4661 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4662 | <context context-type="linenumber">998</context> | ||
4663 | </context-group> | ||
4664 | </trans-unit> | ||
4665 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4655 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4666 | <source>CUSTOMIZATIONS</source> | 4656 | <source>CUSTOMIZATIONS</source> |
4667 | <target state="new">CUSTOMIZATIONS</target> | 4657 | <target state="new">CUSTOMIZATIONS</target> |
4668 | 4658 | ||
4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4670 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4660 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4671 | <source> | 4661 | <source> |
4672 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4662 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4675,12 +4665,12 @@ The link will expire within 1 hour.</target> | |||
4675 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4665 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4676 | </target> | 4666 | </target> |
4677 | 4667 | ||
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4679 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4669 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4680 | <source>JavaScript</source> | 4670 | <source>JavaScript</source> |
4681 | <target state="new">JavaScript</target> | 4671 | <target state="new">JavaScript</target> |
4682 | 4672 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4684 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4674 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4685 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4675 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4686 | <target state="new"> | 4676 | <target state="new"> |
@@ -4690,7 +4680,7 @@ The link will expire within 1 hour.</target> | |||
4690 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4680 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4691 | </target> | 4681 | </target> |
4692 | 4682 | ||
4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4694 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4684 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4695 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4685 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4696 | color: red; | 4686 | color: red; |
@@ -4722,23 +4712,23 @@ The link will expire within 1 hour.</target> | |||
4722 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4712 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4723 | </target> | 4713 | </target> |
4724 | 4714 | ||
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4726 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4716 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4727 | 4717 | ||
4728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4729 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4719 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4730 | 4720 | ||
4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4732 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4722 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4733 | <source>Advanced configuration</source> | 4723 | <source>Advanced configuration</source> |
4734 | <target state="new">Advanced configuration</target> | 4724 | <target state="new">Advanced configuration</target> |
4735 | 4725 | ||
4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4737 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4727 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4738 | <source>Update configuration</source> | 4728 | <source>Update configuration</source> |
4739 | <target state="new">Update configuration</target> | 4729 | <target state="new">Update configuration</target> |
4740 | 4730 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4742 | 4732 | ||
4743 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4733 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4744 | <source>VIDEO SETTINGS</source> | 4734 | <source>VIDEO SETTINGS</source> |
@@ -7515,7 +7505,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7515 | <source>any language</source> | 7505 | <source>any language</source> |
7516 | <target state="new">any language</target> | 7506 | <target state="new">any language</target> |
7517 | 7507 | ||
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7519 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7509 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7523,22 +7513,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7523 | <source>hide</source> | 7513 | <source>hide</source> |
7524 | <target state="new">hide</target> | 7514 | <target state="new">hide</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7527 | <trans-unit id="8603861867909474404" datatype="html"> | 7517 | <trans-unit id="8603861867909474404" datatype="html"> |
7528 | <source>blur</source> | 7518 | <source>blur</source> |
7529 | <target state="new">blur</target> | 7519 | <target state="new">blur</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7532 | <trans-unit id="4534458451100881847" datatype="html"> | 7522 | <trans-unit id="4534458451100881847" datatype="html"> |
7533 | <source>display</source> | 7523 | <source>display</source> |
7534 | <target state="new">display</target> | 7524 | <target state="new">display</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7537 | <trans-unit id="4467323362722952678" datatype="html"> | 7527 | <trans-unit id="4467323362722952678" datatype="html"> |
7538 | <source>Unknown</source> | 7528 | <source>Unknown</source> |
7539 | <target state="new">Unknown</target> | 7529 | <target state="new">Unknown</target> |
7540 | 7530 | ||
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7542 | <trans-unit id="8781423666414310853" datatype="html"> | 7532 | <trans-unit id="8781423666414310853" datatype="html"> |
7543 | <source>Your password has been successfully reset!</source> | 7533 | <source>Your password has been successfully reset!</source> |
7544 | <target state="new">Your password has been successfully reset!</target> | 7534 | <target state="new">Your password has been successfully reset!</target> |
@@ -8549,13 +8539,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8549 | <source>Instance languages</source> | 8539 | <source>Instance languages</source> |
8550 | <target state="new">Instance languages</target> | 8540 | <target state="new">Instance languages</target> |
8551 | 8541 | ||
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8553 | <trans-unit id="40119547597591062" datatype="html"> | 8543 | <trans-unit id="40119547597591062" datatype="html"> |
8554 | <source>All languages</source> | 8544 | <source>All languages</source> |
8555 | <target state="new">All languages</target> | 8545 | <target state="new">All languages</target> |
8556 | 8546 | ||
8557 | 8547 | ||
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8559 | <trans-unit id="996392855508119363" datatype="html"> | 8549 | <trans-unit id="996392855508119363" datatype="html"> |
8560 | <source>Hidden</source> | 8550 | <source>Hidden</source> |
8561 | <target state="new">Hidden</target> | 8551 | <target state="new">Hidden</target> |
@@ -9330,7 +9320,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9330 | <source>Only users of this instance can see this video</source> | 9320 | <source>Only users of this instance can see this video</source> |
9331 | <target state="new">Only users of this instance can see this video</target> | 9321 | <target state="new">Only users of this instance can see this video</target> |
9332 | 9322 | ||
9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9324 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9327 | <context context-type="linenumber">211</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9330 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9333 | <context context-type="linenumber">214</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9334 | <source>Close</source><target state="new">Close</target> | 9336 | <source>Close</source><target state="new">Close</target> |
9335 | 9337 | ||
9336 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.sv-SE.xlf b/client/src/locale/angular.sv-SE.xlf index a0a276953..2bb86bb56 100644 --- a/client/src/locale/angular.sv-SE.xlf +++ b/client/src/locale/angular.sv-SE.xlf | |||
@@ -310,19 +310,27 @@ | |||
310 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 310 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
311 | <target state="translated">{VAR_PLURAL, plural, =1 {1 visning} other {<x id="INTERPOLATION"/> visningar}}</target> | 311 | <target state="translated">{VAR_PLURAL, plural, =1 {1 visning} other {<x id="INTERPOLATION"/> visningar}}</target> |
312 | 312 | ||
313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
314 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
315 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
316 | "/> </target> | ||
317 | <context-group purpose="location"> | ||
318 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
319 | <context context-type="linenumber">32,33</context> | ||
320 | </context-group> | ||
321 | </trans-unit> | ||
314 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 322 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
315 | <source>Blocked</source> | 323 | <source>Blocked</source> |
316 | <target state="translated">Blockerad</target> | 324 | <target state="translated">Blockerad</target> |
317 | 325 | ||
318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 326 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
319 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 327 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
320 | <source>Sensitive</source> | 328 | <source>Sensitive</source> |
321 | <target> | 329 | <target> |
322 | Känsligt | 330 | Känsligt |
323 | </target> | 331 | </target> |
324 | 332 | ||
325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
326 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 334 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
327 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 335 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
328 | <target>{VAR_PLURAL, plural, =0 {Inga videor} =1 {1 video} other {<x id="INTERPOLATION"/> videor}}</target> | 336 | <target>{VAR_PLURAL, plural, =0 {Inga videor} =1 {1 video} other {<x id="INTERPOLATION"/> videor}}</target> |
@@ -1013,11 +1021,7 @@ The link will expire within 1 hour.</source> | |||
1013 | <target state="translated">Känsligt:</target> | 1021 | <target state="translated">Känsligt:</target> |
1014 | 1022 | ||
1015 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1023 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1016 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1024 | |
1017 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1018 | <target state="translated">Gränssnitt: <x id="INTERPOLATION"/></target> | ||
1019 | |||
1020 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1021 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1025 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1022 | <source>Help share videos</source> | 1026 | <source>Help share videos</source> |
1023 | <target state="translated">Hjälp till att sprida videor</target> | 1027 | <target state="translated">Hjälp till att sprida videor</target> |
@@ -1101,7 +1105,13 @@ The link will expire within 1 hour.</source> | |||
1101 | <source>Videos</source> | 1105 | <source>Videos</source> |
1102 | <target>Videor</target> | 1106 | <target>Videor</target> |
1103 | 1107 | ||
1104 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1108 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1109 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1110 | <context-group purpose="location"> | ||
1111 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1112 | <context context-type="linenumber">171</context> | ||
1113 | </context-group> | ||
1114 | </trans-unit> | ||
1105 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1115 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1106 | <source>Playlists</source> | 1116 | <source>Playlists</source> |
1107 | <target>Spellistor</target> | 1117 | <target>Spellistor</target> |
@@ -1653,12 +1663,12 @@ The link will expire within 1 hour.</source> | |||
1653 | <source>Scheduled</source> | 1663 | <source>Scheduled</source> |
1654 | <target>Schemalagd</target> | 1664 | <target>Schemalagd</target> |
1655 | 1665 | ||
1656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1657 | <trans-unit id="1435317307066082710" datatype="html"> | 1667 | <trans-unit id="1435317307066082710" datatype="html"> |
1658 | <source>Hide the video until a specific date</source> | 1668 | <source>Hide the video until a specific date</source> |
1659 | <target state="translated">Dölj videon fram till ett datum</target> | 1669 | <target state="translated">Dölj videon fram till ett datum</target> |
1660 | 1670 | ||
1661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1662 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 1672 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
1663 | <source>Video background image</source> | 1673 | <source>Video background image</source> |
1664 | <target>Videons bakgrundsbild</target> | 1674 | <target>Videons bakgrundsbild</target> |
@@ -2295,7 +2305,7 @@ The link will expire within 1 hour.</source> | |||
2295 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2305 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2296 | <context context-type="linenumber">8</context> | 2306 | <context context-type="linenumber">8</context> |
2297 | </context-group> | 2307 | </context-group> |
2298 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2308 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2299 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2309 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2300 | <context-group purpose="location"> | 2310 | <context-group purpose="location"> |
2301 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2311 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3691,251 +3701,241 @@ The link will expire within 1 hour.</source> | |||
3691 | <source>Basic configuration</source> | 3701 | <source>Basic configuration</source> |
3692 | <target>Grundläggande inställningar</target> | 3702 | <target>Grundläggande inställningar</target> |
3693 | 3703 | ||
3694 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3705 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3706 | <context-group purpose="location"> | ||
3707 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3708 | <context context-type="linenumber">700</context> | ||
3709 | </context-group> | ||
3710 | </trans-unit> | ||
3695 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3711 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3696 | <source>TWITTER</source> | 3712 | <source>TWITTER</source> |
3697 | <target state="translated">TWITTER</target> | 3713 | <target state="translated">TWITTER</target> |
3698 | 3714 | ||
3699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3700 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3716 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3701 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3717 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3702 | <target state="translated">Valfritt. Om du har ett Twitter-konto som representerar din instans, kan du ange det för att förbättra förhandsvisningar av videolänkar.</target> | 3718 | <target state="translated">Valfritt. Om du har ett Twitter-konto som representerar din instans, kan du ange det för att förbättra förhandsvisningar av videolänkar.</target> |
3703 | 3719 | ||
3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 3720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3705 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 3721 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
3706 | <source>Your Twitter username</source> | 3722 | <source>Your Twitter username</source> |
3707 | <target>Ditt användarnamn på Twitter</target> | 3723 | <target>Ditt användarnamn på Twitter</target> |
3708 | 3724 | ||
3709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 3725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3710 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 3726 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3711 | <source>Instance allowed by Twitter</source> | 3727 | <source>Instance allowed by Twitter</source> |
3712 | <target state="translated">Instans godkänd av Twitter</target> | 3728 | <target state="translated">Instans godkänd av Twitter</target> |
3713 | 3729 | ||
3714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit> | 3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit> |
3715 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 3731 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3716 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | 3732 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> |
3717 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 3733 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
3718 | 3734 | ||
3719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 3735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
3720 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 3736 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
3721 | <source>LIVE</source> | 3737 | <source>LIVE</source> |
3722 | <target state="translated">DIREKT</target> | 3738 | <target state="translated">DIREKT</target> |
3723 | 3739 | ||
3724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit> | 3740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit> |
3725 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 3741 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
3726 | <source>Enable users of your instance to stream live.</source> | 3742 | <source>Enable users of your instance to stream live.</source> |
3727 | <target state="translated">Låt dina användare skapa direktsändningar.</target> | 3743 | <target state="translated">Låt dina användare skapa direktsändningar.</target> |
3728 | 3744 | ||
3729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit> | 3745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit> |
3730 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 3746 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
3731 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 3747 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
3732 | <target state="translated">⚠️ Att tillåta direktsändningar kräver tillit till användarna och ytterligare modereringsarbete</target> | 3748 | <target state="translated">⚠️ Att tillåta direktsändningar kräver tillit till användarna och ytterligare modereringsarbete</target> |
3733 | 3749 | ||
3734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit> | 3750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit> |
3735 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 3751 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
3736 | <source>Allow your users to automatically publish a replay of their live</source> | 3752 | <source>Allow your users to automatically publish a replay of their live</source> |
3737 | <target state="translated">Låt dina användare automatiskt publicera en repris av sändningen</target> | 3753 | <target state="translated">Låt dina användare automatiskt publicera en repris av sändningen</target> |
3738 | 3754 | ||
3739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit> | 3755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit> |
3740 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 3756 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
3741 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 3757 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
3742 | <target state="translated">Om användarkvoten uppnås kommer PeerTube bryta direktsändningen automatiskt</target> | 3758 | <target state="translated">Om användarkvoten uppnås kommer PeerTube bryta direktsändningen automatiskt</target> |
3743 | 3759 | ||
3744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit> | 3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit> |
3745 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 3761 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
3746 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 3762 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
3747 | <target state="translated">Maximalt antal sändningar skapade på din instans (-1 för ”obegränsat”)</target> | 3763 | <target state="translated">Maximalt antal sändningar skapade på din instans (-1 för ”obegränsat”)</target> |
3748 | 3764 | ||
3749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 3765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
3750 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3766 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3751 | <context-group purpose="location"> | 3767 | |
3752 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit> |
3753 | <context context-type="linenumber">751</context> | ||
3754 | </context-group> | ||
3755 | </trans-unit> | ||
3756 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 3769 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
3757 | <source>Max lives created per user (-1 for "unlimited")</source> | 3770 | <source>Max lives created per user (-1 for "unlimited")</source> |
3758 | <target state="translated">Maximalt antal sändningar skapade per användare (-1 för ”obegränsat”)</target> | 3771 | <target state="translated">Maximalt antal sändningar skapade per användare (-1 för ”obegränsat”)</target> |
3759 | 3772 | ||
3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 3773 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
3761 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 3774 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
3762 | <context-group purpose="location"> | 3775 | |
3763 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit> |
3764 | <context context-type="linenumber">759</context> | ||
3765 | </context-group> | ||
3766 | </trans-unit> | ||
3767 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 3777 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
3768 | <source>Max live duration</source> | 3778 | <source>Max live duration</source> |
3769 | <target state="translated">Maximal sändningslängd</target> | 3779 | <target state="translated">Maximal sändningslängd</target> |
3770 | 3780 | ||
3771 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit> | 3781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit> |
3772 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 3782 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
3773 | <source>Enable live transcoding</source> | 3783 | <source>Enable live transcoding</source> |
3774 | <target state="translated">Aktivera omkodning av direktsändningar</target> | 3784 | <target state="translated">Aktivera omkodning av direktsändningar</target> |
3775 | 3785 | ||
3776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit> | 3786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit> |
3777 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 3787 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
3778 | <source>Requires a lot of CPU!</source> | 3788 | <source>Requires a lot of CPU!</source> |
3779 | <target state="translated">Kräver mycket hög processorkapacitet!</target> | 3789 | <target state="translated">Kräver mycket hög processorkapacitet!</target> |
3780 | 3790 | ||
3781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit> | 3791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit> |
3782 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 3792 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
3783 | <source>Live transcoding threads</source> | 3793 | <source>Live transcoding threads</source> |
3784 | <target state="translated">Trådar för omkodning av direktsändningar</target> | 3794 | <target state="translated">Trådar för omkodning av direktsändningar</target> |
3785 | 3795 | ||
3786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit> | 3796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit> |
3787 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 3797 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
3788 | <source>Live resolutions to generate</source> | 3798 | <source>Live resolutions to generate</source> |
3789 | <target state="translated">Upplösningar för direktsändning</target> | 3799 | <target state="translated">Upplösningar för direktsändning</target> |
3790 | 3800 | ||
3791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit> | 3801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit> |
3792 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 3802 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
3793 | <source>Allow live streaming</source> | 3803 | <source>Allow live streaming</source> |
3794 | <target state="translated">Tillåt direktsändningar</target> | 3804 | <target state="translated">Tillåt direktsändningar</target> |
3795 | 3805 | ||
3796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 3806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
3797 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 3807 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
3798 | <context-group purpose="location"> | ||
3799 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3800 | <context context-type="linenumber">793</context> | ||
3801 | </context-group> | ||
3802 | <context-group purpose="location"> | ||
3803 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3804 | <context context-type="linenumber">935</context> | ||
3805 | </context-group> | ||
3806 | </trans-unit> | ||
3807 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
3808 | <source>Services</source> | ||
3809 | <target>Tjänster</target> | ||
3810 | 3808 | ||
3811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> | 3809 | |
3810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
3811 | |||
3812 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 3812 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
3813 | <source>Live streaming</source> | 3813 | <source>Live streaming</source> |
3814 | <target state="translated">Direktsändning</target> | 3814 | <target state="translated">Direktsändning</target> |
3815 | 3815 | ||
3816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 3816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
3817 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 3817 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
3818 | <source>TRANSCODING</source> | 3818 | <source>TRANSCODING</source> |
3819 | <target state="translated">OMKODNING</target> | 3819 | <target state="translated">OMKODNING</target> |
3820 | 3820 | ||
3821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 3821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
3822 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 3822 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
3823 | <source>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.</source> | 3823 | <source>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.</source> |
3824 | <target state="translated">Behandla uppladdade videor till ett format som går att strömma från vilken apparat som helst. Det är dock mycket resurskrävande av servern och en mycket viktig del av PeerTube, så gå varsamt.</target> | 3824 | <target state="translated">Behandla uppladdade videor till ett format som går att strömma från vilken apparat som helst. Det är dock mycket resurskrävande av servern och en mycket viktig del av PeerTube, så gå varsamt.</target> |
3825 | 3825 | ||
3826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 3826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
3827 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 3827 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
3828 | <source>Transcoding enabled</source> | 3828 | <source>Transcoding enabled</source> |
3829 | <target>Omkodning aktiverad</target> | 3829 | <target>Omkodning aktiverad</target> |
3830 | 3830 | ||
3831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 3831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
3832 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 3832 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
3833 | <source>If you disable transcoding, many videos from your users will not work!</source> | 3833 | <source>If you disable transcoding, many videos from your users will not work!</source> |
3834 | <target>Om du avaktiverar omkodning, kommer många av dina användares videor inte fungera!</target> | 3834 | <target>Om du avaktiverar omkodning, kommer många av dina användares videor inte fungera!</target> |
3835 | 3835 | ||
3836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 3836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
3837 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3838 | |||
3839 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
3840 | |||
3841 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
3842 | <context-group purpose="location"> | ||
3843 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3844 | <context context-type="linenumber">759,763</context> | ||
3845 | </context-group> | ||
3846 | </trans-unit> | ||
3837 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 3847 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
3838 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 3848 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
3839 | <target state="translated">Låt användare ladda upp videor i följande format: mkv, mov, avi, wmv, flv, f4v, 3g2, 3gp, mts, m2ts, mxf och nut.</target> | 3849 | <target state="translated">Låt användare ladda upp videor i följande format: mkv, mov, avi, wmv, flv, f4v, 3g2, 3gp, mts, m2ts, mxf och nut.</target> |
3840 | 3850 | ||
3841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 3851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
3842 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 3852 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
3843 | <source>Allow additional extensions</source> | 3853 | <source>Allow additional extensions</source> |
3844 | <target>Tillåt ytterligare filändelser</target> | 3854 | <target>Tillåt ytterligare filändelser</target> |
3845 | 3855 | ||
3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
3847 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 3857 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
3848 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 3858 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
3849 | <target state="translated">Låt användare ladda upp ljudfiler som slås ihop med förhandsgranskningens bild till en video.</target> | 3859 | <target state="translated">Låt användare ladda upp ljudfiler som slås ihop med förhandsgranskningens bild till en video.</target> |
3850 | 3860 | ||
3851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
3852 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 3862 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
3853 | <source>Allow audio files upload</source> | 3863 | <source>Allow audio files upload</source> |
3854 | <target>Tillåt uppladdning av ljudfiler</target> | 3864 | <target>Tillåt uppladdning av ljudfiler</target> |
3855 | 3865 | ||
3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
3857 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 3867 | |
3858 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
3859 | <target state="translated"><x id="START_TAG_STRONG"/>Experimentellt, vi råder dig att behålla webtorrent-stödet ett tag till<x id="CLOSE_TAG_STRONG"/> <x id="START_PARAGRAPH"/>Om du även har HLS aktiverat kommer videorna kräva dubbelt så mycket lagringsutrymme<x id="CLOSE_PARAGRAPH"/> <x id="LINE_BREAK"/> <x id="START_TAG_STRONG"/>Utan webtorrent kan du inte federera med PeerTube-instanser med lägre versionsnummer än 2.1<x id="CLOSE_TAG_STRONG"/></target> | ||
3860 | |||
3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
3862 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 3868 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
3863 | <source>WebTorrent support enabled</source> | 3869 | <source>WebTorrent support enabled</source> |
3864 | <target state="translated">WebTorrent-stöd påslaget</target> | 3870 | <target state="translated">WebTorrent-stöd påslaget</target> |
3865 | 3871 | ||
3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 3872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
3867 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3873 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3868 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3874 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3869 | <target state="translated"><x id="START_TAG_STRONG"/>Kräver minst version 4.1<x id="CLOSE_TAG_STRONG"/> av ffmpeg <x id="START_PARAGRAPH"/>Skapa en HLS-spellista och fragmenterade mp4-filer för bättre uppspelning än med den nuvarande standardspelaren:<x id="CLOSE_PARAGRAPH"/> <x id="START_UNORDERED_LIST"/> <x id="START_LIST_ITEM"/>Mjukare byten mellan upplösningar<x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Snabbare uppspelningar, särskilt för långa videor<x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Stabilare uppspelning (färre buggar samt obegränsad buffert)<x id="CLOSE_LIST_ITEM"/> <x id="CLOSE_UNORDERED_LIST"/> <x id="START_PARAGRAPH"/>Om du även stöder WebTorrent kommer varje video kräva dubbelt så mycket lagringsutryme<x id="CLOSE_PARAGRAPH"/></target> | 3875 | <target state="translated"><x id="START_TAG_STRONG"/>Kräver minst version 4.1<x id="CLOSE_TAG_STRONG"/> av ffmpeg <x id="START_PARAGRAPH"/>Skapa en HLS-spellista och fragmenterade mp4-filer för bättre uppspelning än med den nuvarande standardspelaren:<x id="CLOSE_PARAGRAPH"/> <x id="START_UNORDERED_LIST"/> <x id="START_LIST_ITEM"/>Mjukare byten mellan upplösningar<x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Snabbare uppspelningar, särskilt för långa videor<x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Stabilare uppspelning (färre buggar samt obegränsad buffert)<x id="CLOSE_LIST_ITEM"/> <x id="CLOSE_UNORDERED_LIST"/> <x id="START_PARAGRAPH"/>Om du även stöder WebTorrent kommer varje video kräva dubbelt så mycket lagringsutryme<x id="CLOSE_PARAGRAPH"/></target> |
3870 | 3876 | ||
3871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 3877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
3872 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3878 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
3873 | <source>HLS with P2P support enabled</source> | 3879 | <source>HLS with P2P support enabled</source> |
3874 | <target state="translated">HLS med P2P-stöd är aktiverat</target> | 3880 | <target state="translated">HLS med P2P-stöd är aktiverat</target> |
3875 | 3881 | ||
3876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 3882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
3877 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 3883 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
3878 | <source>Transcoding threads</source> | 3884 | <source>Transcoding threads</source> |
3879 | <target>Omkodningstrådar</target> | 3885 | <target>Omkodningstrådar</target> |
3880 | 3886 | ||
3881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 3887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
3882 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 3888 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
3883 | <source>Resolutions to generate</source> | 3889 | <source>Resolutions to generate</source> |
3884 | <target state="translated">Upplösningar som ska genereras</target> | 3890 | <target state="translated">Upplösningar som ska genereras</target> |
3885 | 3891 | ||
3886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 3892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
3887 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 3893 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
3888 | <source>CACHE</source> | 3894 | <source>CACHE</source> |
3889 | <target state="translated">CACHE</target> | 3895 | <target state="translated">CACHE</target> |
3890 | 3896 | ||
3891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 3897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
3892 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 3898 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
3893 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 3899 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
3894 | <target state="translated">Vissa filer federeras inte utan hämtas när så krävs. Ange deras cache-policy här.</target> | 3900 | <target state="translated">Vissa filer federeras inte utan hämtas när så krävs. Ange deras cache-policy här.</target> |
3895 | 3901 | ||
3896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 3902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
3897 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 3903 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
3898 | <source>Number of previews to keep in cache</source> | 3904 | <source>Number of previews to keep in cache</source> |
3899 | <target state="translated">Antal förhandsvisningar som sparas i cachen</target> | 3905 | <target state="translated">Antal förhandsvisningar som sparas i cachen</target> |
3900 | 3906 | ||
3901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 3907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
3902 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3908 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3903 | <context-group purpose="location"> | 3909 | |
3904 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
3905 | <context context-type="linenumber">986</context> | ||
3906 | </context-group> | ||
3907 | </trans-unit> | ||
3908 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 3911 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
3909 | <source>Number of video captions to keep in cache</source> | 3912 | <source>Number of video captions to keep in cache</source> |
3910 | <target state="translated">Antal textningar som sparas i cachen</target> | 3913 | <target state="translated">Antal textningar som sparas i cachen</target> |
3911 | 3914 | ||
3912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 3915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
3913 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 3916 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
3914 | <context-group purpose="location"> | 3917 | |
3915 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 3918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
3916 | <context context-type="linenumber">998</context> | ||
3917 | </context-group> | ||
3918 | </trans-unit> | ||
3919 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 3919 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
3920 | <source>CUSTOMIZATIONS</source> | 3920 | <source>CUSTOMIZATIONS</source> |
3921 | <target state="translated">ANPASSNINGAR</target> | 3921 | <target state="translated">ANPASSNINGAR</target> |
3922 | 3922 | ||
3923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 3923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
3924 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 3924 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
3925 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 3925 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
3926 | <target state="translated">Att göra mindre ändringar av PeerTube med ett tillägg eller tema är onödigt bekymmer.</target> | 3926 | <target state="translated">Att göra mindre ändringar av PeerTube med ett tillägg eller tema är onödigt bekymmer.</target> |
3927 | 3927 | ||
3928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 3928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
3929 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 3929 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
3930 | <source>JavaScript</source> | 3930 | <source>JavaScript</source> |
3931 | <target>JavaScript</target> | 3931 | <target>JavaScript</target> |
3932 | 3932 | ||
3933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 3933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
3934 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 3934 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
3935 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 3935 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
3936 | <target state="translated">Skriv ditt JavaScript här. <x id="LINE_BREAK"/>Exempel: <x id="START_TAG_PRE"/>console.log('min instans är fantastisk'); <x id="CLOSE_TAG_PRE"/></target> | 3936 | <target state="translated">Skriv ditt JavaScript här. <x id="LINE_BREAK"/>Exempel: <x id="START_TAG_PRE"/>console.log('min instans är fantastisk'); <x id="CLOSE_TAG_PRE"/></target> |
3937 | 3937 | ||
3938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 3938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
3939 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3939 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3940 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 3940 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3941 | color: red; | 3941 | color: red; |
@@ -3946,27 +3946,27 @@ The link will expire within 1 hour.</source> | |||
3946 | <x id="CLOSE_TAG_PRE"/></source> | 3946 | <x id="CLOSE_TAG_PRE"/></source> |
3947 | <target state="translated">Skriv din CSS-kod här. Exempel:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Föregå med <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> för att skriva över standardutseendet. Exempel:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3947 | <target state="translated">Skriv din CSS-kod här. Exempel:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Föregå med <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> för att skriva över standardutseendet. Exempel:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3948 | 3948 | ||
3949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit> | 3949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit> |
3950 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 3950 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
3951 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | 3951 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> |
3952 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 3952 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
3953 | 3953 | ||
3954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit> | 3954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit> |
3955 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 3955 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
3956 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 3956 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
3957 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 3957 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
3958 | 3958 | ||
3959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 3959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
3960 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 3960 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
3961 | <source>Advanced configuration</source> | 3961 | <source>Advanced configuration</source> |
3962 | <target>Avancerade inställningar</target> | 3962 | <target>Avancerade inställningar</target> |
3963 | 3963 | ||
3964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 3964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
3965 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 3965 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
3966 | <source>Update configuration</source> | 3966 | <source>Update configuration</source> |
3967 | <target>Uppdatera inställningar</target> | 3967 | <target>Uppdatera inställningar</target> |
3968 | 3968 | ||
3969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 3969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
3970 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 3970 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
3971 | <source>VIDEO SETTINGS</source> | 3971 | <source>VIDEO SETTINGS</source> |
3972 | <target state="translated">VIDEOINSTÄLLNINGAR</target> | 3972 | <target state="translated">VIDEOINSTÄLLNINGAR</target> |
@@ -6471,7 +6471,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6471 | <source>any language</source> | 6471 | <source>any language</source> |
6472 | <target state="translated">vilket språk som helst</target> | 6472 | <target state="translated">vilket språk som helst</target> |
6473 | 6473 | ||
6474 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6474 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6475 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6475 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6476 | 6476 | ||
6477 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6477 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6479,22 +6479,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6479 | <source>hide</source> | 6479 | <source>hide</source> |
6480 | <target state="translated">dölj</target> | 6480 | <target state="translated">dölj</target> |
6481 | 6481 | ||
6482 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6482 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6483 | <trans-unit id="8603861867909474404" datatype="html"> | 6483 | <trans-unit id="8603861867909474404" datatype="html"> |
6484 | <source>blur</source> | 6484 | <source>blur</source> |
6485 | <target state="translated">gör suddig</target> | 6485 | <target state="translated">gör suddig</target> |
6486 | 6486 | ||
6487 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6487 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6488 | <trans-unit id="4534458451100881847" datatype="html"> | 6488 | <trans-unit id="4534458451100881847" datatype="html"> |
6489 | <source>display</source> | 6489 | <source>display</source> |
6490 | <target state="translated">visa</target> | 6490 | <target state="translated">visa</target> |
6491 | 6491 | ||
6492 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6492 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6493 | <trans-unit id="4467323362722952678" datatype="html"> | 6493 | <trans-unit id="4467323362722952678" datatype="html"> |
6494 | <source>Unknown</source> | 6494 | <source>Unknown</source> |
6495 | <target state="translated">Okänd</target> | 6495 | <target state="translated">Okänd</target> |
6496 | 6496 | ||
6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6498 | <trans-unit id="8781423666414310853"> | 6498 | <trans-unit id="8781423666414310853"> |
6499 | <source>Your password has been successfully reset!</source> | 6499 | <source>Your password has been successfully reset!</source> |
6500 | <target>Ditt lösenord har återställts!</target> | 6500 | <target>Ditt lösenord har återställts!</target> |
@@ -7483,12 +7483,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7483 | <source>Instance languages</source> | 7483 | <source>Instance languages</source> |
7484 | <target state="translated">Instansens språk</target> | 7484 | <target state="translated">Instansens språk</target> |
7485 | 7485 | ||
7486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7487 | <trans-unit id="40119547597591062" datatype="html"> | 7487 | <trans-unit id="40119547597591062" datatype="html"> |
7488 | <source>All languages</source> | 7488 | <source>All languages</source> |
7489 | <target state="translated">Alla språk</target> | 7489 | <target state="translated">Alla språk</target> |
7490 | 7490 | ||
7491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7492 | <trans-unit id="996392855508119363"> | 7492 | <trans-unit id="996392855508119363"> |
7493 | <source>Hidden</source> | 7493 | <source>Hidden</source> |
7494 | <target>Dold</target> | 7494 | <target>Dold</target> |
@@ -8218,7 +8218,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8218 | <source>Only users of this instance can see this video</source> | 8218 | <source>Only users of this instance can see this video</source> |
8219 | <target state="translated">Den här videon kan endast ses av användare på den här instansen</target> | 8219 | <target state="translated">Den här videon kan endast ses av användare på den här instansen</target> |
8220 | 8220 | ||
8221 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8221 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8222 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8223 | <context-group purpose="location"> | ||
8224 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8225 | <context context-type="linenumber">211</context> | ||
8226 | </context-group> | ||
8227 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8228 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8229 | <context-group purpose="location"> | ||
8230 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8231 | <context context-type="linenumber">214</context> | ||
8232 | </context-group> | ||
8233 | </trans-unit> | ||
8222 | <trans-unit id="ngb.alert.close" datatype="html"> | 8234 | <trans-unit id="ngb.alert.close" datatype="html"> |
8223 | <source>Close</source> | 8235 | <source>Close</source> |
8224 | <target state="translated">Stäng</target> | 8236 | <target state="translated">Stäng</target> |
diff --git a/client/src/locale/angular.ta.xlf b/client/src/locale/angular.ta.xlf index f395581ad..59e8cc0c6 100644 --- a/client/src/locale/angular.ta.xlf +++ b/client/src/locale/angular.ta.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Sensitive | 540 | Sensitive |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 546 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1388,13 +1396,7 @@ The link will expire within 1 hour.</target> | |||
1388 | <target state="new">Sensitive:</target> | 1396 | <target state="new">Sensitive:</target> |
1389 | 1397 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1391 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1399 | |
1392 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1393 | <target state="new">Interface: | ||
1394 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1395 | </target> | ||
1396 | |||
1397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1398 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1400 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1399 | <source>Help share videos</source> | 1401 | <source>Help share videos</source> |
1400 | <target state="new">Help share videos</target> | 1402 | <target state="new">Help share videos</target> |
@@ -1470,7 +1472,13 @@ The link will expire within 1 hour.</target> | |||
1470 | <source>Videos</source> | 1472 | <source>Videos</source> |
1471 | <target state="new">Videos</target> | 1473 | <target state="new">Videos</target> |
1472 | 1474 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1476 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1479 | <context context-type="linenumber">171</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1474 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1482 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1475 | <source>Playlists</source> | 1483 | <source>Playlists</source> |
1476 | <target state="new">Playlists</target> | 1484 | <target state="new">Playlists</target> |
@@ -2105,12 +2113,12 @@ The link will expire within 1 hour.</target> | |||
2105 | <source>Scheduled</source> | 2113 | <source>Scheduled</source> |
2106 | <target state="new">Scheduled</target> | 2114 | <target state="new">Scheduled</target> |
2107 | 2115 | ||
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2109 | <trans-unit id="1435317307066082710" datatype="html"> | 2117 | <trans-unit id="1435317307066082710" datatype="html"> |
2110 | <source>Hide the video until a specific date</source> | 2118 | <source>Hide the video until a specific date</source> |
2111 | <target state="new">Hide the video until a specific date</target> | 2119 | <target state="new">Hide the video until a specific date</target> |
2112 | 2120 | ||
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2114 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2122 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2115 | <source>Video background image</source> | 2123 | <source>Video background image</source> |
2116 | <target state="new">Video background image</target> | 2124 | <target state="new">Video background image</target> |
@@ -2789,7 +2797,7 @@ The link will expire within 1 hour.</target> | |||
2789 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2797 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2790 | <context context-type="linenumber">8</context> | 2798 | <context context-type="linenumber">8</context> |
2791 | </context-group> | 2799 | </context-group> |
2792 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2800 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2793 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2801 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2794 | <context-group purpose="location"> | 2802 | <context-group purpose="location"> |
2795 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2803 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4432,12 +4440,18 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>Basic configuration</source> | 4440 | <source>Basic configuration</source> |
4433 | <target state="new">Basic configuration</target> | 4441 | <target state="new">Basic configuration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4444 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">700</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4436 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4450 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4437 | <source>TWITTER</source> | 4451 | <source>TWITTER</source> |
4438 | <target state="new">TWITTER</target> | 4452 | <target state="new">TWITTER</target> |
4439 | 4453 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4441 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4455 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4442 | <source> | 4456 | <source> |
4443 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4457 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4446,95 +4460,79 @@ The link will expire within 1 hour.</target> | |||
4446 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4460 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4447 | </target> | 4461 | </target> |
4448 | 4462 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4450 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4464 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4451 | <source>Your Twitter username</source> | 4465 | <source>Your Twitter username</source> |
4452 | <target>உங்கள் Twitter பயணர்பெயர்</target> | 4466 | <target>உங்கள் Twitter பயணர்பெயர்</target> |
4453 | 4467 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4455 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4469 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4456 | <source>Instance allowed by Twitter</source> | 4470 | <source>Instance allowed by Twitter</source> |
4457 | <target state="new">Instance allowed by Twitter</target> | 4471 | <target state="new">Instance allowed by Twitter</target> |
4458 | 4472 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4460 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4474 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4463 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4477 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4464 | <source>LIVE</source><target state="new">LIVE</target> | 4478 | <source>LIVE</source><target state="new">LIVE</target> |
4465 | 4479 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4467 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4481 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4468 | 4482 | ||
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4470 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4484 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4471 | 4485 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4473 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4487 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4474 | 4488 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4476 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4490 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4477 | 4491 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4479 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4493 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4480 | 4494 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4482 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4496 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4483 | <context-group purpose="location"> | 4497 | |
4484 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4485 | <context context-type="linenumber">751</context> | ||
4486 | </context-group> | ||
4487 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4488 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4499 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4489 | 4500 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4491 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4502 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4492 | <context-group purpose="location"> | 4503 | |
4493 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4494 | <context context-type="linenumber">759</context> | ||
4495 | </context-group> | ||
4496 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4497 | <source>Max live duration</source><target state="new">Max live duration</target> | 4505 | <source>Max live duration</source><target state="new">Max live duration</target> |
4498 | 4506 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4500 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4508 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4503 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4511 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4504 | 4512 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4506 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4514 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4507 | 4515 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4509 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4517 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4512 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4520 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4515 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4523 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">793</context> | ||
4519 | </context-group> | ||
4520 | <context-group purpose="location"> | ||
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4522 | <context context-type="linenumber">935</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4526 | <source>Services</source> | ||
4527 | <target>சேவைகள்</target> | ||
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4525 | |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4527 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4530 | <source>Live streaming</source><target state="new">Live streaming</target> | 4528 | <source>Live streaming</source><target state="new">Live streaming</target> |
4531 | 4529 | ||
4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4533 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4531 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4534 | <source>TRANSCODING</source> | 4532 | <source>TRANSCODING</source> |
4535 | <target state="new">TRANSCODING</target> | 4533 | <target state="new">TRANSCODING</target> |
4536 | 4534 | ||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4538 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4536 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4539 | <source> 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. </source> | 4537 | <source> 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. </source> |
4540 | <target state="new"> | 4538 | <target state="new"> |
@@ -4542,55 +4540,53 @@ The link will expire within 1 hour.</target> | |||
4542 | resources, this is a critical part of PeerTube, so tread carefully. | 4540 | resources, this is a critical part of PeerTube, so tread carefully. |
4543 | </target> | 4541 | </target> |
4544 | 4542 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4546 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4544 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4547 | <source>Transcoding enabled</source> | 4545 | <source>Transcoding enabled</source> |
4548 | <target state="new">Transcoding enabled</target> | 4546 | <target state="new">Transcoding enabled</target> |
4549 | 4547 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4551 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4549 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4552 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4550 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4553 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4551 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4554 | 4552 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4554 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4555 | |||
4556 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4557 | |||
4558 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4559 | <context-group purpose="location"> | ||
4560 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4561 | <context context-type="linenumber">759,763</context> | ||
4562 | </context-group> | ||
4563 | </trans-unit> | ||
4556 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4564 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4557 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4565 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4558 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4566 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4559 | 4567 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4561 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4569 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4562 | <source>Allow additional extensions</source> | 4570 | <source>Allow additional extensions</source> |
4563 | <target state="new">Allow additional extensions</target> | 4571 | <target state="new">Allow additional extensions</target> |
4564 | 4572 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4566 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4574 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4567 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4575 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4568 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4576 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4569 | 4577 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4571 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4579 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4572 | <source>Allow audio files upload</source> | 4580 | <source>Allow audio files upload</source> |
4573 | <target state="new">Allow audio files upload</target> | 4581 | <target state="new">Allow audio files upload</target> |
4574 | 4582 | ||
4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4576 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4584 | |
4577 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4578 | <target state="new"> | ||
4579 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4580 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4581 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4582 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4583 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4584 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4585 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4586 | </target> | ||
4587 | |||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4589 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4590 | <source>WebTorrent support enabled</source> | 4586 | <source>WebTorrent support enabled</source> |
4591 | <target state="new">WebTorrent support enabled</target> | 4587 | <target state="new">WebTorrent support enabled</target> |
4592 | 4588 | ||
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4594 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4595 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4596 | <target state="new"> | 4592 | <target state="new"> |
@@ -4610,27 +4606,27 @@ The link will expire within 1 hour.</target> | |||
4610 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4611 | </target> | 4607 | </target> |
4612 | 4608 | ||
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4614 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4615 | <source>HLS with P2P support enabled</source> | 4611 | <source>HLS with P2P support enabled</source> |
4616 | <target state="new">HLS with P2P support enabled</target> | 4612 | <target state="new">HLS with P2P support enabled</target> |
4617 | 4613 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4619 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4620 | <source>Transcoding threads</source> | 4616 | <source>Transcoding threads</source> |
4621 | <target state="new">Transcoding threads</target> | 4617 | <target state="new">Transcoding threads</target> |
4622 | 4618 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4624 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4625 | <source>Resolutions to generate</source> | 4621 | <source>Resolutions to generate</source> |
4626 | <target state="new">Resolutions to generate</target> | 4622 | <target state="new">Resolutions to generate</target> |
4627 | 4623 | ||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4629 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4630 | <source>CACHE</source> | 4626 | <source>CACHE</source> |
4631 | <target state="new">CACHE</target> | 4627 | <target state="new">CACHE</target> |
4632 | 4628 | ||
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4634 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4635 | <source> | 4631 | <source> |
4636 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4632 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4639,34 +4635,28 @@ The link will expire within 1 hour.</target> | |||
4639 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4635 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4640 | </target> | 4636 | </target> |
4641 | 4637 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4643 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4644 | <source>Number of previews to keep in cache</source> | 4640 | <source>Number of previews to keep in cache</source> |
4645 | <target state="new">Number of previews to keep in cache</target> | 4641 | <target state="new">Number of previews to keep in cache</target> |
4646 | 4642 | ||
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4649 | <context-group purpose="location"> | 4645 | |
4650 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4651 | <context context-type="linenumber">986</context> | ||
4652 | </context-group> | ||
4653 | </trans-unit> | ||
4654 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4647 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4655 | <source>Number of video captions to keep in cache</source> | 4648 | <source>Number of video captions to keep in cache</source> |
4656 | <target state="new">Number of video captions to keep in cache</target> | 4649 | <target state="new">Number of video captions to keep in cache</target> |
4657 | 4650 | ||
4658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4659 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4652 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4660 | <context-group purpose="location"> | 4653 | |
4661 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4662 | <context context-type="linenumber">998</context> | ||
4663 | </context-group> | ||
4664 | </trans-unit> | ||
4665 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4655 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4666 | <source>CUSTOMIZATIONS</source> | 4656 | <source>CUSTOMIZATIONS</source> |
4667 | <target state="new">CUSTOMIZATIONS</target> | 4657 | <target state="new">CUSTOMIZATIONS</target> |
4668 | 4658 | ||
4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4670 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4660 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4671 | <source> | 4661 | <source> |
4672 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4662 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4675,12 +4665,12 @@ The link will expire within 1 hour.</target> | |||
4675 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4665 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4676 | </target> | 4666 | </target> |
4677 | 4667 | ||
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4679 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4669 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4680 | <source>JavaScript</source> | 4670 | <source>JavaScript</source> |
4681 | <target>JavaScript</target> | 4671 | <target>JavaScript</target> |
4682 | 4672 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4684 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4674 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4685 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4675 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4686 | <target state="new"> | 4676 | <target state="new"> |
@@ -4690,7 +4680,7 @@ The link will expire within 1 hour.</target> | |||
4690 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4680 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4691 | </target> | 4681 | </target> |
4692 | 4682 | ||
4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4694 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4684 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4695 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4685 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4696 | color: red; | 4686 | color: red; |
@@ -4722,23 +4712,23 @@ The link will expire within 1 hour.</target> | |||
4722 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4712 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4723 | </target> | 4713 | </target> |
4724 | 4714 | ||
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4726 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4716 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4727 | 4717 | ||
4728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4729 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4719 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4730 | 4720 | ||
4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4732 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4722 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4733 | <source>Advanced configuration</source> | 4723 | <source>Advanced configuration</source> |
4734 | <target state="new">Advanced configuration</target> | 4724 | <target state="new">Advanced configuration</target> |
4735 | 4725 | ||
4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4737 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4727 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4738 | <source>Update configuration</source> | 4728 | <source>Update configuration</source> |
4739 | <target state="new">Update configuration</target> | 4729 | <target state="new">Update configuration</target> |
4740 | 4730 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4742 | 4732 | ||
4743 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4733 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4744 | <source>VIDEO SETTINGS</source> | 4734 | <source>VIDEO SETTINGS</source> |
@@ -7515,7 +7505,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7515 | <source>any language</source> | 7505 | <source>any language</source> |
7516 | <target state="new">any language</target> | 7506 | <target state="new">any language</target> |
7517 | 7507 | ||
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7519 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7509 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7523,22 +7513,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7523 | <source>hide</source> | 7513 | <source>hide</source> |
7524 | <target state="new">hide</target> | 7514 | <target state="new">hide</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7527 | <trans-unit id="8603861867909474404" datatype="html"> | 7517 | <trans-unit id="8603861867909474404" datatype="html"> |
7528 | <source>blur</source> | 7518 | <source>blur</source> |
7529 | <target state="new">blur</target> | 7519 | <target state="new">blur</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7532 | <trans-unit id="4534458451100881847" datatype="html"> | 7522 | <trans-unit id="4534458451100881847" datatype="html"> |
7533 | <source>display</source> | 7523 | <source>display</source> |
7534 | <target state="new">display</target> | 7524 | <target state="new">display</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7537 | <trans-unit id="4467323362722952678" datatype="html"> | 7527 | <trans-unit id="4467323362722952678" datatype="html"> |
7538 | <source>Unknown</source> | 7528 | <source>Unknown</source> |
7539 | <target state="new">Unknown</target> | 7529 | <target state="new">Unknown</target> |
7540 | 7530 | ||
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7542 | <trans-unit id="8781423666414310853" datatype="html"> | 7532 | <trans-unit id="8781423666414310853" datatype="html"> |
7543 | <source>Your password has been successfully reset!</source> | 7533 | <source>Your password has been successfully reset!</source> |
7544 | <target state="new">Your password has been successfully reset!</target> | 7534 | <target state="new">Your password has been successfully reset!</target> |
@@ -8549,13 +8539,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8549 | <source>Instance languages</source> | 8539 | <source>Instance languages</source> |
8550 | <target state="new">Instance languages</target> | 8540 | <target state="new">Instance languages</target> |
8551 | 8541 | ||
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8553 | <trans-unit id="40119547597591062" datatype="html"> | 8543 | <trans-unit id="40119547597591062" datatype="html"> |
8554 | <source>All languages</source> | 8544 | <source>All languages</source> |
8555 | <target state="new">All languages</target> | 8545 | <target state="new">All languages</target> |
8556 | 8546 | ||
8557 | 8547 | ||
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8559 | <trans-unit id="996392855508119363" datatype="html"> | 8549 | <trans-unit id="996392855508119363" datatype="html"> |
8560 | <source>Hidden</source> | 8550 | <source>Hidden</source> |
8561 | <target state="new">Hidden</target> | 8551 | <target state="new">Hidden</target> |
@@ -9330,7 +9320,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9330 | <source>Only users of this instance can see this video</source> | 9320 | <source>Only users of this instance can see this video</source> |
9331 | <target state="new">Only users of this instance can see this video</target> | 9321 | <target state="new">Only users of this instance can see this video</target> |
9332 | 9322 | ||
9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9324 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9327 | <context context-type="linenumber">211</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9330 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9333 | <context context-type="linenumber">214</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9334 | <source>Close</source><target state="new">Close</target> | 9336 | <source>Close</source><target state="new">Close</target> |
9335 | 9337 | ||
9336 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.th-TH.xlf b/client/src/locale/angular.th-TH.xlf index 270c635ea..a90ec5c49 100644 --- a/client/src/locale/angular.th-TH.xlf +++ b/client/src/locale/angular.th-TH.xlf | |||
@@ -422,19 +422,27 @@ | |||
422 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> ครั้ง} } | 422 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> ครั้ง} } |
423 | </target> | 423 | </target> |
424 | 424 | ||
425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
426 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
427 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
428 | "/> </target> | ||
429 | <context-group purpose="location"> | ||
430 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
431 | <context context-type="linenumber">32,33</context> | ||
432 | </context-group> | ||
433 | </trans-unit> | ||
426 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 434 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
427 | <source>Blocked</source> | 435 | <source>Blocked</source> |
428 | <target state="new">Blocked</target> | 436 | <target state="new">Blocked</target> |
429 | 437 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
431 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 439 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
432 | <source>Sensitive</source> | 440 | <source>Sensitive</source> |
433 | <target> | 441 | <target> |
434 | มีเนื้อหาไม่เหมาะสม | 442 | มีเนื้อหาไม่เหมาะสม |
435 | </target> | 443 | </target> |
436 | 444 | ||
437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
438 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 446 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
439 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 447 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
440 | <target>{VAR_PLURAL, plural, =0 {ไม่มีวิดีโอ} =1 {1 วิดีโอ} other { | 448 | <target>{VAR_PLURAL, plural, =0 {ไม่มีวิดีโอ} =1 {1 วิดีโอ} other { |
@@ -1194,11 +1202,7 @@ The link will expire within 1 hour.</source> | |||
1194 | <target state="new">Sensitive:</target> | 1202 | <target state="new">Sensitive:</target> |
1195 | 1203 | ||
1196 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1197 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1205 | |
1198 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1199 | <target state="translated">อินเตอร์เฟซ: <x id="INTERPOLATION"/></target> | ||
1200 | |||
1201 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1202 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1206 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1203 | <source>Help share videos</source> | 1207 | <source>Help share videos</source> |
1204 | <target state="new">Help share videos</target> | 1208 | <target state="new">Help share videos</target> |
@@ -1288,7 +1292,13 @@ The link will expire within 1 hour.</source> | |||
1288 | <source>Videos</source> | 1292 | <source>Videos</source> |
1289 | <target>วิดีโอ</target> | 1293 | <target>วิดีโอ</target> |
1290 | 1294 | ||
1291 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1295 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1296 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1297 | <context-group purpose="location"> | ||
1298 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1299 | <context context-type="linenumber">171</context> | ||
1300 | </context-group> | ||
1301 | </trans-unit> | ||
1292 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1302 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1293 | <source>Playlists</source> | 1303 | <source>Playlists</source> |
1294 | <target>เพลย์ลิสต์</target> | 1304 | <target>เพลย์ลิสต์</target> |
@@ -1862,12 +1872,12 @@ The link will expire within 1 hour.</source> | |||
1862 | <source>Scheduled</source> | 1872 | <source>Scheduled</source> |
1863 | <target state="translated">กำหนดเวลาเผยแพร่</target> | 1873 | <target state="translated">กำหนดเวลาเผยแพร่</target> |
1864 | 1874 | ||
1865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1866 | <trans-unit id="1435317307066082710" datatype="html"> | 1876 | <trans-unit id="1435317307066082710" datatype="html"> |
1867 | <source>Hide the video until a specific date</source> | 1877 | <source>Hide the video until a specific date</source> |
1868 | <target state="new">Hide the video until a specific date</target> | 1878 | <target state="new">Hide the video until a specific date</target> |
1869 | 1879 | ||
1870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1871 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1881 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1872 | <source>Video background image</source> | 1882 | <source>Video background image</source> |
1873 | <target state="translated">ภาพพื้นหลังวิดีโอ</target> | 1883 | <target state="translated">ภาพพื้นหลังวิดีโอ</target> |
@@ -2530,7 +2540,7 @@ The link will expire within 1 hour.</source> | |||
2530 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2540 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2531 | <context context-type="linenumber">8</context> | 2541 | <context context-type="linenumber">8</context> |
2532 | </context-group> | 2542 | </context-group> |
2533 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2543 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2534 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2544 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2535 | <context-group purpose="location"> | 2545 | <context-group purpose="location"> |
2536 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2546 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4099,136 +4109,126 @@ The link will expire within 1 hour.</source> | |||
4099 | <source>Basic configuration</source> | 4109 | <source>Basic configuration</source> |
4100 | <target state="new">Basic configuration</target> | 4110 | <target state="new">Basic configuration</target> |
4101 | 4111 | ||
4102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4113 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4114 | <context-group purpose="location"> | ||
4115 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4116 | <context context-type="linenumber">700</context> | ||
4117 | </context-group> | ||
4118 | </trans-unit> | ||
4103 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4119 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4104 | <source>TWITTER</source> | 4120 | <source>TWITTER</source> |
4105 | <target state="new">TWITTER</target> | 4121 | <target state="new">TWITTER</target> |
4106 | 4122 | ||
4107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4108 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4124 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4109 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4125 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4110 | <target state="new"> | 4126 | <target state="new"> |
4111 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4127 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4112 | </target> | 4128 | </target> |
4113 | 4129 | ||
4114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4115 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4131 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4116 | <source>Your Twitter username</source> | 4132 | <source>Your Twitter username</source> |
4117 | <target state="new">Your Twitter username</target> | 4133 | <target state="new">Your Twitter username</target> |
4118 | 4134 | ||
4119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4120 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4136 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4121 | <source>Instance allowed by Twitter</source> | 4137 | <source>Instance allowed by Twitter</source> |
4122 | <target state="new">Instance allowed by Twitter</target> | 4138 | <target state="new">Instance allowed by Twitter</target> |
4123 | 4139 | ||
4124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit> | 4140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit> |
4125 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4141 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4126 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | 4142 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> |
4127 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4143 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4128 | 4144 | ||
4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4130 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4146 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4131 | <source>LIVE</source> | 4147 | <source>LIVE</source> |
4132 | <target state="translated">สด</target> | 4148 | <target state="translated">สด</target> |
4133 | 4149 | ||
4134 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit> | 4150 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit> |
4135 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4151 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4136 | <source>Enable users of your instance to stream live.</source> | 4152 | <source>Enable users of your instance to stream live.</source> |
4137 | <target state="new"> Enable users of your instance to stream live. </target> | 4153 | <target state="new"> Enable users of your instance to stream live. </target> |
4138 | 4154 | ||
4139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit> | 4155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit> |
4140 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4156 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4141 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 4157 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4142 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4158 | <target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4143 | 4159 | ||
4144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit> | 4160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit> |
4145 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4161 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4146 | <source>Allow your users to automatically publish a replay of their live</source> | 4162 | <source>Allow your users to automatically publish a replay of their live</source> |
4147 | <target state="new">Allow your users to automatically publish a replay of their live</target> | 4163 | <target state="new">Allow your users to automatically publish a replay of their live</target> |
4148 | 4164 | ||
4149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit> | 4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit> |
4150 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4166 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4151 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 4167 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
4152 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4168 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4153 | 4169 | ||
4154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit> | 4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit> |
4155 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4171 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4156 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 4172 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
4157 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4173 | <target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4158 | 4174 | ||
4159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4160 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4176 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4161 | <context-group purpose="location"> | 4177 | |
4162 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit> |
4163 | <context context-type="linenumber">751</context> | ||
4164 | </context-group> | ||
4165 | </trans-unit> | ||
4166 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 4179 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4167 | <source>Max lives created per user (-1 for "unlimited")</source> | 4180 | <source>Max lives created per user (-1 for "unlimited")</source> |
4168 | <target state="new">Max lives created per user (-1 for "unlimited")</target> | 4181 | <target state="new">Max lives created per user (-1 for "unlimited")</target> |
4169 | 4182 | ||
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4171 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4184 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4172 | <context-group purpose="location"> | 4185 | |
4173 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit> |
4174 | <context context-type="linenumber">759</context> | ||
4175 | </context-group> | ||
4176 | </trans-unit> | ||
4177 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 4187 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4178 | <source>Max live duration</source> | 4188 | <source>Max live duration</source> |
4179 | <target state="new">Max live duration</target> | 4189 | <target state="new">Max live duration</target> |
4180 | 4190 | ||
4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit> | 4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit> |
4182 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4192 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4183 | <source>Enable live transcoding</source> | 4193 | <source>Enable live transcoding</source> |
4184 | <target state="new">Enable live transcoding</target> | 4194 | <target state="new">Enable live transcoding</target> |
4185 | 4195 | ||
4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit> | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit> |
4187 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4197 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4188 | <source>Requires a lot of CPU!</source> | 4198 | <source>Requires a lot of CPU!</source> |
4189 | <target state="new"> Requires a lot of CPU! </target> | 4199 | <target state="new"> Requires a lot of CPU! </target> |
4190 | 4200 | ||
4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit> | 4201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit> |
4192 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4202 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4193 | <source>Live transcoding threads</source> | 4203 | <source>Live transcoding threads</source> |
4194 | <target state="new">Live transcoding threads</target> | 4204 | <target state="new">Live transcoding threads</target> |
4195 | 4205 | ||
4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit> | 4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit> |
4197 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4207 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4198 | <source>Live resolutions to generate</source> | 4208 | <source>Live resolutions to generate</source> |
4199 | <target state="new">Live resolutions to generate</target> | 4209 | <target state="new">Live resolutions to generate</target> |
4200 | 4210 | ||
4201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit> | 4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit> |
4202 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4212 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4203 | <source>Allow live streaming</source> | 4213 | <source>Allow live streaming</source> |
4204 | <target state="new">Allow live streaming</target> | 4214 | <target state="new">Allow live streaming</target> |
4205 | 4215 | ||
4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4207 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4217 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4208 | <context-group purpose="location"> | ||
4209 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4210 | <context context-type="linenumber">793</context> | ||
4211 | </context-group> | ||
4212 | <context-group purpose="location"> | ||
4213 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4214 | <context context-type="linenumber">935</context> | ||
4215 | </context-group> | ||
4216 | </trans-unit> | ||
4217 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4218 | <source>Services</source> | ||
4219 | <target state="new">Services</target> | ||
4220 | 4218 | ||
4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> | 4219 | |
4220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4221 | |||
4222 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4222 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
4223 | <source>Live streaming</source> | 4223 | <source>Live streaming</source> |
4224 | <target state="translated">การแพร่ภาพสด</target> | 4224 | <target state="translated">การแพร่ภาพสด</target> |
4225 | 4225 | ||
4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4227 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4227 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4228 | <source>TRANSCODING</source> | 4228 | <source>TRANSCODING</source> |
4229 | <target state="new">TRANSCODING</target> | 4229 | <target state="new">TRANSCODING</target> |
4230 | 4230 | ||
4231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4232 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4232 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4233 | <source>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.</source> | 4233 | <source>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.</source> |
4234 | <target state="new"> | 4234 | <target state="new"> |
@@ -4236,55 +4236,53 @@ The link will expire within 1 hour.</source> | |||
4236 | resources, this is a critical part of PeerTube, so tread carefully. | 4236 | resources, this is a critical part of PeerTube, so tread carefully. |
4237 | </target> | 4237 | </target> |
4238 | 4238 | ||
4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4240 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4240 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4241 | <source>Transcoding enabled</source> | 4241 | <source>Transcoding enabled</source> |
4242 | <target state="new">Transcoding enabled</target> | 4242 | <target state="new">Transcoding enabled</target> |
4243 | 4243 | ||
4244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4245 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4245 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4246 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4246 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4247 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4247 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4248 | 4248 | ||
4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4250 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4251 | |||
4252 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4253 | |||
4254 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4255 | <context-group purpose="location"> | ||
4256 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4257 | <context context-type="linenumber">759,763</context> | ||
4258 | </context-group> | ||
4259 | </trans-unit> | ||
4250 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4260 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4251 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4261 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4252 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4262 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4253 | 4263 | ||
4254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4255 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4265 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4256 | <source>Allow additional extensions</source> | 4266 | <source>Allow additional extensions</source> |
4257 | <target state="new">Allow additional extensions</target> | 4267 | <target state="new">Allow additional extensions</target> |
4258 | 4268 | ||
4259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4260 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4270 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4261 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4271 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4262 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4272 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4263 | 4273 | ||
4264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4265 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4275 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4266 | <source>Allow audio files upload</source> | 4276 | <source>Allow audio files upload</source> |
4267 | <target state="new">Allow audio files upload</target> | 4277 | <target state="new">Allow audio files upload</target> |
4268 | 4278 | ||
4269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4270 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4280 | |
4271 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4272 | <target state="new"> | ||
4273 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4274 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4275 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4276 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4277 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4278 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4279 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4280 | </target> | ||
4281 | |||
4282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4283 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4281 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4284 | <source>WebTorrent support enabled</source> | 4282 | <source>WebTorrent support enabled</source> |
4285 | <target state="new">WebTorrent support enabled</target> | 4283 | <target state="new">WebTorrent support enabled</target> |
4286 | 4284 | ||
4287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4288 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4286 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4289 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4287 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4290 | <target state="new"> | 4288 | <target state="new"> |
@@ -4304,73 +4302,67 @@ The link will expire within 1 hour.</source> | |||
4304 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4302 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4305 | </target> | 4303 | </target> |
4306 | 4304 | ||
4307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4308 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4306 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4309 | <source>HLS with P2P support enabled</source> | 4307 | <source>HLS with P2P support enabled</source> |
4310 | <target state="new">HLS with P2P support enabled</target> | 4308 | <target state="new">HLS with P2P support enabled</target> |
4311 | 4309 | ||
4312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4313 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4311 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4314 | <source>Transcoding threads</source> | 4312 | <source>Transcoding threads</source> |
4315 | <target state="new">Transcoding threads</target> | 4313 | <target state="new">Transcoding threads</target> |
4316 | 4314 | ||
4317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4318 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4316 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4319 | <source>Resolutions to generate</source> | 4317 | <source>Resolutions to generate</source> |
4320 | <target state="new">Resolutions to generate</target> | 4318 | <target state="new">Resolutions to generate</target> |
4321 | 4319 | ||
4322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4323 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4321 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4324 | <source>CACHE</source> | 4322 | <source>CACHE</source> |
4325 | <target state="new">CACHE</target> | 4323 | <target state="new">CACHE</target> |
4326 | 4324 | ||
4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4328 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4326 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4329 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4327 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4330 | <target state="new"> | 4328 | <target state="new"> |
4331 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4329 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4332 | </target> | 4330 | </target> |
4333 | 4331 | ||
4334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4335 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4333 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4336 | <source>Number of previews to keep in cache</source> | 4334 | <source>Number of previews to keep in cache</source> |
4337 | <target state="new">Number of previews to keep in cache</target> | 4335 | <target state="new">Number of previews to keep in cache</target> |
4338 | 4336 | ||
4339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4340 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4338 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4341 | <context-group purpose="location"> | 4339 | |
4342 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4343 | <context context-type="linenumber">986</context> | ||
4344 | </context-group> | ||
4345 | </trans-unit> | ||
4346 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4341 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4347 | <source>Number of video captions to keep in cache</source> | 4342 | <source>Number of video captions to keep in cache</source> |
4348 | <target state="new">Number of video captions to keep in cache</target> | 4343 | <target state="new">Number of video captions to keep in cache</target> |
4349 | 4344 | ||
4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4351 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4346 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4352 | <context-group purpose="location"> | 4347 | |
4353 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4354 | <context context-type="linenumber">998</context> | ||
4355 | </context-group> | ||
4356 | </trans-unit> | ||
4357 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4349 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4358 | <source>CUSTOMIZATIONS</source> | 4350 | <source>CUSTOMIZATIONS</source> |
4359 | <target state="new">CUSTOMIZATIONS</target> | 4351 | <target state="new">CUSTOMIZATIONS</target> |
4360 | 4352 | ||
4361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4362 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4354 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4363 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4355 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4364 | <target state="new"> | 4356 | <target state="new"> |
4365 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4357 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4366 | </target> | 4358 | </target> |
4367 | 4359 | ||
4368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4369 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4361 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4370 | <source>JavaScript</source> | 4362 | <source>JavaScript</source> |
4371 | <target state="new">JavaScript</target> | 4363 | <target state="new">JavaScript</target> |
4372 | 4364 | ||
4373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4374 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4366 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4375 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4367 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4376 | <target state="new"> | 4368 | <target state="new"> |
@@ -4380,7 +4372,7 @@ The link will expire within 1 hour.</source> | |||
4380 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4372 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4381 | </target> | 4373 | </target> |
4382 | 4374 | ||
4383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4384 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4376 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4385 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4377 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
4386 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4378 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
@@ -4416,27 +4408,27 @@ The link will expire within 1 hour.</source> | |||
4416 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4408 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4417 | </target> | 4409 | </target> |
4418 | 4410 | ||
4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit> | 4411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit> |
4420 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4412 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4421 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | 4413 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> |
4422 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4414 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4423 | 4415 | ||
4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit> | 4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit> |
4425 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4417 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4426 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 4418 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
4427 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4419 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4428 | 4420 | ||
4429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4430 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4422 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4431 | <source>Advanced configuration</source> | 4423 | <source>Advanced configuration</source> |
4432 | <target state="new">Advanced configuration</target> | 4424 | <target state="new">Advanced configuration</target> |
4433 | 4425 | ||
4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4435 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4427 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4436 | <source>Update configuration</source> | 4428 | <source>Update configuration</source> |
4437 | <target state="new">Update configuration</target> | 4429 | <target state="new">Update configuration</target> |
4438 | 4430 | ||
4439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4440 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4432 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4441 | <source>VIDEO SETTINGS</source> | 4433 | <source>VIDEO SETTINGS</source> |
4442 | <target state="translated">การตั้งค่าวิดีโอ</target> | 4434 | <target state="translated">การตั้งค่าวิดีโอ</target> |
@@ -7133,7 +7125,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7133 | <source>any language</source> | 7125 | <source>any language</source> |
7134 | <target state="translated">ภาษาใดก็ได้</target> | 7126 | <target state="translated">ภาษาใดก็ได้</target> |
7135 | 7127 | ||
7136 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> | 7128 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> |
7137 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7129 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7138 | <source>ON <x id="INTERPOLATION"/></source> | 7130 | <source>ON <x id="INTERPOLATION"/></source> |
7139 | <target state="new">ON <x id="INTERPOLATION"/></target> | 7131 | <target state="new">ON <x id="INTERPOLATION"/></target> |
@@ -7143,22 +7135,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7143 | <source>hide</source> | 7135 | <source>hide</source> |
7144 | <target state="new">hide</target> | 7136 | <target state="new">hide</target> |
7145 | 7137 | ||
7146 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7138 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7147 | <trans-unit id="8603861867909474404" datatype="html"> | 7139 | <trans-unit id="8603861867909474404" datatype="html"> |
7148 | <source>blur</source> | 7140 | <source>blur</source> |
7149 | <target state="new">blur</target> | 7141 | <target state="new">blur</target> |
7150 | 7142 | ||
7151 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7143 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7152 | <trans-unit id="4534458451100881847" datatype="html"> | 7144 | <trans-unit id="4534458451100881847" datatype="html"> |
7153 | <source>display</source> | 7145 | <source>display</source> |
7154 | <target state="new">display</target> | 7146 | <target state="new">display</target> |
7155 | 7147 | ||
7156 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7148 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7157 | <trans-unit id="4467323362722952678" datatype="html"> | 7149 | <trans-unit id="4467323362722952678" datatype="html"> |
7158 | <source>Unknown</source> | 7150 | <source>Unknown</source> |
7159 | <target state="new">Unknown</target> | 7151 | <target state="new">Unknown</target> |
7160 | 7152 | ||
7161 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7153 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7162 | <trans-unit id="8781423666414310853" datatype="html"> | 7154 | <trans-unit id="8781423666414310853" datatype="html"> |
7163 | <source>Your password has been successfully reset!</source> | 7155 | <source>Your password has been successfully reset!</source> |
7164 | <target state="translated">รีเซ็ตรหัสผ่านเรียบร้อย</target> | 7156 | <target state="translated">รีเซ็ตรหัสผ่านเรียบร้อย</target> |
@@ -8155,12 +8147,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8155 | <source>Instance languages</source> | 8147 | <source>Instance languages</source> |
8156 | <target state="translated">ภาษาเว็บไซต์</target> | 8148 | <target state="translated">ภาษาเว็บไซต์</target> |
8157 | 8149 | ||
8158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8159 | <trans-unit id="40119547597591062" datatype="html"> | 8151 | <trans-unit id="40119547597591062" datatype="html"> |
8160 | <source>All languages</source> | 8152 | <source>All languages</source> |
8161 | <target state="translated">ทุกภาษา</target> | 8153 | <target state="translated">ทุกภาษา</target> |
8162 | 8154 | ||
8163 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8164 | <trans-unit id="996392855508119363" datatype="html"> | 8156 | <trans-unit id="996392855508119363" datatype="html"> |
8165 | <source>Hidden</source> | 8157 | <source>Hidden</source> |
8166 | <target state="translated">ซ่อน</target> | 8158 | <target state="translated">ซ่อน</target> |
@@ -8917,7 +8909,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8917 | <source>Only users of this instance can see this video</source> | 8909 | <source>Only users of this instance can see this video</source> |
8918 | <target state="translated">เฉพาะผู้ใช้ของเว็บไซต์นี้ที่จะเห็นวิดีโอนี้</target> | 8910 | <target state="translated">เฉพาะผู้ใช้ของเว็บไซต์นี้ที่จะเห็นวิดีโอนี้</target> |
8919 | 8911 | ||
8920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8913 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8914 | <context-group purpose="location"> | ||
8915 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8916 | <context context-type="linenumber">211</context> | ||
8917 | </context-group> | ||
8918 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8919 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8920 | <context-group purpose="location"> | ||
8921 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8922 | <context context-type="linenumber">214</context> | ||
8923 | </context-group> | ||
8924 | </trans-unit> | ||
8921 | <trans-unit id="ngb.alert.close" datatype="html"> | 8925 | <trans-unit id="ngb.alert.close" datatype="html"> |
8922 | <source>Close</source> | 8926 | <source>Close</source> |
8923 | <target state="translated">ปิด</target> | 8927 | <target state="translated">ปิด</target> |
diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf index 854336ceb..db32edc58 100644 --- a/client/src/locale/angular.tr-TR.xlf +++ b/client/src/locale/angular.tr-TR.xlf | |||
@@ -419,17 +419,25 @@ | |||
419 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 419 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
420 | </target> | 420 | </target> |
421 | 421 | ||
422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
423 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
424 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
425 | "/> </target> | ||
426 | <context-group purpose="location"> | ||
427 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
428 | <context context-type="linenumber">32,33</context> | ||
429 | </context-group> | ||
430 | </trans-unit> | ||
423 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 431 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
424 | <source>Blocked</source> | 432 | <source>Blocked</source> |
425 | <target state="new">Blocked</target> | 433 | <target state="new">Blocked</target> |
426 | 434 | ||
427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
428 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 436 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
429 | <source>Sensitive</source> | 437 | <source>Sensitive</source> |
430 | <target state="new">Sensitive</target> | 438 | <target state="new">Sensitive</target> |
431 | 439 | ||
432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
433 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 441 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
434 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 442 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
435 | <target>{VAR_PLURAL, plural, =0 {Video yok} =1 {1 video} other { | 443 | <target>{VAR_PLURAL, plural, =0 {Video yok} =1 {1 video} other { |
@@ -1142,13 +1150,7 @@ The link will expire within 1 hour.</target> | |||
1142 | <target state="new">Sensitive:</target> | 1150 | <target state="new">Sensitive:</target> |
1143 | 1151 | ||
1144 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1152 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1145 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1153 | |
1146 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1147 | <target state="new">Interface: | ||
1148 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1149 | </target> | ||
1150 | |||
1151 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1152 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1154 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1153 | <source>Help share videos</source> | 1155 | <source>Help share videos</source> |
1154 | <target state="new">Help share videos</target> | 1156 | <target state="new">Help share videos</target> |
@@ -1232,7 +1234,13 @@ The link will expire within 1 hour.</target> | |||
1232 | <source>Videos</source> | 1234 | <source>Videos</source> |
1233 | <target state="new">Videos</target> | 1235 | <target state="new">Videos</target> |
1234 | 1236 | ||
1235 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1237 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1238 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1239 | <context-group purpose="location"> | ||
1240 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1241 | <context context-type="linenumber">171</context> | ||
1242 | </context-group> | ||
1243 | </trans-unit> | ||
1236 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1244 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1237 | <source>Playlists</source> | 1245 | <source>Playlists</source> |
1238 | <target state="new">Playlists</target> | 1246 | <target state="new">Playlists</target> |
@@ -1796,12 +1804,12 @@ The link will expire within 1 hour.</target> | |||
1796 | <source>Scheduled</source> | 1804 | <source>Scheduled</source> |
1797 | <target state="new">Scheduled</target> | 1805 | <target state="new">Scheduled</target> |
1798 | 1806 | ||
1799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1800 | <trans-unit id="1435317307066082710" datatype="html"> | 1808 | <trans-unit id="1435317307066082710" datatype="html"> |
1801 | <source>Hide the video until a specific date</source> | 1809 | <source>Hide the video until a specific date</source> |
1802 | <target state="new">Hide the video until a specific date</target> | 1810 | <target state="new">Hide the video until a specific date</target> |
1803 | 1811 | ||
1804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1805 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1813 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1806 | <source>Video background image</source> | 1814 | <source>Video background image</source> |
1807 | <target state="new">Video background image</target> | 1815 | <target state="new">Video background image</target> |
@@ -2448,7 +2456,7 @@ The link will expire within 1 hour.</target> | |||
2448 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2456 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2449 | <context context-type="linenumber">8</context> | 2457 | <context context-type="linenumber">8</context> |
2450 | </context-group> | 2458 | </context-group> |
2451 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2459 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2452 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2460 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2453 | <context-group purpose="location"> | 2461 | <context-group purpose="location"> |
2454 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2462 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -3973,107 +3981,97 @@ The link will expire within 1 hour.</target> | |||
3973 | <source>Basic configuration</source> | 3981 | <source>Basic configuration</source> |
3974 | <target state="new">Basic configuration</target> | 3982 | <target state="new">Basic configuration</target> |
3975 | 3983 | ||
3976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 3984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
3985 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
3986 | <context-group purpose="location"> | ||
3987 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
3988 | <context context-type="linenumber">700</context> | ||
3989 | </context-group> | ||
3990 | </trans-unit> | ||
3977 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 3991 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
3978 | <source>TWITTER</source> | 3992 | <source>TWITTER</source> |
3979 | <target state="new">TWITTER</target> | 3993 | <target state="new">TWITTER</target> |
3980 | 3994 | ||
3981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 3995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
3982 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 3996 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
3983 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 3997 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
3984 | <target state="new"> | 3998 | <target state="new"> |
3985 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 3999 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
3986 | </target> | 4000 | </target> |
3987 | 4001 | ||
3988 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
3989 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4003 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
3990 | <source>Your Twitter username</source> | 4004 | <source>Your Twitter username</source> |
3991 | <target state="new">Your Twitter username</target> | 4005 | <target state="new">Your Twitter username</target> |
3992 | 4006 | ||
3993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
3994 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4008 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
3995 | <source>Instance allowed by Twitter</source> | 4009 | <source>Instance allowed by Twitter</source> |
3996 | <target state="new">Instance allowed by Twitter</target> | 4010 | <target state="new">Instance allowed by Twitter</target> |
3997 | 4011 | ||
3998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
3999 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4013 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4000 | 4014 | ||
4001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4002 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4016 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4003 | <source>LIVE</source><target state="new">LIVE</target> | 4017 | <source>LIVE</source><target state="new">LIVE</target> |
4004 | 4018 | ||
4005 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4006 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4020 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4007 | 4021 | ||
4008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4009 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4023 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4010 | 4024 | ||
4011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4012 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4026 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4013 | 4027 | ||
4014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4015 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4029 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4016 | 4030 | ||
4017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4018 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4032 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4019 | 4033 | ||
4020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4021 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4035 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4022 | <context-group purpose="location"> | 4036 | |
4023 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4024 | <context context-type="linenumber">751</context> | ||
4025 | </context-group> | ||
4026 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4027 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4038 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4028 | 4039 | ||
4029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4030 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4041 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4031 | <context-group purpose="location"> | 4042 | |
4032 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4033 | <context context-type="linenumber">759</context> | ||
4034 | </context-group> | ||
4035 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4036 | <source>Max live duration</source><target state="new">Max live duration</target> | 4044 | <source>Max live duration</source><target state="new">Max live duration</target> |
4037 | 4045 | ||
4038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4039 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4047 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4040 | 4048 | ||
4041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4042 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4050 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4043 | 4051 | ||
4044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4045 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4053 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4046 | 4054 | ||
4047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4048 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4056 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4049 | 4057 | ||
4050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4051 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4059 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4052 | 4060 | ||
4053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4054 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4062 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4055 | <context-group purpose="location"> | ||
4056 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4057 | <context context-type="linenumber">793</context> | ||
4058 | </context-group> | ||
4059 | <context-group purpose="location"> | ||
4060 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4061 | <context context-type="linenumber">935</context> | ||
4062 | </context-group> | ||
4063 | </trans-unit> | ||
4064 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4065 | <source>Services</source> | ||
4066 | <target state="new">Services</target> | ||
4067 | 4063 | ||
4068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4064 | |
4065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4066 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4069 | <source>Live streaming</source><target state="new">Live streaming</target> | 4067 | <source>Live streaming</source><target state="new">Live streaming</target> |
4070 | 4068 | ||
4071 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4072 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4070 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4073 | <source>TRANSCODING</source> | 4071 | <source>TRANSCODING</source> |
4074 | <target state="new">TRANSCODING</target> | 4072 | <target state="new">TRANSCODING</target> |
4075 | 4073 | ||
4076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4077 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4075 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4078 | <source>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.</source> | 4076 | <source>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.</source> |
4079 | <target state="new"> | 4077 | <target state="new"> |
@@ -4081,55 +4079,53 @@ The link will expire within 1 hour.</target> | |||
4081 | resources, this is a critical part of PeerTube, so tread carefully. | 4079 | resources, this is a critical part of PeerTube, so tread carefully. |
4082 | </target> | 4080 | </target> |
4083 | 4081 | ||
4084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4085 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4083 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4086 | <source>Transcoding enabled</source> | 4084 | <source>Transcoding enabled</source> |
4087 | <target state="new">Transcoding enabled</target> | 4085 | <target state="new">Transcoding enabled</target> |
4088 | 4086 | ||
4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4090 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4088 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4091 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4089 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4092 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4090 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4093 | 4091 | ||
4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4093 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4094 | |||
4095 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4096 | |||
4097 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4098 | <context-group purpose="location"> | ||
4099 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4100 | <context context-type="linenumber">759,763</context> | ||
4101 | </context-group> | ||
4102 | </trans-unit> | ||
4095 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4103 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4096 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4104 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4097 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4105 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4098 | 4106 | ||
4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4100 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4108 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4101 | <source>Allow additional extensions</source> | 4109 | <source>Allow additional extensions</source> |
4102 | <target state="new">Allow additional extensions</target> | 4110 | <target state="new">Allow additional extensions</target> |
4103 | 4111 | ||
4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4105 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4113 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4106 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4114 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4107 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4115 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4108 | 4116 | ||
4109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4110 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4118 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4111 | <source>Allow audio files upload</source> | 4119 | <source>Allow audio files upload</source> |
4112 | <target state="new">Allow audio files upload</target> | 4120 | <target state="new">Allow audio files upload</target> |
4113 | 4121 | ||
4114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4115 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4123 | |
4116 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4117 | <target state="new"> | ||
4118 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4119 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4120 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4121 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4122 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4123 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4124 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4125 | </target> | ||
4126 | |||
4127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4128 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4124 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4129 | <source>WebTorrent support enabled</source> | 4125 | <source>WebTorrent support enabled</source> |
4130 | <target state="new">WebTorrent support enabled</target> | 4126 | <target state="new">WebTorrent support enabled</target> |
4131 | 4127 | ||
4132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4133 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4129 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4134 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4130 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4135 | <target state="new"> | 4131 | <target state="new"> |
@@ -4149,73 +4145,67 @@ The link will expire within 1 hour.</target> | |||
4149 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4145 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4150 | </target> | 4146 | </target> |
4151 | 4147 | ||
4152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4153 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4149 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4154 | <source>HLS with P2P support enabled</source> | 4150 | <source>HLS with P2P support enabled</source> |
4155 | <target state="new">HLS with P2P support enabled</target> | 4151 | <target state="new">HLS with P2P support enabled</target> |
4156 | 4152 | ||
4157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4158 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4154 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4159 | <source>Transcoding threads</source> | 4155 | <source>Transcoding threads</source> |
4160 | <target state="new">Transcoding threads</target> | 4156 | <target state="new">Transcoding threads</target> |
4161 | 4157 | ||
4162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4163 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4159 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4164 | <source>Resolutions to generate</source> | 4160 | <source>Resolutions to generate</source> |
4165 | <target state="new">Resolutions to generate</target> | 4161 | <target state="new">Resolutions to generate</target> |
4166 | 4162 | ||
4167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4168 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4164 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4169 | <source>CACHE</source> | 4165 | <source>CACHE</source> |
4170 | <target state="new">CACHE</target> | 4166 | <target state="new">CACHE</target> |
4171 | 4167 | ||
4172 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4173 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4169 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4174 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4170 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4175 | <target state="new"> | 4171 | <target state="new"> |
4176 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4172 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4177 | </target> | 4173 | </target> |
4178 | 4174 | ||
4179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4180 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4176 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4181 | <source>Number of previews to keep in cache</source> | 4177 | <source>Number of previews to keep in cache</source> |
4182 | <target state="new">Number of previews to keep in cache</target> | 4178 | <target state="new">Number of previews to keep in cache</target> |
4183 | 4179 | ||
4184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4185 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4181 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4186 | <context-group purpose="location"> | 4182 | |
4187 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4188 | <context context-type="linenumber">986</context> | ||
4189 | </context-group> | ||
4190 | </trans-unit> | ||
4191 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4184 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4192 | <source>Number of video captions to keep in cache</source> | 4185 | <source>Number of video captions to keep in cache</source> |
4193 | <target state="new">Number of video captions to keep in cache</target> | 4186 | <target state="new">Number of video captions to keep in cache</target> |
4194 | 4187 | ||
4195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4196 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4189 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4197 | <context-group purpose="location"> | 4190 | |
4198 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4199 | <context context-type="linenumber">998</context> | ||
4200 | </context-group> | ||
4201 | </trans-unit> | ||
4202 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4192 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4203 | <source>CUSTOMIZATIONS</source> | 4193 | <source>CUSTOMIZATIONS</source> |
4204 | <target state="new">CUSTOMIZATIONS</target> | 4194 | <target state="new">CUSTOMIZATIONS</target> |
4205 | 4195 | ||
4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4207 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4197 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4208 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4198 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4209 | <target state="new"> | 4199 | <target state="new"> |
4210 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4200 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4211 | </target> | 4201 | </target> |
4212 | 4202 | ||
4213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4214 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4204 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4215 | <source>JavaScript</source> | 4205 | <source>JavaScript</source> |
4216 | <target state="new">JavaScript</target> | 4206 | <target state="new">JavaScript</target> |
4217 | 4207 | ||
4218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4219 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4209 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4220 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4210 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4221 | <target state="new"> | 4211 | <target state="new"> |
@@ -4225,7 +4215,7 @@ The link will expire within 1 hour.</target> | |||
4225 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4215 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4226 | </target> | 4216 | </target> |
4227 | 4217 | ||
4228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4229 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4219 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4230 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4220 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4231 | color: red; | 4221 | color: red; |
@@ -4257,23 +4247,23 @@ The link will expire within 1 hour.</target> | |||
4257 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4247 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4258 | </target> | 4248 | </target> |
4259 | 4249 | ||
4260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4261 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4251 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4262 | 4252 | ||
4263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4264 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4254 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4265 | 4255 | ||
4266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4267 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4257 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4268 | <source>Advanced configuration</source> | 4258 | <source>Advanced configuration</source> |
4269 | <target state="new">Advanced configuration</target> | 4259 | <target state="new">Advanced configuration</target> |
4270 | 4260 | ||
4271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4272 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4262 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4273 | <source>Update configuration</source> | 4263 | <source>Update configuration</source> |
4274 | <target state="new">Update configuration</target> | 4264 | <target state="new">Update configuration</target> |
4275 | 4265 | ||
4276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4277 | 4267 | ||
4278 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4268 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4279 | <source>VIDEO SETTINGS</source> | 4269 | <source>VIDEO SETTINGS</source> |
@@ -6939,7 +6929,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6939 | <source>any language</source> | 6929 | <source>any language</source> |
6940 | <target state="new">any language</target> | 6930 | <target state="new">any language</target> |
6941 | 6931 | ||
6942 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 6932 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
6943 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 6933 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
6944 | 6934 | ||
6945 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 6935 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -6947,22 +6937,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6947 | <source>hide</source> | 6937 | <source>hide</source> |
6948 | <target state="new">hide</target> | 6938 | <target state="new">hide</target> |
6949 | 6939 | ||
6950 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6940 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
6951 | <trans-unit id="8603861867909474404" datatype="html"> | 6941 | <trans-unit id="8603861867909474404" datatype="html"> |
6952 | <source>blur</source> | 6942 | <source>blur</source> |
6953 | <target state="new">blur</target> | 6943 | <target state="new">blur</target> |
6954 | 6944 | ||
6955 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
6956 | <trans-unit id="4534458451100881847" datatype="html"> | 6946 | <trans-unit id="4534458451100881847" datatype="html"> |
6957 | <source>display</source> | 6947 | <source>display</source> |
6958 | <target state="new">display</target> | 6948 | <target state="new">display</target> |
6959 | 6949 | ||
6960 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6950 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
6961 | <trans-unit id="4467323362722952678" datatype="html"> | 6951 | <trans-unit id="4467323362722952678" datatype="html"> |
6962 | <source>Unknown</source> | 6952 | <source>Unknown</source> |
6963 | <target state="new">Unknown</target> | 6953 | <target state="new">Unknown</target> |
6964 | 6954 | ||
6965 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 6955 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
6966 | <trans-unit id="8781423666414310853" datatype="html"> | 6956 | <trans-unit id="8781423666414310853" datatype="html"> |
6967 | <source>Your password has been successfully reset!</source> | 6957 | <source>Your password has been successfully reset!</source> |
6968 | <target state="new">Your password has been successfully reset!</target> | 6958 | <target state="new">Your password has been successfully reset!</target> |
@@ -7945,12 +7935,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7945 | <source>Instance languages</source> | 7935 | <source>Instance languages</source> |
7946 | <target state="new">Instance languages</target> | 7936 | <target state="new">Instance languages</target> |
7947 | 7937 | ||
7948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
7949 | <trans-unit id="40119547597591062" datatype="html"> | 7939 | <trans-unit id="40119547597591062" datatype="html"> |
7950 | <source>All languages</source> | 7940 | <source>All languages</source> |
7951 | <target state="new">All languages</target> | 7941 | <target state="new">All languages</target> |
7952 | 7942 | ||
7953 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 7943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
7954 | <trans-unit id="996392855508119363" datatype="html"> | 7944 | <trans-unit id="996392855508119363" datatype="html"> |
7955 | <source>Hidden</source> | 7945 | <source>Hidden</source> |
7956 | <target state="new">Hidden</target> | 7946 | <target state="new">Hidden</target> |
@@ -8703,7 +8693,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8703 | <source>Only users of this instance can see this video</source> | 8693 | <source>Only users of this instance can see this video</source> |
8704 | <target state="new">Only users of this instance can see this video</target> | 8694 | <target state="new">Only users of this instance can see this video</target> |
8705 | 8695 | ||
8706 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8696 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8697 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8698 | <context-group purpose="location"> | ||
8699 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8700 | <context context-type="linenumber">211</context> | ||
8701 | </context-group> | ||
8702 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8703 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8704 | <context-group purpose="location"> | ||
8705 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8706 | <context context-type="linenumber">214</context> | ||
8707 | </context-group> | ||
8708 | </trans-unit> | ||
8707 | <trans-unit id="ngb.alert.close" datatype="html"> | 8709 | <trans-unit id="ngb.alert.close" datatype="html"> |
8708 | <source>Close</source> | 8710 | <source>Close</source> |
8709 | <target state="new">Close</target> | 8711 | <target state="new">Close</target> |
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index 23efecfdf..8886939b5 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf | |||
@@ -403,17 +403,25 @@ | |||
403 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> переглядів} } | 403 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> переглядів} } |
404 | </target> | 404 | </target> |
405 | 405 | ||
406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
407 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
408 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
409 | "/> </target> | ||
410 | <context-group purpose="location"> | ||
411 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
412 | <context context-type="linenumber">32,33</context> | ||
413 | </context-group> | ||
414 | </trans-unit> | ||
407 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 415 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
408 | <source>Blocked</source> | 416 | <source>Blocked</source> |
409 | <target state="translated">Заблоковано</target> | 417 | <target state="translated">Заблоковано</target> |
410 | 418 | ||
411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
412 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 420 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
413 | <source>Sensitive</source> | 421 | <source>Sensitive</source> |
414 | <target state="translated">Чутливе</target> | 422 | <target state="translated">Чутливе</target> |
415 | 423 | ||
416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
417 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 425 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
418 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 426 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
419 | <target state="translated">{VAR_PLURAL, plural, =0 {Немає відео} =1 {1 відео} інші { | 427 | <target state="translated">{VAR_PLURAL, plural, =0 {Немає відео} =1 {1 відео} інші { |
@@ -1150,13 +1158,7 @@ The link will expire within 1 hour.</target> | |||
1150 | <target state="new">Sensitive:</target> | 1158 | <target state="new">Sensitive:</target> |
1151 | 1159 | ||
1152 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1160 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1153 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1161 | |
1154 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1155 | <target state="new">Interface: | ||
1156 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1157 | </target> | ||
1158 | |||
1159 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1160 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1162 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1161 | <source>Help share videos</source> | 1163 | <source>Help share videos</source> |
1162 | <target state="new">Help share videos</target> | 1164 | <target state="new">Help share videos</target> |
@@ -1240,7 +1242,13 @@ The link will expire within 1 hour.</target> | |||
1240 | <source>Videos</source> | 1242 | <source>Videos</source> |
1241 | <target state="new">Videos</target> | 1243 | <target state="new">Videos</target> |
1242 | 1244 | ||
1243 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1245 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1246 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1247 | <context-group purpose="location"> | ||
1248 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1249 | <context context-type="linenumber">171</context> | ||
1250 | </context-group> | ||
1251 | </trans-unit> | ||
1244 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1252 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1245 | <source>Playlists</source> | 1253 | <source>Playlists</source> |
1246 | <target state="new">Playlists</target> | 1254 | <target state="new">Playlists</target> |
@@ -1812,12 +1820,12 @@ The link will expire within 1 hour.</target> | |||
1812 | <source>Scheduled</source> | 1820 | <source>Scheduled</source> |
1813 | <target state="new">Scheduled</target> | 1821 | <target state="new">Scheduled</target> |
1814 | 1822 | ||
1815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1816 | <trans-unit id="1435317307066082710" datatype="html"> | 1824 | <trans-unit id="1435317307066082710" datatype="html"> |
1817 | <source>Hide the video until a specific date</source> | 1825 | <source>Hide the video until a specific date</source> |
1818 | <target state="new">Hide the video until a specific date</target> | 1826 | <target state="new">Hide the video until a specific date</target> |
1819 | 1827 | ||
1820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1821 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 1829 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1822 | <source>Video background image</source> | 1830 | <source>Video background image</source> |
1823 | <target state="new">Video background image</target> | 1831 | <target state="new">Video background image</target> |
@@ -2507,7 +2515,7 @@ The link will expire within 1 hour.</target> | |||
2507 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2515 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2508 | <context context-type="linenumber">8</context> | 2516 | <context context-type="linenumber">8</context> |
2509 | </context-group> | 2517 | </context-group> |
2510 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2518 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2511 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2519 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2512 | <context-group purpose="location"> | 2520 | <context-group purpose="location"> |
2513 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2521 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4044,107 +4052,97 @@ The link will expire within 1 hour.</target> | |||
4044 | <source>Basic configuration</source> | 4052 | <source>Basic configuration</source> |
4045 | <target state="new">Basic configuration</target> | 4053 | <target state="new">Basic configuration</target> |
4046 | 4054 | ||
4047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4056 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4057 | <context-group purpose="location"> | ||
4058 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4059 | <context context-type="linenumber">700</context> | ||
4060 | </context-group> | ||
4061 | </trans-unit> | ||
4048 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4062 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4049 | <source>TWITTER</source> | 4063 | <source>TWITTER</source> |
4050 | <target state="new">TWITTER</target> | 4064 | <target state="new">TWITTER</target> |
4051 | 4065 | ||
4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4053 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4067 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4054 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4068 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4055 | <target state="new"> | 4069 | <target state="new"> |
4056 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4070 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4057 | </target> | 4071 | </target> |
4058 | 4072 | ||
4059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4060 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4074 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4061 | <source>Your Twitter username</source> | 4075 | <source>Your Twitter username</source> |
4062 | <target state="new">Your Twitter username</target> | 4076 | <target state="new">Your Twitter username</target> |
4063 | 4077 | ||
4064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4065 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4079 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4066 | <source>Instance allowed by Twitter</source> | 4080 | <source>Instance allowed by Twitter</source> |
4067 | <target state="new">Instance allowed by Twitter</target> | 4081 | <target state="new">Instance allowed by Twitter</target> |
4068 | 4082 | ||
4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4070 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4084 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4071 | 4085 | ||
4072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4073 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4087 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4074 | <source>LIVE</source><target state="new">LIVE</target> | 4088 | <source>LIVE</source><target state="new">LIVE</target> |
4075 | 4089 | ||
4076 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4077 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4091 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4078 | 4092 | ||
4079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4080 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4094 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4081 | 4095 | ||
4082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4083 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4097 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4084 | 4098 | ||
4085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4086 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4100 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4087 | 4101 | ||
4088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4089 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4103 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4090 | 4104 | ||
4091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4092 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4106 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4093 | <context-group purpose="location"> | 4107 | |
4094 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4095 | <context context-type="linenumber">751</context> | ||
4096 | </context-group> | ||
4097 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4098 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4109 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4099 | 4110 | ||
4100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4101 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4112 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4102 | <context-group purpose="location"> | 4113 | |
4103 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4104 | <context context-type="linenumber">759</context> | ||
4105 | </context-group> | ||
4106 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4107 | <source>Max live duration</source><target state="new">Max live duration</target> | 4115 | <source>Max live duration</source><target state="new">Max live duration</target> |
4108 | 4116 | ||
4109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4110 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4118 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4111 | 4119 | ||
4112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4113 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4121 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4114 | 4122 | ||
4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4116 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4124 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4117 | 4125 | ||
4118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4119 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4127 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4120 | 4128 | ||
4121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4122 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4130 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4123 | 4131 | ||
4124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4125 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4133 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4126 | <context-group purpose="location"> | ||
4127 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4128 | <context context-type="linenumber">793</context> | ||
4129 | </context-group> | ||
4130 | <context-group purpose="location"> | ||
4131 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4132 | <context context-type="linenumber">935</context> | ||
4133 | </context-group> | ||
4134 | </trans-unit> | ||
4135 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4136 | <source>Services</source> | ||
4137 | <target state="new">Services</target> | ||
4138 | 4134 | ||
4139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4135 | |
4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4137 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4140 | <source>Live streaming</source><target state="new">Live streaming</target> | 4138 | <source>Live streaming</source><target state="new">Live streaming</target> |
4141 | 4139 | ||
4142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4140 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4143 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4141 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4144 | <source>TRANSCODING</source> | 4142 | <source>TRANSCODING</source> |
4145 | <target state="new">TRANSCODING</target> | 4143 | <target state="new">TRANSCODING</target> |
4146 | 4144 | ||
4147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4148 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4146 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4149 | <source>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.</source> | 4147 | <source>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.</source> |
4150 | <target state="new"> | 4148 | <target state="new"> |
@@ -4152,55 +4150,53 @@ The link will expire within 1 hour.</target> | |||
4152 | resources, this is a critical part of PeerTube, so tread carefully. | 4150 | resources, this is a critical part of PeerTube, so tread carefully. |
4153 | </target> | 4151 | </target> |
4154 | 4152 | ||
4155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4156 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4154 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4157 | <source>Transcoding enabled</source> | 4155 | <source>Transcoding enabled</source> |
4158 | <target state="new">Transcoding enabled</target> | 4156 | <target state="new">Transcoding enabled</target> |
4159 | 4157 | ||
4160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4161 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4159 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4162 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4160 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4163 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4161 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4164 | 4162 | ||
4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4164 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4165 | |||
4166 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4167 | |||
4168 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4169 | <context-group purpose="location"> | ||
4170 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4171 | <context context-type="linenumber">759,763</context> | ||
4172 | </context-group> | ||
4173 | </trans-unit> | ||
4166 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4174 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4167 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4175 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4168 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4176 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4169 | 4177 | ||
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4171 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4179 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4172 | <source>Allow additional extensions</source> | 4180 | <source>Allow additional extensions</source> |
4173 | <target state="new">Allow additional extensions</target> | 4181 | <target state="new">Allow additional extensions</target> |
4174 | 4182 | ||
4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4176 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4184 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4177 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4185 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4178 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4186 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4179 | 4187 | ||
4180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4181 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4189 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4182 | <source>Allow audio files upload</source> | 4190 | <source>Allow audio files upload</source> |
4183 | <target state="new">Allow audio files upload</target> | 4191 | <target state="new">Allow audio files upload</target> |
4184 | 4192 | ||
4185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4186 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4194 | |
4187 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4188 | <target state="new"> | ||
4189 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4190 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4191 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4192 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4193 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4194 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4195 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4196 | </target> | ||
4197 | |||
4198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4199 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4195 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4200 | <source>WebTorrent support enabled</source> | 4196 | <source>WebTorrent support enabled</source> |
4201 | <target state="new">WebTorrent support enabled</target> | 4197 | <target state="new">WebTorrent support enabled</target> |
4202 | 4198 | ||
4203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4204 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4200 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4205 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4201 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4206 | <target state="new"> | 4202 | <target state="new"> |
@@ -4220,73 +4216,67 @@ The link will expire within 1 hour.</target> | |||
4220 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4216 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4221 | </target> | 4217 | </target> |
4222 | 4218 | ||
4223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4224 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4220 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4225 | <source>HLS with P2P support enabled</source> | 4221 | <source>HLS with P2P support enabled</source> |
4226 | <target state="new">HLS with P2P support enabled</target> | 4222 | <target state="new">HLS with P2P support enabled</target> |
4227 | 4223 | ||
4228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4229 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4225 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4230 | <source>Transcoding threads</source> | 4226 | <source>Transcoding threads</source> |
4231 | <target state="new">Transcoding threads</target> | 4227 | <target state="new">Transcoding threads</target> |
4232 | 4228 | ||
4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4234 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4230 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4235 | <source>Resolutions to generate</source> | 4231 | <source>Resolutions to generate</source> |
4236 | <target state="new">Resolutions to generate</target> | 4232 | <target state="new">Resolutions to generate</target> |
4237 | 4233 | ||
4238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4239 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4235 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4240 | <source>CACHE</source> | 4236 | <source>CACHE</source> |
4241 | <target state="new">CACHE</target> | 4237 | <target state="new">CACHE</target> |
4242 | 4238 | ||
4243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4244 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4240 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4245 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4241 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4246 | <target state="new"> | 4242 | <target state="new"> |
4247 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4243 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4248 | </target> | 4244 | </target> |
4249 | 4245 | ||
4250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4251 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4247 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4252 | <source>Number of previews to keep in cache</source> | 4248 | <source>Number of previews to keep in cache</source> |
4253 | <target state="new">Number of previews to keep in cache</target> | 4249 | <target state="new">Number of previews to keep in cache</target> |
4254 | 4250 | ||
4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4256 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4252 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4257 | <context-group purpose="location"> | 4253 | |
4258 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4259 | <context context-type="linenumber">986</context> | ||
4260 | </context-group> | ||
4261 | </trans-unit> | ||
4262 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4255 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4263 | <source>Number of video captions to keep in cache</source> | 4256 | <source>Number of video captions to keep in cache</source> |
4264 | <target state="new">Number of video captions to keep in cache</target> | 4257 | <target state="new">Number of video captions to keep in cache</target> |
4265 | 4258 | ||
4266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4267 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4260 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4268 | <context-group purpose="location"> | 4261 | |
4269 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4270 | <context context-type="linenumber">998</context> | ||
4271 | </context-group> | ||
4272 | </trans-unit> | ||
4273 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4263 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4274 | <source>CUSTOMIZATIONS</source> | 4264 | <source>CUSTOMIZATIONS</source> |
4275 | <target state="new">CUSTOMIZATIONS</target> | 4265 | <target state="new">CUSTOMIZATIONS</target> |
4276 | 4266 | ||
4277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4278 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4268 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4279 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4269 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4280 | <target state="new"> | 4270 | <target state="new"> |
4281 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4271 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4282 | </target> | 4272 | </target> |
4283 | 4273 | ||
4284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4285 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4275 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4286 | <source>JavaScript</source> | 4276 | <source>JavaScript</source> |
4287 | <target state="new">JavaScript</target> | 4277 | <target state="new">JavaScript</target> |
4288 | 4278 | ||
4289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4290 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4280 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4291 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4281 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4292 | <target state="new"> | 4282 | <target state="new"> |
@@ -4296,7 +4286,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4286 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4297 | </target> | 4287 | </target> |
4298 | 4288 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4300 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4290 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4301 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4291 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4302 | color: red; | 4292 | color: red; |
@@ -4328,23 +4318,23 @@ The link will expire within 1 hour.</target> | |||
4328 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4318 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4329 | </target> | 4319 | </target> |
4330 | 4320 | ||
4331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4332 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4322 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4333 | 4323 | ||
4334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4335 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4325 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4336 | 4326 | ||
4337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4338 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4328 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4339 | <source>Advanced configuration</source> | 4329 | <source>Advanced configuration</source> |
4340 | <target state="new">Advanced configuration</target> | 4330 | <target state="new">Advanced configuration</target> |
4341 | 4331 | ||
4342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4343 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4333 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4344 | <source>Update configuration</source> | 4334 | <source>Update configuration</source> |
4345 | <target state="new">Update configuration</target> | 4335 | <target state="new">Update configuration</target> |
4346 | 4336 | ||
4347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4348 | 4338 | ||
4349 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4339 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4350 | <source>VIDEO SETTINGS</source> | 4340 | <source>VIDEO SETTINGS</source> |
@@ -7064,7 +7054,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7064 | <source>any language</source> | 7054 | <source>any language</source> |
7065 | <target state="new">any language</target> | 7055 | <target state="new">any language</target> |
7066 | 7056 | ||
7067 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7057 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7068 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7058 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7069 | 7059 | ||
7070 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7060 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7072,22 +7062,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7072 | <source>hide</source> | 7062 | <source>hide</source> |
7073 | <target state="new">hide</target> | 7063 | <target state="new">hide</target> |
7074 | 7064 | ||
7075 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7065 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7076 | <trans-unit id="8603861867909474404" datatype="html"> | 7066 | <trans-unit id="8603861867909474404" datatype="html"> |
7077 | <source>blur</source> | 7067 | <source>blur</source> |
7078 | <target state="new">blur</target> | 7068 | <target state="new">blur</target> |
7079 | 7069 | ||
7080 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7070 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7081 | <trans-unit id="4534458451100881847" datatype="html"> | 7071 | <trans-unit id="4534458451100881847" datatype="html"> |
7082 | <source>display</source> | 7072 | <source>display</source> |
7083 | <target state="new">display</target> | 7073 | <target state="new">display</target> |
7084 | 7074 | ||
7085 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7075 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7086 | <trans-unit id="4467323362722952678" datatype="html"> | 7076 | <trans-unit id="4467323362722952678" datatype="html"> |
7087 | <source>Unknown</source> | 7077 | <source>Unknown</source> |
7088 | <target state="new">Unknown</target> | 7078 | <target state="new">Unknown</target> |
7089 | 7079 | ||
7090 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7080 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7091 | <trans-unit id="8781423666414310853" datatype="html"> | 7081 | <trans-unit id="8781423666414310853" datatype="html"> |
7092 | <source>Your password has been successfully reset!</source> | 7082 | <source>Your password has been successfully reset!</source> |
7093 | <target state="new">Your password has been successfully reset!</target> | 7083 | <target state="new">Your password has been successfully reset!</target> |
@@ -8070,12 +8060,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8070 | <source>Instance languages</source> | 8060 | <source>Instance languages</source> |
8071 | <target state="new">Instance languages</target> | 8061 | <target state="new">Instance languages</target> |
8072 | 8062 | ||
8073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8074 | <trans-unit id="40119547597591062" datatype="html"> | 8064 | <trans-unit id="40119547597591062" datatype="html"> |
8075 | <source>All languages</source> | 8065 | <source>All languages</source> |
8076 | <target state="new">All languages</target> | 8066 | <target state="new">All languages</target> |
8077 | 8067 | ||
8078 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8068 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8079 | <trans-unit id="996392855508119363" datatype="html"> | 8069 | <trans-unit id="996392855508119363" datatype="html"> |
8080 | <source>Hidden</source> | 8070 | <source>Hidden</source> |
8081 | <target state="new">Hidden</target> | 8071 | <target state="new">Hidden</target> |
@@ -8828,7 +8818,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8828 | <source>Only users of this instance can see this video</source> | 8818 | <source>Only users of this instance can see this video</source> |
8829 | <target state="new">Only users of this instance can see this video</target> | 8819 | <target state="new">Only users of this instance can see this video</target> |
8830 | 8820 | ||
8831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> | 8821 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8822 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8823 | <context-group purpose="location"> | ||
8824 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8825 | <context context-type="linenumber">211</context> | ||
8826 | </context-group> | ||
8827 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8828 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8829 | <context-group purpose="location"> | ||
8830 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8831 | <context context-type="linenumber">214</context> | ||
8832 | </context-group> | ||
8833 | </trans-unit> | ||
8832 | <trans-unit id="ngb.alert.close" datatype="html"> | 8834 | <trans-unit id="ngb.alert.close" datatype="html"> |
8833 | <source>Close</source> | 8835 | <source>Close</source> |
8834 | <target state="new">Close</target> | 8836 | <target state="new">Close</target> |
diff --git a/client/src/locale/angular.vi-VN.xlf b/client/src/locale/angular.vi-VN.xlf index 4c361a5a5..ee63ca53d 100644 --- a/client/src/locale/angular.vi-VN.xlf +++ b/client/src/locale/angular.vi-VN.xlf | |||
@@ -518,12 +518,20 @@ | |||
518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 518 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
519 | </target> | 519 | </target> |
520 | 520 | ||
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
522 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
523 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
524 | "/> </target> | ||
525 | <context-group purpose="location"> | ||
526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
527 | <context context-type="linenumber">32,33</context> | ||
528 | </context-group> | ||
529 | </trans-unit> | ||
522 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
523 | <source>Blocked</source> | 531 | <source>Blocked</source> |
524 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
525 | 533 | ||
526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
527 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
528 | <source> | 536 | <source> |
529 | Sensitive | 537 | Sensitive |
@@ -532,7 +540,7 @@ | |||
532 | Nhạy cảm | 540 | Nhạy cảm |
533 | </target> | 541 | </target> |
534 | 542 | ||
535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
536 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | 544 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
537 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 545 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
538 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 546 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
@@ -1388,13 +1396,7 @@ The link will expire within 1 hour.</target> | |||
1388 | <target state="new">Sensitive:</target> | 1396 | <target state="new">Sensitive:</target> |
1389 | 1397 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1391 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1399 | |
1392 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1393 | <target state="new">Interface: | ||
1394 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1395 | </target> | ||
1396 | |||
1397 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1398 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1400 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1399 | <source>Help share videos</source> | 1401 | <source>Help share videos</source> |
1400 | <target state="new">Help share videos</target> | 1402 | <target state="new">Help share videos</target> |
@@ -1470,7 +1472,13 @@ The link will expire within 1 hour.</target> | |||
1470 | <source>Videos</source> | 1472 | <source>Videos</source> |
1471 | <target>Video</target> | 1473 | <target>Video</target> |
1472 | 1474 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1476 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1479 | <context context-type="linenumber">171</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1474 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1482 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1475 | <source>Playlists</source> | 1483 | <source>Playlists</source> |
1476 | <target>Danh sách phát</target> | 1484 | <target>Danh sách phát</target> |
@@ -2105,12 +2113,12 @@ The link will expire within 1 hour.</target> | |||
2105 | <source>Scheduled</source> | 2113 | <source>Scheduled</source> |
2106 | <target>Đã lên lịch</target> | 2114 | <target>Đã lên lịch</target> |
2107 | 2115 | ||
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
2109 | <trans-unit id="1435317307066082710" datatype="html"> | 2117 | <trans-unit id="1435317307066082710" datatype="html"> |
2110 | <source>Hide the video until a specific date</source> | 2118 | <source>Hide the video until a specific date</source> |
2111 | <target state="new">Hide the video until a specific date</target> | 2119 | <target state="new">Hide the video until a specific date</target> |
2112 | 2120 | ||
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
2114 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2122 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2115 | <source>Video background image</source> | 2123 | <source>Video background image</source> |
2116 | <target state="new">Video background image</target> | 2124 | <target state="new">Video background image</target> |
@@ -2789,7 +2797,7 @@ The link will expire within 1 hour.</target> | |||
2789 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2797 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2790 | <context context-type="linenumber">8</context> | 2798 | <context context-type="linenumber">8</context> |
2791 | </context-group> | 2799 | </context-group> |
2792 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2800 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2793 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2801 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2794 | <context-group purpose="location"> | 2802 | <context-group purpose="location"> |
2795 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2803 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4432,12 +4440,18 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>Basic configuration</source> | 4440 | <source>Basic configuration</source> |
4433 | <target state="new">Basic configuration</target> | 4441 | <target state="new">Basic configuration</target> |
4434 | 4442 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4444 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4445 | <context-group purpose="location"> | ||
4446 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4447 | <context context-type="linenumber">700</context> | ||
4448 | </context-group> | ||
4449 | </trans-unit> | ||
4436 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4450 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4437 | <source>TWITTER</source> | 4451 | <source>TWITTER</source> |
4438 | <target state="new">TWITTER</target> | 4452 | <target state="new">TWITTER</target> |
4439 | 4453 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4441 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4455 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4442 | <source> | 4456 | <source> |
4443 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4457 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
@@ -4446,95 +4460,79 @@ The link will expire within 1 hour.</target> | |||
4446 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4460 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4447 | </target> | 4461 | </target> |
4448 | 4462 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4450 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4464 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4451 | <source>Your Twitter username</source> | 4465 | <source>Your Twitter username</source> |
4452 | <target state="new">Your Twitter username</target> | 4466 | <target state="new">Your Twitter username</target> |
4453 | 4467 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4455 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4469 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4456 | <source>Instance allowed by Twitter</source> | 4470 | <source>Instance allowed by Twitter</source> |
4457 | <target state="new">Instance allowed by Twitter</target> | 4471 | <target state="new">Instance allowed by Twitter</target> |
4458 | 4472 | ||
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4460 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4474 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4461 | 4475 | ||
4462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4463 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4477 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4464 | <source>LIVE</source><target state="new">LIVE</target> | 4478 | <source>LIVE</source><target state="new">LIVE</target> |
4465 | 4479 | ||
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4467 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4481 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4468 | 4482 | ||
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4470 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4484 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4471 | 4485 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4473 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4487 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4474 | 4488 | ||
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4476 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4490 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4477 | 4491 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4479 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4493 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4480 | 4494 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4482 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4496 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4483 | <context-group purpose="location"> | 4497 | |
4484 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4485 | <context context-type="linenumber">751</context> | ||
4486 | </context-group> | ||
4487 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4488 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4499 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4489 | 4500 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4491 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4502 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4492 | <context-group purpose="location"> | 4503 | |
4493 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4494 | <context context-type="linenumber">759</context> | ||
4495 | </context-group> | ||
4496 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4497 | <source>Max live duration</source><target state="new">Max live duration</target> | 4505 | <source>Max live duration</source><target state="new">Max live duration</target> |
4498 | 4506 | ||
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4500 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4508 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4501 | 4509 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4503 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4511 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4504 | 4512 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4506 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4514 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4507 | 4515 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4509 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4517 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4510 | 4518 | ||
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4512 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4520 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4513 | 4521 | ||
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4515 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4523 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4516 | <context-group purpose="location"> | ||
4517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4518 | <context context-type="linenumber">793</context> | ||
4519 | </context-group> | ||
4520 | <context-group purpose="location"> | ||
4521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4522 | <context context-type="linenumber">935</context> | ||
4523 | </context-group> | ||
4524 | </trans-unit> | ||
4525 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | ||
4526 | <source>Services</source> | ||
4527 | <target state="new">Services</target> | ||
4528 | 4524 | ||
4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4525 | |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4527 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4530 | <source>Live streaming</source><target state="new">Live streaming</target> | 4528 | <source>Live streaming</source><target state="new">Live streaming</target> |
4531 | 4529 | ||
4532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4533 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4531 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4534 | <source>TRANSCODING</source> | 4532 | <source>TRANSCODING</source> |
4535 | <target state="new">TRANSCODING</target> | 4533 | <target state="new">TRANSCODING</target> |
4536 | 4534 | ||
4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4538 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4536 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4539 | <source> 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. </source> | 4537 | <source> 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. </source> |
4540 | <target state="new"> | 4538 | <target state="new"> |
@@ -4542,55 +4540,53 @@ The link will expire within 1 hour.</target> | |||
4542 | resources, this is a critical part of PeerTube, so tread carefully. | 4540 | resources, this is a critical part of PeerTube, so tread carefully. |
4543 | </target> | 4541 | </target> |
4544 | 4542 | ||
4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4546 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4544 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4547 | <source>Transcoding enabled</source> | 4545 | <source>Transcoding enabled</source> |
4548 | <target state="new">Transcoding enabled</target> | 4546 | <target state="new">Transcoding enabled</target> |
4549 | 4547 | ||
4550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4551 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | 4549 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
4552 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4550 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4553 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> | 4551 | <target state="new">If you disable transcoding, many videos from your users will not work!</target> |
4554 | 4552 | ||
4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4554 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4555 | |||
4556 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4557 | |||
4558 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4559 | <context-group purpose="location"> | ||
4560 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4561 | <context context-type="linenumber">759,763</context> | ||
4562 | </context-group> | ||
4563 | </trans-unit> | ||
4556 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4564 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4557 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4565 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4558 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4566 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4559 | 4567 | ||
4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4561 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4569 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4562 | <source>Allow additional extensions</source> | 4570 | <source>Allow additional extensions</source> |
4563 | <target state="new">Allow additional extensions</target> | 4571 | <target state="new">Allow additional extensions</target> |
4564 | 4572 | ||
4565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4566 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4574 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4567 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4575 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4568 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4576 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4569 | 4577 | ||
4570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4571 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4579 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4572 | <source>Allow audio files upload</source> | 4580 | <source>Allow audio files upload</source> |
4573 | <target state="new">Allow audio files upload</target> | 4581 | <target state="new">Allow audio files upload</target> |
4574 | 4582 | ||
4575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4576 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4584 | |
4577 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4578 | <target state="new"> | ||
4579 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4580 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4581 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4582 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4583 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4584 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4585 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4586 | </target> | ||
4587 | |||
4588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4589 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4585 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4590 | <source>WebTorrent support enabled</source> | 4586 | <source>WebTorrent support enabled</source> |
4591 | <target state="new">WebTorrent support enabled</target> | 4587 | <target state="new">WebTorrent support enabled</target> |
4592 | 4588 | ||
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4594 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4590 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4595 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4591 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4596 | <target state="new"> | 4592 | <target state="new"> |
@@ -4610,27 +4606,27 @@ The link will expire within 1 hour.</target> | |||
4610 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4606 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4611 | </target> | 4607 | </target> |
4612 | 4608 | ||
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4614 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4610 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4615 | <source>HLS with P2P support enabled</source> | 4611 | <source>HLS with P2P support enabled</source> |
4616 | <target state="new">HLS with P2P support enabled</target> | 4612 | <target state="new">HLS with P2P support enabled</target> |
4617 | 4613 | ||
4618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4619 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4615 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4620 | <source>Transcoding threads</source> | 4616 | <source>Transcoding threads</source> |
4621 | <target state="new">Transcoding threads</target> | 4617 | <target state="new">Transcoding threads</target> |
4622 | 4618 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4624 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4620 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4625 | <source>Resolutions to generate</source> | 4621 | <source>Resolutions to generate</source> |
4626 | <target state="new">Resolutions to generate</target> | 4622 | <target state="new">Resolutions to generate</target> |
4627 | 4623 | ||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4629 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4625 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4630 | <source>CACHE</source> | 4626 | <source>CACHE</source> |
4631 | <target state="new">CACHE</target> | 4627 | <target state="new">CACHE</target> |
4632 | 4628 | ||
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4634 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4630 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4635 | <source> | 4631 | <source> |
4636 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4632 | Some files are not federated, and fetched when necessary. Define their caching policies. |
@@ -4639,34 +4635,28 @@ The link will expire within 1 hour.</target> | |||
4639 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4635 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4640 | </target> | 4636 | </target> |
4641 | 4637 | ||
4642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4643 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4639 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4644 | <source>Number of previews to keep in cache</source> | 4640 | <source>Number of previews to keep in cache</source> |
4645 | <target state="new">Number of previews to keep in cache</target> | 4641 | <target state="new">Number of previews to keep in cache</target> |
4646 | 4642 | ||
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4648 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4644 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4649 | <context-group purpose="location"> | 4645 | |
4650 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4651 | <context context-type="linenumber">986</context> | ||
4652 | </context-group> | ||
4653 | </trans-unit> | ||
4654 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4647 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4655 | <source>Number of video captions to keep in cache</source> | 4648 | <source>Number of video captions to keep in cache</source> |
4656 | <target state="new">Number of video captions to keep in cache</target> | 4649 | <target state="new">Number of video captions to keep in cache</target> |
4657 | 4650 | ||
4658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4659 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4652 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4660 | <context-group purpose="location"> | 4653 | |
4661 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4662 | <context context-type="linenumber">998</context> | ||
4663 | </context-group> | ||
4664 | </trans-unit> | ||
4665 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4655 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4666 | <source>CUSTOMIZATIONS</source> | 4656 | <source>CUSTOMIZATIONS</source> |
4667 | <target state="new">CUSTOMIZATIONS</target> | 4657 | <target state="new">CUSTOMIZATIONS</target> |
4668 | 4658 | ||
4669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4670 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4660 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4671 | <source> | 4661 | <source> |
4672 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4662 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
@@ -4675,12 +4665,12 @@ The link will expire within 1 hour.</target> | |||
4675 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4665 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4676 | </target> | 4666 | </target> |
4677 | 4667 | ||
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4679 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4669 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4680 | <source>JavaScript</source> | 4670 | <source>JavaScript</source> |
4681 | <target state="new">JavaScript</target> | 4671 | <target state="new">JavaScript</target> |
4682 | 4672 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4684 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4674 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4685 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4675 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4686 | <target state="new"> | 4676 | <target state="new"> |
@@ -4690,7 +4680,7 @@ The link will expire within 1 hour.</target> | |||
4690 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4680 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4691 | </target> | 4681 | </target> |
4692 | 4682 | ||
4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4694 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4684 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4695 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4685 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4696 | color: red; | 4686 | color: red; |
@@ -4722,23 +4712,23 @@ The link will expire within 1 hour.</target> | |||
4722 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4712 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4723 | </target> | 4713 | </target> |
4724 | 4714 | ||
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4726 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4716 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4727 | 4717 | ||
4728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4729 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4719 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4730 | 4720 | ||
4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4732 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 4722 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4733 | <source>Advanced configuration</source> | 4723 | <source>Advanced configuration</source> |
4734 | <target state="new">Advanced configuration</target> | 4724 | <target state="new">Advanced configuration</target> |
4735 | 4725 | ||
4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4737 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 4727 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4738 | <source>Update configuration</source> | 4728 | <source>Update configuration</source> |
4739 | <target state="new">Update configuration</target> | 4729 | <target state="new">Update configuration</target> |
4740 | 4730 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4742 | 4732 | ||
4743 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4733 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4744 | <source>VIDEO SETTINGS</source> | 4734 | <source>VIDEO SETTINGS</source> |
@@ -7515,7 +7505,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7515 | <source>any language</source> | 7505 | <source>any language</source> |
7516 | <target state="new">any language</target> | 7506 | <target state="new">any language</target> |
7517 | 7507 | ||
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7519 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7509 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7520 | 7510 | ||
7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7523,22 +7513,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7523 | <source>hide</source> | 7513 | <source>hide</source> |
7524 | <target state="new">hide</target> | 7514 | <target state="new">hide</target> |
7525 | 7515 | ||
7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7527 | <trans-unit id="8603861867909474404" datatype="html"> | 7517 | <trans-unit id="8603861867909474404" datatype="html"> |
7528 | <source>blur</source> | 7518 | <source>blur</source> |
7529 | <target state="new">blur</target> | 7519 | <target state="new">blur</target> |
7530 | 7520 | ||
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7532 | <trans-unit id="4534458451100881847" datatype="html"> | 7522 | <trans-unit id="4534458451100881847" datatype="html"> |
7533 | <source>display</source> | 7523 | <source>display</source> |
7534 | <target state="new">display</target> | 7524 | <target state="new">display</target> |
7535 | 7525 | ||
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7537 | <trans-unit id="4467323362722952678" datatype="html"> | 7527 | <trans-unit id="4467323362722952678" datatype="html"> |
7538 | <source>Unknown</source> | 7528 | <source>Unknown</source> |
7539 | <target state="new">Unknown</target> | 7529 | <target state="new">Unknown</target> |
7540 | 7530 | ||
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7542 | <trans-unit id="8781423666414310853" datatype="html"> | 7532 | <trans-unit id="8781423666414310853" datatype="html"> |
7543 | <source>Your password has been successfully reset!</source> | 7533 | <source>Your password has been successfully reset!</source> |
7544 | <target state="new">Your password has been successfully reset!</target> | 7534 | <target state="new">Your password has been successfully reset!</target> |
@@ -8549,13 +8539,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8549 | <source>Instance languages</source> | 8539 | <source>Instance languages</source> |
8550 | <target state="new">Instance languages</target> | 8540 | <target state="new">Instance languages</target> |
8551 | 8541 | ||
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8553 | <trans-unit id="40119547597591062" datatype="html"> | 8543 | <trans-unit id="40119547597591062" datatype="html"> |
8554 | <source>All languages</source> | 8544 | <source>All languages</source> |
8555 | <target state="new">All languages</target> | 8545 | <target state="new">All languages</target> |
8556 | 8546 | ||
8557 | 8547 | ||
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8559 | <trans-unit id="996392855508119363"> | 8549 | <trans-unit id="996392855508119363"> |
8560 | <source>Hidden</source> | 8550 | <source>Hidden</source> |
8561 | <target>Ẩn</target> | 8551 | <target>Ẩn</target> |
@@ -9330,7 +9320,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9330 | <source>Only users of this instance can see this video</source> | 9320 | <source>Only users of this instance can see this video</source> |
9331 | <target state="new">Only users of this instance can see this video</target> | 9321 | <target state="new">Only users of this instance can see this video</target> |
9332 | 9322 | ||
9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
9324 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9327 | <context context-type="linenumber">211</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
9330 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
9333 | <context context-type="linenumber">214</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
9334 | <source>Close</source><target state="new">Close</target> | 9336 | <source>Close</source><target state="new">Close</target> |
9335 | 9337 | ||
9336 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/locale/angular.xlf b/client/src/locale/angular.xlf index 7d88d6ad9..2416cab33 100644 --- a/client/src/locale/angular.xlf +++ b/client/src/locale/angular.xlf | |||
@@ -92,16 +92,12 @@ | |||
92 | <context context-type="linenumber">54</context> | 92 | <context context-type="linenumber">54</context> |
93 | </context-group> | 93 | </context-group> |
94 | <context-group purpose="location"> | 94 | <context-group purpose="location"> |
95 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
96 | <context context-type="linenumber">38</context> | ||
97 | </context-group> | ||
98 | <context-group purpose="location"> | ||
99 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 95 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
100 | <context context-type="linenumber">26</context> | 96 | <context context-type="linenumber">26</context> |
101 | </context-group> | 97 | </context-group> |
102 | <context-group purpose="location"> | 98 | <context-group purpose="location"> |
103 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context> | 99 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
104 | <context context-type="linenumber">31</context> | 100 | <context context-type="linenumber">38</context> |
105 | </context-group> | 101 | </context-group> |
106 | <context-group purpose="location"> | 102 | <context-group purpose="location"> |
107 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | 103 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> |
@@ -112,6 +108,10 @@ | |||
112 | <context context-type="linenumber">99</context> | 108 | <context context-type="linenumber">99</context> |
113 | </context-group> | 109 | </context-group> |
114 | <context-group purpose="location"> | 110 | <context-group purpose="location"> |
111 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context> | ||
112 | <context context-type="linenumber">31</context> | ||
113 | </context-group> | ||
114 | <context-group purpose="location"> | ||
115 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | 115 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> |
116 | <context context-type="linenumber">26</context> | 116 | <context context-type="linenumber">26</context> |
117 | </context-group> | 117 | </context-group> |
@@ -394,39 +394,39 @@ | |||
394 | <context context-type="linenumber">78</context> | 394 | <context context-type="linenumber">78</context> |
395 | </context-group> | 395 | </context-group> |
396 | </trans-unit> | 396 | </trans-unit> |
397 | <trans-unit id="5633144232269377096" datatype="html"> | 397 | <trans-unit id="4467323362722952678" datatype="html"> |
398 | <source>hide</source> | 398 | <source>Unknown</source> |
399 | <context-group purpose="location"> | 399 | <context-group purpose="location"> |
400 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> | 400 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> |
401 | <context context-type="linenumber">76</context> | 401 | <context context-type="linenumber">182</context> |
402 | </context-group> | 402 | </context-group> |
403 | </trans-unit> | 403 | </trans-unit> |
404 | <trans-unit id="8603861867909474404" datatype="html"> | 404 | <trans-unit id="7939914198003891823" datatype="html"> |
405 | <source>blur</source> | 405 | <source>any language</source> |
406 | <context-group purpose="location"> | 406 | <context-group purpose="location"> |
407 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> | 407 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> |
408 | <context context-type="linenumber">79</context> | 408 | <context context-type="linenumber">213</context> |
409 | </context-group> | 409 | </context-group> |
410 | </trans-unit> | 410 | </trans-unit> |
411 | <trans-unit id="4534458451100881847" datatype="html"> | 411 | <trans-unit id="5633144232269377096" datatype="html"> |
412 | <source>display</source> | 412 | <source>hide</source> |
413 | <context-group purpose="location"> | 413 | <context-group purpose="location"> |
414 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> | 414 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> |
415 | <context context-type="linenumber">82</context> | 415 | <context context-type="linenumber">246</context> |
416 | </context-group> | 416 | </context-group> |
417 | </trans-unit> | 417 | </trans-unit> |
418 | <trans-unit id="4467323362722952678" datatype="html"> | 418 | <trans-unit id="8603861867909474404" datatype="html"> |
419 | <source>Unknown</source> | 419 | <source>blur</source> |
420 | <context-group purpose="location"> | 420 | <context-group purpose="location"> |
421 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> | 421 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> |
422 | <context context-type="linenumber">200</context> | 422 | <context context-type="linenumber">250</context> |
423 | </context-group> | 423 | </context-group> |
424 | </trans-unit> | 424 | </trans-unit> |
425 | <trans-unit id="7939914198003891823" datatype="html"> | 425 | <trans-unit id="4534458451100881847" datatype="html"> |
426 | <source>any language</source> | 426 | <source>display</source> |
427 | <context-group purpose="location"> | 427 | <context-group purpose="location"> |
428 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> | 428 | <context context-type="sourcefile">src/app/menu/menu.component.ts</context> |
429 | <context context-type="linenumber">231</context> | 429 | <context context-type="linenumber">254</context> |
430 | </context-group> | 430 | </context-group> |
431 | </trans-unit> | 431 | </trans-unit> |
432 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 432 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
@@ -694,8 +694,8 @@ | |||
694 | <context context-type="linenumber">104</context> | 694 | <context context-type="linenumber">104</context> |
695 | </context-group> | 695 | </context-group> |
696 | </trans-unit> | 696 | </trans-unit> |
697 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 697 | <trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
698 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ language }}"/></source> | 698 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
699 | <context-group purpose="location"> | 699 | <context-group purpose="location"> |
700 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 700 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
701 | <context context-type="linenumber">171</context> | 701 | <context context-type="linenumber">171</context> |
@@ -779,7 +779,7 @@ | |||
779 | </context-group> | 779 | </context-group> |
780 | <context-group purpose="location"> | 780 | <context-group purpose="location"> |
781 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> | 781 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> |
782 | <context context-type="linenumber">174</context> | 782 | <context context-type="linenumber">184</context> |
783 | </context-group> | 783 | </context-group> |
784 | </trans-unit> | 784 | </trans-unit> |
785 | <trans-unit id="1233062525939746039" datatype="html"> | 785 | <trans-unit id="1233062525939746039" datatype="html"> |
@@ -1513,6 +1513,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
1513 | <context context-type="linenumber">219</context> | 1513 | <context context-type="linenumber">219</context> |
1514 | </context-group> | 1514 | </context-group> |
1515 | </trans-unit> | 1515 | </trans-unit> |
1516 | <trans-unit id="2392488717875840729" datatype="html"> | ||
1517 | <source>User</source> | ||
1518 | <context-group purpose="location"> | ||
1519 | <context context-type="sourcefile">src/app/core/users/user.service.ts</context> | ||
1520 | <context context-type="linenumber">382</context> | ||
1521 | </context-group> | ||
1522 | </trans-unit> | ||
1523 | <trans-unit id="2149300564474427551" datatype="html"> | ||
1524 | <source>Administrator</source> | ||
1525 | <context-group purpose="location"> | ||
1526 | <context context-type="sourcefile">src/app/core/users/user.service.ts</context> | ||
1527 | <context context-type="linenumber">383</context> | ||
1528 | </context-group> | ||
1529 | </trans-unit> | ||
1530 | <trans-unit id="4968151111061046122" datatype="html"> | ||
1531 | <source>Moderator</source> | ||
1532 | <context-group purpose="location"> | ||
1533 | <context context-type="sourcefile">src/app/core/users/user.service.ts</context> | ||
1534 | <context context-type="linenumber">384</context> | ||
1535 | </context-group> | ||
1536 | </trans-unit> | ||
1516 | <trans-unit id="6952960992592445535" datatype="html"> | 1537 | <trans-unit id="6952960992592445535" datatype="html"> |
1517 | <source><x id="PH" equiv-text="this.video.account.name"/> (channel page)</source> | 1538 | <source><x id="PH" equiv-text="this.video.account.name"/> (channel page)</source> |
1518 | <context-group purpose="location"> | 1539 | <context-group purpose="location"> |
@@ -1585,6 +1606,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
1585 | <context context-type="linenumber">382</context> | 1606 | <context context-type="linenumber">382</context> |
1586 | </context-group> | 1607 | </context-group> |
1587 | </trans-unit> | 1608 | </trans-unit> |
1609 | <trans-unit id="8312101634344200207" datatype="html"> | ||
1610 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | ||
1611 | <context-group purpose="location"> | ||
1612 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
1613 | <context context-type="linenumber">211</context> | ||
1614 | </context-group> | ||
1615 | </trans-unit> | ||
1616 | <trans-unit id="7756087706411154095" datatype="html"> | ||
1617 | <source><x id="PH" equiv-text="this.views"/> views</source> | ||
1618 | <context-group purpose="location"> | ||
1619 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
1620 | <context context-type="linenumber">214</context> | ||
1621 | </context-group> | ||
1622 | </trans-unit> | ||
1623 | <trans-unit id="314315645942131479" datatype="html"> | ||
1624 | <source>Info</source> | ||
1625 | <context-group purpose="location"> | ||
1626 | <context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context> | ||
1627 | <context context-type="linenumber">11</context> | ||
1628 | </context-group> | ||
1629 | </trans-unit> | ||
1630 | <trans-unit id="4648900870671159218" datatype="html"> | ||
1631 | <source>Success</source> | ||
1632 | <context-group purpose="location"> | ||
1633 | <context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context> | ||
1634 | <context context-type="linenumber">23</context> | ||
1635 | </context-group> | ||
1636 | </trans-unit> | ||
1588 | <trans-unit id="2971365540217107489" datatype="html"> | 1637 | <trans-unit id="2971365540217107489" datatype="html"> |
1589 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1638 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1590 | <context-group purpose="location"> | 1639 | <context-group purpose="location"> |
@@ -1613,41 +1662,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
1613 | <context context-type="linenumber">71</context> | 1662 | <context context-type="linenumber">71</context> |
1614 | </context-group> | 1663 | </context-group> |
1615 | </trans-unit> | 1664 | </trans-unit> |
1616 | <trans-unit id="2392488717875840729" datatype="html"> | ||
1617 | <source>User</source> | ||
1618 | <context-group purpose="location"> | ||
1619 | <context context-type="sourcefile">src/app/core/users/user.service.ts</context> | ||
1620 | <context context-type="linenumber">382</context> | ||
1621 | </context-group> | ||
1622 | </trans-unit> | ||
1623 | <trans-unit id="2149300564474427551" datatype="html"> | ||
1624 | <source>Administrator</source> | ||
1625 | <context-group purpose="location"> | ||
1626 | <context context-type="sourcefile">src/app/core/users/user.service.ts</context> | ||
1627 | <context context-type="linenumber">383</context> | ||
1628 | </context-group> | ||
1629 | </trans-unit> | ||
1630 | <trans-unit id="4968151111061046122" datatype="html"> | ||
1631 | <source>Moderator</source> | ||
1632 | <context-group purpose="location"> | ||
1633 | <context context-type="sourcefile">src/app/core/users/user.service.ts</context> | ||
1634 | <context context-type="linenumber">384</context> | ||
1635 | </context-group> | ||
1636 | </trans-unit> | ||
1637 | <trans-unit id="314315645942131479" datatype="html"> | ||
1638 | <source>Info</source> | ||
1639 | <context-group purpose="location"> | ||
1640 | <context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context> | ||
1641 | <context context-type="linenumber">11</context> | ||
1642 | </context-group> | ||
1643 | </trans-unit> | ||
1644 | <trans-unit id="4648900870671159218" datatype="html"> | ||
1645 | <source>Success</source> | ||
1646 | <context-group purpose="location"> | ||
1647 | <context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context> | ||
1648 | <context context-type="linenumber">23</context> | ||
1649 | </context-group> | ||
1650 | </trans-unit> | ||
1651 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> | 1665 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> |
1652 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/></source> | 1666 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/></source> |
1653 | <context-group purpose="location"> | 1667 | <context-group purpose="location"> |
@@ -2242,7 +2256,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
2242 | </context-group> | 2256 | </context-group> |
2243 | <context-group purpose="location"> | 2257 | <context-group purpose="location"> |
2244 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 2258 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
2245 | <context context-type="linenumber">708</context> | 2259 | <context context-type="linenumber">840</context> |
2246 | </context-group> | 2260 | </context-group> |
2247 | </trans-unit> | 2261 | </trans-unit> |
2248 | <trans-unit id="5e84ff80421724dc306284a6330c0910fb95c64d" datatype="html"> | 2262 | <trans-unit id="5e84ff80421724dc306284a6330c0910fb95c64d" datatype="html"> |
@@ -3517,115 +3531,6 @@ The link will expire within 1 hour.</source> | |||
3517 | <context context-type="linenumber">47</context> | 3531 | <context context-type="linenumber">47</context> |
3518 | </context-group> | 3532 | </context-group> |
3519 | </trans-unit> | 3533 | </trans-unit> |
3520 | <trans-unit id="4802465052975340965" datatype="html"> | ||
3521 | <source>Published videos</source> | ||
3522 | <context-group purpose="location"> | ||
3523 | <context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context> | ||
3524 | <context context-type="linenumber">42</context> | ||
3525 | </context-group> | ||
3526 | </trans-unit> | ||
3527 | <trans-unit id="4263581847463492016" datatype="html"> | ||
3528 | <source>Published 1 video</source> | ||
3529 | <context-group purpose="location"> | ||
3530 | <context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context> | ||
3531 | <context context-type="linenumber">86</context> | ||
3532 | </context-group> | ||
3533 | </trans-unit> | ||
3534 | <trans-unit id="3755500631176893489" datatype="html"> | ||
3535 | <source>Published <x id="PH" equiv-text="total"/> videos</source> | ||
3536 | <context-group purpose="location"> | ||
3537 | <context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context> | ||
3538 | <context context-type="linenumber">87</context> | ||
3539 | </context-group> | ||
3540 | <context-group purpose="location"> | ||
3541 | <context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context> | ||
3542 | <context context-type="linenumber">79</context> | ||
3543 | </context-group> | ||
3544 | </trans-unit> | ||
3545 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> | ||
3546 | <source>Display all videos (private, unlisted or not yet published)</source> | ||
3547 | <context-group purpose="location"> | ||
3548 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3549 | <context context-type="linenumber">40</context> | ||
3550 | </context-group> | ||
3551 | <context-group purpose="location"> | ||
3552 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3553 | <context context-type="linenumber">40</context> | ||
3554 | </context-group> | ||
3555 | <context-group purpose="location"> | ||
3556 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3557 | <context context-type="linenumber">40</context> | ||
3558 | </context-group> | ||
3559 | <context-group purpose="location"> | ||
3560 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3561 | <context context-type="linenumber">40</context> | ||
3562 | </context-group> | ||
3563 | <context-group purpose="location"> | ||
3564 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3565 | <context context-type="linenumber">40</context> | ||
3566 | </context-group> | ||
3567 | <context-group purpose="location"> | ||
3568 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3569 | <context context-type="linenumber">40</context> | ||
3570 | </context-group> | ||
3571 | <context-group purpose="location"> | ||
3572 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3573 | <context context-type="linenumber">40</context> | ||
3574 | </context-group> | ||
3575 | </trans-unit> | ||
3576 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e" datatype="html"> | ||
3577 | <source>No results.</source> | ||
3578 | <context-group purpose="location"> | ||
3579 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3580 | <context context-type="linenumber">48</context> | ||
3581 | </context-group> | ||
3582 | <context-group purpose="location"> | ||
3583 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3584 | <context context-type="linenumber">48</context> | ||
3585 | </context-group> | ||
3586 | <context-group purpose="location"> | ||
3587 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> | ||
3588 | <context context-type="linenumber">1</context> | ||
3589 | </context-group> | ||
3590 | <context-group purpose="location"> | ||
3591 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3592 | <context context-type="linenumber">48</context> | ||
3593 | </context-group> | ||
3594 | <context-group purpose="location"> | ||
3595 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3596 | <context context-type="linenumber">48</context> | ||
3597 | </context-group> | ||
3598 | <context-group purpose="location"> | ||
3599 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3600 | <context context-type="linenumber">48</context> | ||
3601 | </context-group> | ||
3602 | <context-group purpose="location"> | ||
3603 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3604 | <context context-type="linenumber">48</context> | ||
3605 | </context-group> | ||
3606 | <context-group purpose="location"> | ||
3607 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3608 | <context context-type="linenumber">48</context> | ||
3609 | </context-group> | ||
3610 | <context-group purpose="location"> | ||
3611 | <context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context> | ||
3612 | <context context-type="linenumber">4</context> | ||
3613 | </context-group> | ||
3614 | </trans-unit> | ||
3615 | <trans-unit id="5ebd76e736e1c58a1850234d1d26f1ab8c9ad11f" datatype="html"> | ||
3616 | <source> Created <x id="INTERPOLATION" equiv-text="ted {{ pagination.totalItem"/> playlists </source> | ||
3617 | <context-group purpose="location"> | ||
3618 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | ||
3619 | <context context-type="linenumber">2,4</context> | ||
3620 | </context-group> | ||
3621 | </trans-unit> | ||
3622 | <trans-unit id="fbbe62dee434f0521e0dfb8e3957d92fc5fcd76f" datatype="html"> | ||
3623 | <source>This channel does not have playlists.</source> | ||
3624 | <context-group purpose="location"> | ||
3625 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | ||
3626 | <context context-type="linenumber">6</context> | ||
3627 | </context-group> | ||
3628 | </trans-unit> | ||
3629 | <trans-unit id="424703522835656806" datatype="html"> | 3534 | <trans-unit id="424703522835656806" datatype="html"> |
3630 | <source>VIDEO CHANNELS</source> | 3535 | <source>VIDEO CHANNELS</source> |
3631 | <context-group purpose="location"> | 3536 | <context-group purpose="location"> |
@@ -3728,179 +3633,160 @@ The link will expire within 1 hour.</source> | |||
3728 | <context context-type="linenumber">51</context> | 3633 | <context context-type="linenumber">51</context> |
3729 | </context-group> | 3634 | </context-group> |
3730 | </trans-unit> | 3635 | </trans-unit> |
3731 | <trans-unit id="3830487495946043372" datatype="html"> | 3636 | <trans-unit id="4802465052975340965" datatype="html"> |
3732 | <source>No description</source> | 3637 | <source>Published videos</source> |
3733 | <context-group purpose="location"> | 3638 | <context-group purpose="location"> |
3734 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.ts</context> | 3639 | <context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context> |
3735 | <context context-type="linenumber">41</context> | 3640 | <context context-type="linenumber">42</context> |
3736 | </context-group> | 3641 | </context-group> |
3642 | </trans-unit> | ||
3643 | <trans-unit id="4263581847463492016" datatype="html"> | ||
3644 | <source>Published 1 video</source> | ||
3737 | <context-group purpose="location"> | 3645 | <context-group purpose="location"> |
3738 | <context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.ts</context> | 3646 | <context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context> |
3739 | <context context-type="linenumber">38</context> | 3647 | <context context-type="linenumber">86</context> |
3740 | </context-group> | 3648 | </context-group> |
3741 | </trans-unit> | 3649 | </trans-unit> |
3742 | <trans-unit id="4af6287e70a4a87329affe109839f14ae598f0ca" datatype="html"> | 3650 | <trans-unit id="3755500631176893489" datatype="html"> |
3743 | <source>DESCRIPTION</source> | 3651 | <source>Published <x id="PH" equiv-text="total"/> videos</source> |
3744 | <context-group purpose="location"> | 3652 | <context-group purpose="location"> |
3745 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> | 3653 | <context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context> |
3746 | <context context-type="linenumber">5</context> | 3654 | <context context-type="linenumber">87</context> |
3747 | </context-group> | 3655 | </context-group> |
3748 | <context-group purpose="location"> | 3656 | <context-group purpose="location"> |
3749 | <context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context> | 3657 | <context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context> |
3750 | <context context-type="linenumber">5</context> | 3658 | <context context-type="linenumber">79</context> |
3751 | </context-group> | 3659 | </context-group> |
3752 | </trans-unit> | 3660 | </trans-unit> |
3753 | <trans-unit id="bfc87613409a6cfae59b79ead5d910d8d3c216f5" datatype="html"> | 3661 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> |
3754 | <source>STATS</source> | 3662 | <source>Display all videos (private, unlisted or not yet published)</source> |
3755 | <context-group purpose="location"> | 3663 | <context-group purpose="location"> |
3756 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> | 3664 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3757 | <context context-type="linenumber">17</context> | 3665 | <context context-type="linenumber">40</context> |
3758 | </context-group> | 3666 | </context-group> |
3759 | <context-group purpose="location"> | 3667 | <context-group purpose="location"> |
3760 | <context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context> | 3668 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3761 | <context context-type="linenumber">10</context> | 3669 | <context context-type="linenumber">40</context> |
3762 | </context-group> | 3670 | </context-group> |
3763 | </trans-unit> | ||
3764 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40" datatype="html"> | ||
3765 | <source>Created <x id="INTERPOLATION" equiv-text="{{ videoChannel.createdAt | date }}"/></source> | ||
3766 | <context-group purpose="location"> | 3671 | <context-group purpose="location"> |
3767 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> | 3672 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3768 | <context context-type="linenumber">18</context> | 3673 | <context context-type="linenumber">40</context> |
3769 | </context-group> | 3674 | </context-group> |
3770 | </trans-unit> | ||
3771 | <trans-unit id="b8bf6036a9fb05c08cdb190cdf4e3becc6e6fa0a" datatype="html"> | ||
3772 | <source>SUPPORT THIS CHANNEL</source> | ||
3773 | <context-group purpose="location"> | 3675 | <context-group purpose="location"> |
3774 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> | 3676 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3775 | <context context-type="linenumber">10</context> | 3677 | <context context-type="linenumber">40</context> |
3776 | </context-group> | 3678 | </context-group> |
3777 | </trans-unit> | ||
3778 | <trans-unit id="248731258067914565" datatype="html"> | ||
3779 | <source>Verify account via email</source> | ||
3780 | <context-group purpose="location"> | 3679 | <context-group purpose="location"> |
3781 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context> | 3680 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3782 | <context context-type="linenumber">17</context> | 3681 | <context context-type="linenumber">40</context> |
3783 | </context-group> | 3682 | </context-group> |
3784 | </trans-unit> | ||
3785 | <trans-unit id="9197112111252826229" datatype="html"> | ||
3786 | <source>Ask to send an email to verify you account</source> | ||
3787 | <context-group purpose="location"> | 3683 | <context-group purpose="location"> |
3788 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context> | 3684 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3789 | <context context-type="linenumber">26</context> | 3685 | <context context-type="linenumber">40</context> |
3790 | </context-group> | 3686 | </context-group> |
3791 | </trans-unit> | ||
3792 | <trans-unit id="8181077408762380407" datatype="html"> | ||
3793 | <source>Channels</source> | ||
3794 | <context-group purpose="location"> | 3687 | <context-group purpose="location"> |
3795 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> | 3688 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3796 | <context context-type="linenumber">47</context> | 3689 | <context context-type="linenumber">40</context> |
3797 | </context-group> | 3690 | </context-group> |
3798 | </trans-unit> | 3691 | </trans-unit> |
3799 | <trans-unit id="8936704404804793618" datatype="html"> | 3692 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e" datatype="html"> |
3800 | <source>Videos</source> | 3693 | <source>No results.</source> |
3801 | <context-group purpose="location"> | 3694 | <context-group purpose="location"> |
3802 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> | 3695 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3803 | <context context-type="linenumber">54</context> | 3696 | <context context-type="linenumber">48</context> |
3804 | </context-group> | 3697 | </context-group> |
3805 | </trans-unit> | ||
3806 | <trans-unit id="1823843876735462104" datatype="html"> | ||
3807 | <source>Playlists</source> | ||
3808 | <context-group purpose="location"> | 3698 | <context-group purpose="location"> |
3809 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> | 3699 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3810 | <context context-type="linenumber">61</context> | 3700 | <context context-type="linenumber">48</context> |
3811 | </context-group> | 3701 | </context-group> |
3812 | </trans-unit> | ||
3813 | <trans-unit id="1812379335568847528" datatype="html"> | ||
3814 | <source>Subscriptions</source> | ||
3815 | <context-group purpose="location"> | 3702 | <context-group purpose="location"> |
3816 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> | 3703 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> |
3817 | <context context-type="linenumber">66</context> | 3704 | <context context-type="linenumber">1</context> |
3818 | </context-group> | 3705 | </context-group> |
3819 | <context-group purpose="location"> | 3706 | <context-group purpose="location"> |
3820 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 3707 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3821 | <context context-type="linenumber">71</context> | 3708 | <context context-type="linenumber">48</context> |
3822 | </context-group> | 3709 | </context-group> |
3823 | <context-group purpose="location"> | 3710 | <context-group purpose="location"> |
3824 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> | 3711 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3825 | <context context-type="linenumber">45</context> | 3712 | <context context-type="linenumber">48</context> |
3826 | </context-group> | 3713 | </context-group> |
3827 | </trans-unit> | ||
3828 | <trans-unit id="186236568870281953" datatype="html"> | ||
3829 | <source>History</source> | ||
3830 | <context-group purpose="location"> | 3714 | <context-group purpose="location"> |
3831 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> | 3715 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3832 | <context context-type="linenumber">71</context> | 3716 | <context context-type="linenumber">48</context> |
3833 | </context-group> | 3717 | </context-group> |
3834 | </trans-unit> | ||
3835 | <trans-unit id="7545420287297803988" datatype="html"> | ||
3836 | <source>My playlists</source> | ||
3837 | <context-group purpose="location"> | 3718 | <context-group purpose="location"> |
3838 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3719 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> |
3839 | <context context-type="linenumber">40</context> | 3720 | <context context-type="linenumber">48</context> |
3721 | </context-group> | ||
3722 | <context-group purpose="location"> | ||
3723 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context> | ||
3724 | <context context-type="linenumber">48</context> | ||
3725 | </context-group> | ||
3726 | <context-group purpose="location"> | ||
3727 | <context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context> | ||
3728 | <context context-type="linenumber">4</context> | ||
3840 | </context-group> | 3729 | </context-group> |
3841 | </trans-unit> | 3730 | </trans-unit> |
3842 | <trans-unit id="949618577357088829" datatype="html"> | 3731 | <trans-unit id="5ebd76e736e1c58a1850234d1d26f1ab8c9ad11f" datatype="html"> |
3843 | <source>Create a new playlist</source> | 3732 | <source> Created <x id="INTERPOLATION" equiv-text="ted {{ pagination.totalItem"/> playlists </source> |
3844 | <context-group purpose="location"> | 3733 | <context-group purpose="location"> |
3845 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3734 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
3846 | <context context-type="linenumber">49</context> | 3735 | <context context-type="linenumber">2,4</context> |
3847 | </context-group> | 3736 | </context-group> |
3848 | </trans-unit> | 3737 | </trans-unit> |
3849 | <trans-unit id="2864486939135008600" datatype="html"> | 3738 | <trans-unit id="fbbe62dee434f0521e0dfb8e3957d92fc5fcd76f" datatype="html"> |
3850 | <source>Playlist elements</source> | 3739 | <source>This channel does not have playlists.</source> |
3851 | <context-group purpose="location"> | 3740 | <context-group purpose="location"> |
3852 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3741 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
3853 | <context context-type="linenumber">58</context> | 3742 | <context context-type="linenumber">6</context> |
3854 | </context-group> | 3743 | </context-group> |
3855 | </trans-unit> | 3744 | </trans-unit> |
3856 | <trans-unit id="8869957234869568361" datatype="html"> | 3745 | <trans-unit id="3830487495946043372" datatype="html"> |
3857 | <source>Update playlist</source> | 3746 | <source>No description</source> |
3858 | <context-group purpose="location"> | 3747 | <context-group purpose="location"> |
3859 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3748 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.ts</context> |
3860 | <context context-type="linenumber">67</context> | 3749 | <context context-type="linenumber">41</context> |
3861 | </context-group> | 3750 | </context-group> |
3862 | <context-group purpose="location"> | 3751 | <context-group purpose="location"> |
3863 | <context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context> | 3752 | <context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.ts</context> |
3864 | <context context-type="linenumber">47</context> | 3753 | <context context-type="linenumber">38</context> |
3865 | </context-group> | 3754 | </context-group> |
3866 | </trans-unit> | 3755 | </trans-unit> |
3867 | <trans-unit id="3058024914967508975" datatype="html"> | 3756 | <trans-unit id="4af6287e70a4a87329affe109839f14ae598f0ca" datatype="html"> |
3868 | <source>My videos</source> | 3757 | <source>DESCRIPTION</source> |
3869 | <context-group purpose="location"> | 3758 | <context-group purpose="location"> |
3870 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3759 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> |
3871 | <context context-type="linenumber">77</context> | 3760 | <context context-type="linenumber">5</context> |
3872 | </context-group> | 3761 | </context-group> |
3873 | <context-group purpose="location"> | 3762 | <context-group purpose="location"> |
3874 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> | 3763 | <context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context> |
3875 | <context context-type="linenumber">58</context> | 3764 | <context context-type="linenumber">5</context> |
3876 | </context-group> | 3765 | </context-group> |
3877 | </trans-unit> | 3766 | </trans-unit> |
3878 | <trans-unit id="3108704604266608109" datatype="html"> | 3767 | <trans-unit id="bfc87613409a6cfae59b79ead5d910d8d3c216f5" datatype="html"> |
3879 | <source>My video imports</source> | 3768 | <source>STATS</source> |
3880 | <context-group purpose="location"> | 3769 | <context-group purpose="location"> |
3881 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3770 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> |
3882 | <context context-type="linenumber">90</context> | 3771 | <context context-type="linenumber">17</context> |
3883 | </context-group> | 3772 | </context-group> |
3884 | </trans-unit> | ||
3885 | <trans-unit id="2527931602940887636" datatype="html"> | ||
3886 | <source>My subscriptions</source> | ||
3887 | <context-group purpose="location"> | 3773 | <context-group purpose="location"> |
3888 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3774 | <context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context> |
3889 | <context context-type="linenumber">99</context> | 3775 | <context context-type="linenumber">10</context> |
3890 | </context-group> | 3776 | </context-group> |
3891 | </trans-unit> | 3777 | </trans-unit> |
3892 | <trans-unit id="5752861278140673787" datatype="html"> | 3778 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40" datatype="html"> |
3893 | <source>Ownership changes</source> | 3779 | <source>Created <x id="INTERPOLATION" equiv-text="{{ videoChannel.createdAt | date }}"/></source> |
3894 | <context-group purpose="location"> | 3780 | <context-group purpose="location"> |
3895 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3781 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> |
3896 | <context context-type="linenumber">108</context> | 3782 | <context context-type="linenumber">18</context> |
3897 | </context-group> | 3783 | </context-group> |
3898 | </trans-unit> | 3784 | </trans-unit> |
3899 | <trans-unit id="5983006734882925930" datatype="html"> | 3785 | <trans-unit id="b8bf6036a9fb05c08cdb190cdf4e3becc6e6fa0a" datatype="html"> |
3900 | <source>My video history</source> | 3786 | <source>SUPPORT THIS CHANNEL</source> |
3901 | <context-group purpose="location"> | 3787 | <context-group purpose="location"> |
3902 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 3788 | <context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context> |
3903 | <context context-type="linenumber">118</context> | 3789 | <context context-type="linenumber">10</context> |
3904 | </context-group> | 3790 | </context-group> |
3905 | </trans-unit> | 3791 | </trans-unit> |
3906 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> | 3792 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> |
@@ -3945,53 +3831,15 @@ The link will expire within 1 hour.</source> | |||
3945 | <context context-type="linenumber">12</context> | 3831 | <context context-type="linenumber">12</context> |
3946 | </context-group> | 3832 | </context-group> |
3947 | </trans-unit> | 3833 | </trans-unit> |
3948 | <trans-unit id="2687679787442328897" datatype="html"> | 3834 | <trans-unit id="3058024914967508975" datatype="html"> |
3949 | <source>An email with verification link will be sent to <x id="PH" equiv-text="email"/>.</source> | 3835 | <source>My videos</source> |
3950 | <context-group purpose="location"> | ||
3951 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context> | ||
3952 | <context context-type="linenumber">45</context> | ||
3953 | </context-group> | ||
3954 | </trans-unit> | ||
3955 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | ||
3956 | <source> Request email for account verification </source> | ||
3957 | <context-group purpose="location"> | ||
3958 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context> | ||
3959 | <context context-type="linenumber">3,4</context> | ||
3960 | </context-group> | ||
3961 | </trans-unit> | ||
3962 | <trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html"> | ||
3963 | <source>Send verification email</source> | ||
3964 | <context-group purpose="location"> | ||
3965 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context> | ||
3966 | <context context-type="linenumber">17</context> | ||
3967 | </context-group> | ||
3968 | </trans-unit> | ||
3969 | <trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html"> | ||
3970 | <source>This instance does not require email verification.</source> | ||
3971 | <context-group purpose="location"> | ||
3972 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context> | ||
3973 | <context context-type="linenumber">20</context> | ||
3974 | </context-group> | ||
3975 | </trans-unit> | ||
3976 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> | ||
3977 | <source> Verify account email confirmation </source> | ||
3978 | <context-group purpose="location"> | ||
3979 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context> | ||
3980 | <context context-type="linenumber">3,4</context> | ||
3981 | </context-group> | ||
3982 | </trans-unit> | ||
3983 | <trans-unit id="b734a13448d714b0f68f49353607364ac3571c12" datatype="html"> | ||
3984 | <source> Email updated. </source> | ||
3985 | <context-group purpose="location"> | 3836 | <context-group purpose="location"> |
3986 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context> | 3837 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> |
3987 | <context context-type="linenumber">10,11</context> | 3838 | <context context-type="linenumber">58</context> |
3988 | </context-group> | 3839 | </context-group> |
3989 | </trans-unit> | ||
3990 | <trans-unit id="61fd1cffcb763cbfd5829071723cf9b647174bd9" datatype="html"> | ||
3991 | <source>An error occurred.</source> | ||
3992 | <context-group purpose="location"> | 3840 | <context-group purpose="location"> |
3993 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context> | 3841 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
3994 | <context context-type="linenumber">14</context> | 3842 | <context context-type="linenumber">77</context> |
3995 | </context-group> | 3843 | </context-group> |
3996 | </trans-unit> | 3844 | </trans-unit> |
3997 | <trans-unit id="8197117721861453263" datatype="html"> | 3845 | <trans-unit id="8197117721861453263" datatype="html"> |
@@ -4024,12 +3872,8 @@ The link will expire within 1 hour.</source> | |||
4024 | <context context-type="linenumber">127</context> | 3872 | <context context-type="linenumber">127</context> |
4025 | </context-group> | 3873 | </context-group> |
4026 | <context-group purpose="location"> | 3874 | <context-group purpose="location"> |
4027 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context> | 3875 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
4028 | <context context-type="linenumber">16</context> | 3876 | <context context-type="linenumber">91</context> |
4029 | </context-group> | ||
4030 | <context-group purpose="location"> | ||
4031 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context> | ||
4032 | <context context-type="linenumber">21</context> | ||
4033 | </context-group> | 3877 | </context-group> |
4034 | <context-group purpose="location"> | 3878 | <context-group purpose="location"> |
4035 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 3879 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
@@ -4040,8 +3884,12 @@ The link will expire within 1 hour.</source> | |||
4040 | <context context-type="linenumber">308</context> | 3884 | <context context-type="linenumber">308</context> |
4041 | </context-group> | 3885 | </context-group> |
4042 | <context-group purpose="location"> | 3886 | <context-group purpose="location"> |
4043 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 3887 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context> |
4044 | <context context-type="linenumber">91</context> | 3888 | <context context-type="linenumber">16</context> |
3889 | </context-group> | ||
3890 | <context-group purpose="location"> | ||
3891 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context> | ||
3892 | <context context-type="linenumber">21</context> | ||
4045 | </context-group> | 3893 | </context-group> |
4046 | <context-group purpose="location"> | 3894 | <context-group purpose="location"> |
4047 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 3895 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
@@ -4539,6 +4387,17 @@ The link will expire within 1 hour.</source> | |||
4539 | <context context-type="linenumber">26</context> | 4387 | <context context-type="linenumber">26</context> |
4540 | </context-group> | 4388 | </context-group> |
4541 | </trans-unit> | 4389 | </trans-unit> |
4390 | <trans-unit id="8869957234869568361" datatype="html"> | ||
4391 | <source>Update playlist</source> | ||
4392 | <context-group purpose="location"> | ||
4393 | <context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context> | ||
4394 | <context context-type="linenumber">47</context> | ||
4395 | </context-group> | ||
4396 | <context-group purpose="location"> | ||
4397 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | ||
4398 | <context context-type="linenumber">67</context> | ||
4399 | </context-group> | ||
4400 | </trans-unit> | ||
4542 | <trans-unit id="104404386496394770" datatype="html"> | 4401 | <trans-unit id="104404386496394770" datatype="html"> |
4543 | <source>Delete playlist</source> | 4402 | <source>Delete playlist</source> |
4544 | <context-group purpose="location"> | 4403 | <context-group purpose="location"> |
@@ -4603,81 +4462,96 @@ The link will expire within 1 hour.</source> | |||
4603 | <context context-type="linenumber">76</context> | 4462 | <context context-type="linenumber">76</context> |
4604 | </context-group> | 4463 | </context-group> |
4605 | </trans-unit> | 4464 | </trans-unit> |
4606 | <trans-unit id="a86239658c3cf042e7c987bb0df7473a53d7517e" datatype="html"> | 4465 | <trans-unit id="8181077408762380407" datatype="html"> |
4607 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> imports</source> | 4466 | <source>Channels</source> |
4608 | <context-group purpose="location"> | 4467 | <context-group purpose="location"> |
4609 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4468 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> |
4610 | <context context-type="linenumber">10</context> | 4469 | <context context-type="linenumber">47</context> |
4611 | </context-group> | 4470 | </context-group> |
4612 | </trans-unit> | 4471 | </trans-unit> |
4613 | <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191" datatype="html"> | 4472 | <trans-unit id="8936704404804793618" datatype="html"> |
4614 | <source>Target</source> | 4473 | <source>Videos</source> |
4615 | <context-group purpose="location"> | 4474 | <context-group purpose="location"> |
4616 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4475 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> |
4617 | <context context-type="linenumber">17</context> | 4476 | <context context-type="linenumber">54</context> |
4618 | </context-group> | 4477 | </context-group> |
4619 | </trans-unit> | 4478 | </trans-unit> |
4620 | <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4" datatype="html"> | 4479 | <trans-unit id="1823843876735462104" datatype="html"> |
4621 | <source>Video</source> | 4480 | <source>Playlists</source> |
4622 | <context-group purpose="location"> | 4481 | <context-group purpose="location"> |
4623 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4482 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> |
4624 | <context context-type="linenumber">18</context> | 4483 | <context context-type="linenumber">61</context> |
4625 | </context-group> | 4484 | </context-group> |
4485 | </trans-unit> | ||
4486 | <trans-unit id="1812379335568847528" datatype="html"> | ||
4487 | <source>Subscriptions</source> | ||
4626 | <context-group purpose="location"> | 4488 | <context-group purpose="location"> |
4627 | <context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context> | 4489 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> |
4628 | <context context-type="linenumber">20</context> | 4490 | <context context-type="linenumber">66</context> |
4629 | </context-group> | 4491 | </context-group> |
4630 | <context-group purpose="location"> | 4492 | <context-group purpose="location"> |
4631 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | 4493 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
4632 | <context context-type="linenumber">60</context> | 4494 | <context context-type="linenumber">71</context> |
4633 | </context-group> | 4495 | </context-group> |
4634 | </trans-unit> | ||
4635 | <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b" datatype="html"> | ||
4636 | <source>State</source> | ||
4637 | <context-group purpose="location"> | 4496 | <context-group purpose="location"> |
4638 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4497 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> |
4639 | <context context-type="linenumber">19</context> | 4498 | <context context-type="linenumber">45</context> |
4640 | </context-group> | 4499 | </context-group> |
4641 | </trans-unit> | 4500 | </trans-unit> |
4642 | <trans-unit id="ff3173170e5b03536dd3b3e1afbae1f55356eb1b" datatype="html"> | 4501 | <trans-unit id="186236568870281953" datatype="html"> |
4643 | <source>Created <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="createdAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | 4502 | <source>History</source> |
4644 | <context-group purpose="location"> | 4503 | <context-group purpose="location"> |
4645 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4504 | <context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context> |
4646 | <context context-type="linenumber">20</context> | 4505 | <context context-type="linenumber">71</context> |
4647 | </context-group> | 4506 | </context-group> |
4507 | </trans-unit> | ||
4508 | <trans-unit id="7545420287297803988" datatype="html"> | ||
4509 | <source>My playlists</source> | ||
4648 | <context-group purpose="location"> | 4510 | <context-group purpose="location"> |
4649 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 4511 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4650 | <context context-type="linenumber">43</context> | 4512 | <context context-type="linenumber">40</context> |
4651 | </context-group> | 4513 | </context-group> |
4514 | </trans-unit> | ||
4515 | <trans-unit id="949618577357088829" datatype="html"> | ||
4516 | <source>Create a new playlist</source> | ||
4652 | <context-group purpose="location"> | 4517 | <context-group purpose="location"> |
4653 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4518 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4654 | <context context-type="linenumber">40</context> | 4519 | <context context-type="linenumber">49</context> |
4655 | </context-group> | 4520 | </context-group> |
4521 | </trans-unit> | ||
4522 | <trans-unit id="2864486939135008600" datatype="html"> | ||
4523 | <source>Playlist elements</source> | ||
4656 | <context-group purpose="location"> | 4524 | <context-group purpose="location"> |
4657 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 4525 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4658 | <context context-type="linenumber">34</context> | 4526 | <context context-type="linenumber">58</context> |
4659 | </context-group> | 4527 | </context-group> |
4528 | </trans-unit> | ||
4529 | <trans-unit id="3108704604266608109" datatype="html"> | ||
4530 | <source>My video imports</source> | ||
4660 | <context-group purpose="location"> | 4531 | <context-group purpose="location"> |
4661 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 4532 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4662 | <context context-type="linenumber">31</context> | 4533 | <context context-type="linenumber">90</context> |
4663 | </context-group> | 4534 | </context-group> |
4664 | </trans-unit> | 4535 | </trans-unit> |
4665 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> | 4536 | <trans-unit id="2527931602940887636" datatype="html"> |
4666 | <source>See the error</source> | 4537 | <source>My subscriptions</source> |
4667 | <context-group purpose="location"> | 4538 | <context-group purpose="location"> |
4668 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4539 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4669 | <context context-type="linenumber">27</context> | 4540 | <context context-type="linenumber">99</context> |
4670 | </context-group> | 4541 | </context-group> |
4542 | </trans-unit> | ||
4543 | <trans-unit id="5752861278140673787" datatype="html"> | ||
4544 | <source>Ownership changes</source> | ||
4671 | <context-group purpose="location"> | 4545 | <context-group purpose="location"> |
4672 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4546 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4673 | <context context-type="linenumber">27</context> | 4547 | <context context-type="linenumber">108</context> |
4674 | </context-group> | 4548 | </context-group> |
4675 | </trans-unit> | 4549 | </trans-unit> |
4676 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> | 4550 | <trans-unit id="5983006734882925930" datatype="html"> |
4677 | <source>This video was deleted</source> | 4551 | <source>My video history</source> |
4678 | <context-group purpose="location"> | 4552 | <context-group purpose="location"> |
4679 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 4553 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
4680 | <context context-type="linenumber">49</context> | 4554 | <context context-type="linenumber">118</context> |
4681 | </context-group> | 4555 | </context-group> |
4682 | </trans-unit> | 4556 | </trans-unit> |
4683 | <trans-unit id="4058575476871566236" datatype="html"> | 4557 | <trans-unit id="4058575476871566236" datatype="html"> |
@@ -4745,21 +4619,29 @@ The link will expire within 1 hour.</source> | |||
4745 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 4619 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
4746 | <context-group purpose="location"> | 4620 | <context-group purpose="location"> |
4747 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | 4621 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> |
4748 | <context context-type="linenumber">31</context> | 4622 | <context context-type="linenumber">32</context> |
4623 | </context-group> | ||
4624 | </trans-unit> | ||
4625 | <trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> | ||
4626 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
4627 | "/> </source> | ||
4628 | <context-group purpose="location"> | ||
4629 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
4630 | <context context-type="linenumber">32,33</context> | ||
4749 | </context-group> | 4631 | </context-group> |
4750 | </trans-unit> | 4632 | </trans-unit> |
4751 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 4633 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
4752 | <source>Blocked</source> | 4634 | <source>Blocked</source> |
4753 | <context-group purpose="location"> | 4635 | <context-group purpose="location"> |
4754 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | 4636 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> |
4755 | <context context-type="linenumber">51</context> | 4637 | <context context-type="linenumber">53</context> |
4756 | </context-group> | 4638 | </context-group> |
4757 | </trans-unit> | 4639 | </trans-unit> |
4758 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 4640 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
4759 | <source> Sensitive </source> | 4641 | <source> Sensitive </source> |
4760 | <context-group purpose="location"> | 4642 | <context-group purpose="location"> |
4761 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | 4643 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> |
4762 | <context context-type="linenumber">56,57</context> | 4644 | <context context-type="linenumber">58,59</context> |
4763 | </context-group> | 4645 | </context-group> |
4764 | </trans-unit> | 4646 | </trans-unit> |
4765 | <trans-unit id="5927402622550505067" datatype="html"> | 4647 | <trans-unit id="5927402622550505067" datatype="html"> |
@@ -4874,13 +4756,6 @@ The link will expire within 1 hour.</source> | |||
4874 | <context context-type="linenumber">54</context> | 4756 | <context context-type="linenumber">54</context> |
4875 | </context-group> | 4757 | </context-group> |
4876 | </trans-unit> | 4758 | </trans-unit> |
4877 | <trans-unit id="f9fdeb0495dd96319d13df9d9536760d0a98d9b5" datatype="html"> | ||
4878 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/></source> | ||
4879 | <context-group purpose="location"> | ||
4880 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> | ||
4881 | <context context-type="linenumber">22</context> | ||
4882 | </context-group> | ||
4883 | </trans-unit> | ||
4884 | <trans-unit id="3346d8a0bf3dd8c25ddc561ccd5fafb6ee9fadc8" datatype="html"> | 4759 | <trans-unit id="3346d8a0bf3dd8c25ddc561ccd5fafb6ee9fadc8" datatype="html"> |
4885 | <source>Welcome to PeerTube!</source> | 4760 | <source>Welcome to PeerTube!</source> |
4886 | <context-group purpose="location"> | 4761 | <context-group purpose="location"> |
@@ -4895,6 +4770,83 @@ The link will expire within 1 hour.</source> | |||
4895 | <context context-type="linenumber">14,15</context> | 4770 | <context context-type="linenumber">14,15</context> |
4896 | </context-group> | 4771 | </context-group> |
4897 | </trans-unit> | 4772 | </trans-unit> |
4773 | <trans-unit id="a86239658c3cf042e7c987bb0df7473a53d7517e" datatype="html"> | ||
4774 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> imports</source> | ||
4775 | <context-group purpose="location"> | ||
4776 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4777 | <context context-type="linenumber">10</context> | ||
4778 | </context-group> | ||
4779 | </trans-unit> | ||
4780 | <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191" datatype="html"> | ||
4781 | <source>Target</source> | ||
4782 | <context-group purpose="location"> | ||
4783 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4784 | <context context-type="linenumber">17</context> | ||
4785 | </context-group> | ||
4786 | </trans-unit> | ||
4787 | <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4" datatype="html"> | ||
4788 | <source>Video</source> | ||
4789 | <context-group purpose="location"> | ||
4790 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4791 | <context context-type="linenumber">18</context> | ||
4792 | </context-group> | ||
4793 | <context-group purpose="location"> | ||
4794 | <context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context> | ||
4795 | <context context-type="linenumber">20</context> | ||
4796 | </context-group> | ||
4797 | <context-group purpose="location"> | ||
4798 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
4799 | <context context-type="linenumber">60</context> | ||
4800 | </context-group> | ||
4801 | </trans-unit> | ||
4802 | <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b" datatype="html"> | ||
4803 | <source>State</source> | ||
4804 | <context-group purpose="location"> | ||
4805 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4806 | <context context-type="linenumber">19</context> | ||
4807 | </context-group> | ||
4808 | </trans-unit> | ||
4809 | <trans-unit id="ff3173170e5b03536dd3b3e1afbae1f55356eb1b" datatype="html"> | ||
4810 | <source>Created <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="createdAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
4811 | <context-group purpose="location"> | ||
4812 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4813 | <context context-type="linenumber">20</context> | ||
4814 | </context-group> | ||
4815 | <context-group purpose="location"> | ||
4816 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
4817 | <context context-type="linenumber">43</context> | ||
4818 | </context-group> | ||
4819 | <context-group purpose="location"> | ||
4820 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | ||
4821 | <context context-type="linenumber">40</context> | ||
4822 | </context-group> | ||
4823 | <context-group purpose="location"> | ||
4824 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | ||
4825 | <context context-type="linenumber">34</context> | ||
4826 | </context-group> | ||
4827 | <context-group purpose="location"> | ||
4828 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | ||
4829 | <context context-type="linenumber">31</context> | ||
4830 | </context-group> | ||
4831 | </trans-unit> | ||
4832 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> | ||
4833 | <source>See the error</source> | ||
4834 | <context-group purpose="location"> | ||
4835 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4836 | <context context-type="linenumber">27</context> | ||
4837 | </context-group> | ||
4838 | <context-group purpose="location"> | ||
4839 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4840 | <context context-type="linenumber">27</context> | ||
4841 | </context-group> | ||
4842 | </trans-unit> | ||
4843 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> | ||
4844 | <source>This video was deleted</source> | ||
4845 | <context-group purpose="location"> | ||
4846 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | ||
4847 | <context context-type="linenumber">49</context> | ||
4848 | </context-group> | ||
4849 | </trans-unit> | ||
4898 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> | 4850 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> |
4899 | <source>My subscriptions</source> | 4851 | <source>My subscriptions</source> |
4900 | <context-group purpose="location"> | 4852 | <context-group purpose="location"> |
@@ -5162,104 +5114,6 @@ The link will expire within 1 hour.</source> | |||
5162 | <context context-type="linenumber">19</context> | 5114 | <context context-type="linenumber">19</context> |
5163 | </context-group> | 5115 | </context-group> |
5164 | </trans-unit> | 5116 | </trans-unit> |
5165 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> | ||
5166 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | ||
5167 | <context-group purpose="location"> | ||
5168 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context> | ||
5169 | <context context-type="linenumber">9</context> | ||
5170 | </context-group> | ||
5171 | </trans-unit> | ||
5172 | <trans-unit id="a3550f6ce98d90d2947fe062530629dc2d3923b4" datatype="html"> | ||
5173 | <source>Updated <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/></source> | ||
5174 | <context-group purpose="location"> | ||
5175 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context> | ||
5176 | <context context-type="linenumber">29</context> | ||
5177 | </context-group> | ||
5178 | </trans-unit> | ||
5179 | <trans-unit id="4999ffd919bb9af482aa4c53badd6cd654468582" datatype="html"> | ||
5180 | <source> <x id="INTERPOLATION" equiv-text=" {{ playlist.videoChanne"/> </source> | ||
5181 | <context-group purpose="location"> | ||
5182 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context> | ||
5183 | <context context-type="linenumber">22,24</context> | ||
5184 | </context-group> | ||
5185 | </trans-unit> | ||
5186 | <trans-unit id="2049290282534091182" datatype="html"> | ||
5187 | <source>Moderation</source> | ||
5188 | <context-group purpose="location"> | ||
5189 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5190 | <context context-type="linenumber">28</context> | ||
5191 | </context-group> | ||
5192 | <context-group purpose="location"> | ||
5193 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | ||
5194 | <context context-type="linenumber">47</context> | ||
5195 | </context-group> | ||
5196 | </trans-unit> | ||
5197 | <trans-unit id="7815838401315213887" datatype="html"> | ||
5198 | <source>Muted accounts</source> | ||
5199 | <context-group purpose="location"> | ||
5200 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5201 | <context context-type="linenumber">31</context> | ||
5202 | </context-group> | ||
5203 | <context-group purpose="location"> | ||
5204 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> | ||
5205 | <context context-type="linenumber">86</context> | ||
5206 | </context-group> | ||
5207 | <context-group purpose="location"> | ||
5208 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | ||
5209 | <context context-type="linenumber">74</context> | ||
5210 | </context-group> | ||
5211 | <context-group purpose="location"> | ||
5212 | <context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context> | ||
5213 | <context context-type="linenumber">98</context> | ||
5214 | </context-group> | ||
5215 | </trans-unit> | ||
5216 | <trans-unit id="5668793810321242853" datatype="html"> | ||
5217 | <source>Muted servers</source> | ||
5218 | <context-group purpose="location"> | ||
5219 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5220 | <context context-type="linenumber">36</context> | ||
5221 | </context-group> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">95</context> | ||
5225 | </context-group> | ||
5226 | <context-group purpose="location"> | ||
5227 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | ||
5228 | <context context-type="linenumber">81</context> | ||
5229 | </context-group> | ||
5230 | </trans-unit> | ||
5231 | <trans-unit id="6499699285816188400" datatype="html"> | ||
5232 | <source>Abuse reports</source> | ||
5233 | <context-group purpose="location"> | ||
5234 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5235 | <context context-type="linenumber">41</context> | ||
5236 | </context-group> | ||
5237 | </trans-unit> | ||
5238 | <trans-unit id="4930506384627295710" datatype="html"> | ||
5239 | <source>Settings</source> | ||
5240 | <context-group purpose="location"> | ||
5241 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5242 | <context context-type="linenumber">50</context> | ||
5243 | </context-group> | ||
5244 | </trans-unit> | ||
5245 | <trans-unit id="5851560788527570644" datatype="html"> | ||
5246 | <source>Notifications</source> | ||
5247 | <context-group purpose="location"> | ||
5248 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5249 | <context context-type="linenumber">55</context> | ||
5250 | </context-group> | ||
5251 | <context-group purpose="location"> | ||
5252 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> | ||
5253 | <context context-type="linenumber">109</context> | ||
5254 | </context-group> | ||
5255 | </trans-unit> | ||
5256 | <trans-unit id="6658000829978978023" datatype="html"> | ||
5257 | <source>Applications</source> | ||
5258 | <context-group purpose="location"> | ||
5259 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
5260 | <context context-type="linenumber">60</context> | ||
5261 | </context-group> | ||
5262 | </trans-unit> | ||
5263 | <trans-unit id="1909009883731319373" datatype="html"> | 5117 | <trans-unit id="1909009883731319373" datatype="html"> |
5264 | <source>Report <x id="PH" equiv-text="this.account.displayName"/></source> | 5118 | <source>Report <x id="PH" equiv-text="this.account.displayName"/></source> |
5265 | <context-group purpose="location"> | 5119 | <context-group purpose="location"> |
@@ -5315,605 +5169,25 @@ The link will expire within 1 hour.</source> | |||
5315 | <context context-type="linenumber">36,38</context> | 5169 | <context context-type="linenumber">36,38</context> |
5316 | </context-group> | 5170 | </context-group> |
5317 | </trans-unit> | 5171 | </trans-unit> |
5318 | <trans-unit id="658727060940996385" datatype="html"> | 5172 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a" datatype="html"> |
5319 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 5173 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
5320 | <context-group purpose="location"> | ||
5321 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | ||
5322 | <context context-type="linenumber">41</context> | ||
5323 | </context-group> | ||
5324 | </trans-unit> | ||
5325 | <trans-unit id="270726559962362501" datatype="html"> | ||
5326 | <source>Renew token</source> | ||
5327 | <context-group purpose="location"> | ||
5328 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | ||
5329 | <context context-type="linenumber">42</context> | ||
5330 | </context-group> | ||
5331 | </trans-unit> | ||
5332 | <trans-unit id="3029923402309610616" datatype="html"> | ||
5333 | <source>Token renewed. Update your client configuration accordingly.</source> | ||
5334 | <context-group purpose="location"> | ||
5335 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | ||
5336 | <context context-type="linenumber">49</context> | ||
5337 | </context-group> | ||
5338 | </trans-unit> | ||
5339 | <trans-unit id="f1abafaeb40ce52355ddcc24686e3cd17b64e08a" datatype="html"> | ||
5340 | <source>Applications</source> | ||
5341 | <context-group purpose="location"> | ||
5342 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
5343 | <context context-type="linenumber">3</context> | ||
5344 | </context-group> | ||
5345 | </trans-unit> | ||
5346 | <trans-unit id="a9dff163e112fd17d43b049f58d1f6a0ee60aab0" datatype="html"> | ||
5347 | <source>SUBSCRIPTION FEED</source> | ||
5348 | <context-group purpose="location"> | ||
5349 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
5350 | <context context-type="linenumber">8</context> | ||
5351 | </context-group> | ||
5352 | </trans-unit> | ||
5353 | <trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | ||
5354 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source> | ||
5355 | <context-group purpose="location"> | ||
5356 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
5357 | <context context-type="linenumber">10,12</context> | ||
5358 | </context-group> | ||
5359 | </trans-unit> | ||
5360 | <trans-unit id="70b989779eb53e6ff14d810336677dbc3bde4202" datatype="html"> | ||
5361 | <source>Feed URL</source> | ||
5362 | <context-group purpose="location"> | ||
5363 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
5364 | <context context-type="linenumber">18</context> | ||
5365 | </context-group> | ||
5366 | </trans-unit> | ||
5367 | <trans-unit id="87752e8ea0b8d9cc97d85d89a74b828c031242d2" datatype="html"> | ||
5368 | <source>Feed Token</source> | ||
5369 | <context-group purpose="location"> | ||
5370 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
5371 | <context context-type="linenumber">23</context> | ||
5372 | </context-group> | ||
5373 | </trans-unit> | ||
5374 | <trans-unit id="7a2fe0ebf8d14b0c59eae0b7a48ce23425d45eac" datatype="html"> | ||
5375 | <source>Renew token</source> | ||
5376 | <context-group purpose="location"> | ||
5377 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
5378 | <context context-type="linenumber">33</context> | ||
5379 | </context-group> | ||
5380 | </trans-unit> | ||
5381 | <trans-unit id="3525866160632851851" datatype="html"> | ||
5382 | <source>Avatar changed.</source> | ||
5383 | <context-group purpose="location"> | ||
5384 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context> | ||
5385 | <context context-type="linenumber">42</context> | ||
5386 | </context-group> | ||
5387 | <context-group purpose="location"> | ||
5388 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context> | ||
5389 | <context context-type="linenumber">105</context> | ||
5390 | </context-group> | ||
5391 | </trans-unit> | ||
5392 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> | ||
5393 | <source>PROFILE SETTINGS</source> | ||
5394 | <context-group purpose="location"> | ||
5395 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5396 | <context context-type="linenumber">12</context> | ||
5397 | </context-group> | ||
5398 | </trans-unit> | ||
5399 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | ||
5400 | <source>VIDEO SETTINGS</source> | ||
5401 | <context-group purpose="location"> | ||
5402 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5403 | <context context-type="linenumber">26</context> | ||
5404 | </context-group> | ||
5405 | </trans-unit> | ||
5406 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | ||
5407 | <source>NOTIFICATIONS</source> | ||
5408 | <context-group purpose="location"> | ||
5409 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5410 | <context context-type="linenumber">37</context> | ||
5411 | </context-group> | ||
5412 | </trans-unit> | ||
5413 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | ||
5414 | <source>INTERFACE</source> | ||
5415 | <context-group purpose="location"> | ||
5416 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5417 | <context context-type="linenumber">47</context> | ||
5418 | </context-group> | ||
5419 | </trans-unit> | ||
5420 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | ||
5421 | <source>EMAIL</source> | ||
5422 | <context-group purpose="location"> | ||
5423 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5424 | <context context-type="linenumber">67</context> | ||
5425 | </context-group> | ||
5426 | </trans-unit> | ||
5427 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | ||
5428 | <source>DANGER ZONE</source> | ||
5429 | <context-group purpose="location"> | ||
5430 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5431 | <context context-type="linenumber">77</context> | ||
5432 | </context-group> | ||
5433 | <context-group purpose="location"> | ||
5434 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> | ||
5435 | <context context-type="linenumber">197</context> | ||
5436 | </context-group> | ||
5437 | <context-group purpose="location"> | ||
5438 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> | ||
5439 | <context context-type="linenumber">197</context> | ||
5440 | </context-group> | ||
5441 | </trans-unit> | ||
5442 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | ||
5443 | <source>PASSWORD</source> | ||
5444 | <context-group purpose="location"> | ||
5445 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
5446 | <context context-type="linenumber">57</context> | ||
5447 | </context-group> | ||
5448 | </trans-unit> | ||
5449 | <trans-unit id="3723085768598852106" datatype="html"> | ||
5450 | <source>Video removed from <x id="PH" equiv-text="this.playlist.displayName"/></source> | ||
5451 | <context-group purpose="location"> | ||
5452 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5453 | <context context-type="linenumber">98</context> | ||
5454 | </context-group> | ||
5455 | <context-group purpose="location"> | ||
5456 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
5457 | <context context-type="linenumber">307</context> | ||
5458 | </context-group> | ||
5459 | </trans-unit> | ||
5460 | <trans-unit id="985751964589921228" datatype="html"> | ||
5461 | <source>Timestamps updated</source> | ||
5462 | <context-group purpose="location"> | ||
5463 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5464 | <context context-type="linenumber">117</context> | ||
5465 | </context-group> | ||
5466 | <context-group purpose="location"> | ||
5467 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
5468 | <context context-type="linenumber">273</context> | ||
5469 | </context-group> | ||
5470 | </trans-unit> | ||
5471 | <trans-unit id="6421445850411984665" datatype="html"> | ||
5472 | <source>Starts at </source> | ||
5473 | <context-group purpose="location"> | ||
5474 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5475 | <context context-type="linenumber">140</context> | ||
5476 | </context-group> | ||
5477 | <context-group purpose="location"> | ||
5478 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5479 | <context context-type="linenumber">143</context> | ||
5480 | </context-group> | ||
5481 | </trans-unit> | ||
5482 | <trans-unit id="7145200412085189912" datatype="html"> | ||
5483 | <source>Stops at </source> | ||
5484 | <context-group purpose="location"> | ||
5485 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5486 | <context context-type="linenumber">141</context> | ||
5487 | </context-group> | ||
5488 | </trans-unit> | ||
5489 | <trans-unit id="921225940108335688" datatype="html"> | ||
5490 | <source> and stops at </source> | ||
5491 | <context-group purpose="location"> | ||
5492 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5493 | <context context-type="linenumber">143</context> | ||
5494 | </context-group> | ||
5495 | </trans-unit> | ||
5496 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> | ||
5497 | <source>Unavailable</source> | ||
5498 | <context-group purpose="location"> | ||
5499 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5500 | <context context-type="linenumber">32</context> | ||
5501 | </context-group> | ||
5502 | </trans-unit> | ||
5503 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> | ||
5504 | <source>Deleted</source> | ||
5505 | <context-group purpose="location"> | ||
5506 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5507 | <context context-type="linenumber">34</context> | ||
5508 | </context-group> | ||
5509 | <context-group purpose="location"> | ||
5510 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
5511 | <context context-type="linenumber">116</context> | ||
5512 | </context-group> | ||
5513 | <context-group purpose="location"> | ||
5514 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context> | ||
5515 | <context context-type="linenumber">57</context> | ||
5516 | </context-group> | ||
5517 | </trans-unit> | ||
5518 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e" datatype="html"> | ||
5519 | <source>Delete from <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/></source> | ||
5520 | <context-group purpose="location"> | ||
5521 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5522 | <context context-type="linenumber">88</context> | ||
5523 | </context-group> | ||
5524 | </trans-unit> | ||
5525 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | ||
5526 | <source>Edit starts/stops at</source> | ||
5527 | <context-group purpose="location"> | ||
5528 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5529 | <context context-type="linenumber">50</context> | ||
5530 | </context-group> | ||
5531 | </trans-unit> | ||
5532 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | ||
5533 | <source>Start at</source> | ||
5534 | <context-group purpose="location"> | ||
5535 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5536 | <context context-type="linenumber">57</context> | ||
5537 | </context-group> | ||
5538 | <context-group purpose="location"> | ||
5539 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5540 | <context context-type="linenumber">113</context> | ||
5541 | </context-group> | ||
5542 | <context-group purpose="location"> | ||
5543 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
5544 | <context context-type="linenumber">34</context> | ||
5545 | </context-group> | ||
5546 | <context-group purpose="location"> | ||
5547 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | ||
5548 | <context context-type="linenumber">47</context> | ||
5549 | </context-group> | ||
5550 | </trans-unit> | ||
5551 | <trans-unit id="4d20563f7e338a1d09eb756054564ccf7c6a30ef" datatype="html"> | ||
5552 | <source>Stop at</source> | ||
5553 | <context-group purpose="location"> | ||
5554 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5555 | <context context-type="linenumber">71</context> | ||
5556 | </context-group> | ||
5557 | <context-group purpose="location"> | ||
5558 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5559 | <context context-type="linenumber">144</context> | ||
5560 | </context-group> | ||
5561 | <context-group purpose="location"> | ||
5562 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
5563 | <context context-type="linenumber">35</context> | ||
5564 | </context-group> | ||
5565 | <context-group purpose="location"> | ||
5566 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | ||
5567 | <context context-type="linenumber">62</context> | ||
5568 | </context-group> | ||
5569 | </trans-unit> | ||
5570 | <trans-unit id="7293356040886494773" datatype="html"> | ||
5571 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | ||
5572 | <context-group purpose="location"> | ||
5573 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5574 | <context context-type="linenumber">180</context> | ||
5575 | </context-group> | ||
5576 | <context-group purpose="location"> | ||
5577 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
5578 | <context context-type="linenumber">146</context> | ||
5579 | </context-group> | ||
5580 | </trans-unit> | ||
5581 | <trans-unit id="4859202148272511129" datatype="html"> | ||
5582 | <source>Unblock</source> | ||
5583 | <context-group purpose="location"> | ||
5584 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5585 | <context context-type="linenumber">182</context> | ||
5586 | </context-group> | ||
5587 | <context-group purpose="location"> | ||
5588 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5589 | <context context-type="linenumber">296</context> | ||
5590 | </context-group> | ||
5591 | <context-group purpose="location"> | ||
5592 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
5593 | <context context-type="linenumber">70</context> | ||
5594 | </context-group> | ||
5595 | <context-group purpose="location"> | ||
5596 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
5597 | <context context-type="linenumber">148</context> | ||
5598 | </context-group> | ||
5599 | </trans-unit> | ||
5600 | <trans-unit id="4922469417589203720" datatype="html"> | ||
5601 | <source>Video <x id="PH" equiv-text="this.video.name"/> unblocked.</source> | ||
5602 | <context-group purpose="location"> | ||
5603 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5604 | <context context-type="linenumber">188</context> | ||
5605 | </context-group> | ||
5606 | <context-group purpose="location"> | ||
5607 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
5608 | <context context-type="linenumber">153</context> | ||
5609 | </context-group> | ||
5610 | </trans-unit> | ||
5611 | <trans-unit id="3622946684246476652" datatype="html"> | ||
5612 | <source>Do you really want to delete this video?</source> | ||
5613 | <context-group purpose="location"> | ||
5614 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5615 | <context context-type="linenumber">203</context> | ||
5616 | </context-group> | ||
5617 | <context-group purpose="location"> | ||
5618 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
5619 | <context context-type="linenumber">370</context> | ||
5620 | </context-group> | ||
5621 | <context-group purpose="location"> | ||
5622 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
5623 | <context context-type="linenumber">78</context> | ||
5624 | </context-group> | ||
5625 | </trans-unit> | ||
5626 | <trans-unit id="7639191791633609999" datatype="html"> | ||
5627 | <source>The live stream will be automatically terminated.</source> | ||
5628 | <context-group purpose="location"> | ||
5629 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5630 | <context context-type="linenumber">205</context> | ||
5631 | </context-group> | ||
5632 | </trans-unit> | ||
5633 | <trans-unit id="2990849907502572301" datatype="html"> | ||
5634 | <source>This video will be duplicated by your instance.</source> | ||
5635 | <context-group purpose="location"> | ||
5636 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5637 | <context context-type="linenumber">226</context> | ||
5638 | </context-group> | ||
5639 | </trans-unit> | ||
5640 | <trans-unit id="8150022485860412528" datatype="html"> | ||
5641 | <source>Account <x id="PH" equiv-text="params.nameWithHost"/> muted.</source> | ||
5642 | <context-group purpose="location"> | ||
5643 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5644 | <context context-type="linenumber">240</context> | ||
5645 | </context-group> | ||
5646 | <context-group purpose="location"> | ||
5647 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | ||
5648 | <context context-type="linenumber">119</context> | ||
5649 | </context-group> | ||
5650 | </trans-unit> | ||
5651 | <trans-unit id="1950057220179636309" datatype="html"> | ||
5652 | <source>Save to playlist</source> | ||
5653 | <context-group purpose="location"> | ||
5654 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5655 | <context context-type="linenumber">264</context> | ||
5656 | </context-group> | ||
5657 | <context-group purpose="location"> | ||
5658 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context> | ||
5659 | <context context-type="linenumber">134</context> | ||
5660 | </context-group> | ||
5661 | </trans-unit> | ||
5662 | <trans-unit id="3099741642167775297" datatype="html"> | ||
5663 | <source>Download</source> | ||
5664 | <context-group purpose="location"> | ||
5665 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5666 | <context context-type="linenumber">272</context> | ||
5667 | </context-group> | ||
5668 | </trans-unit> | ||
5669 | <trans-unit id="420763834450076269" datatype="html"> | ||
5670 | <source>Block</source> | ||
5671 | <context-group purpose="location"> | ||
5672 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5673 | <context context-type="linenumber">290</context> | ||
5674 | </context-group> | ||
5675 | </trans-unit> | ||
5676 | <trans-unit id="4503408361537553733" datatype="html"> | ||
5677 | <source>Mirror</source> | ||
5678 | <context-group purpose="location"> | ||
5679 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5680 | <context context-type="linenumber">302</context> | ||
5681 | </context-group> | ||
5682 | </trans-unit> | ||
5683 | <trans-unit id="7008439939460403347" datatype="html"> | ||
5684 | <source>Report</source> | ||
5685 | <context-group purpose="location"> | ||
5686 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5687 | <context context-type="linenumber">314</context> | ||
5688 | </context-group> | ||
5689 | </trans-unit> | ||
5690 | <trans-unit id="4903651219400691248" datatype="html"> | ||
5691 | <source>Mute account</source> | ||
5692 | <context-group purpose="location"> | ||
5693 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5694 | <context context-type="linenumber">322</context> | ||
5695 | </context-group> | ||
5696 | <context-group purpose="location"> | ||
5697 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
5698 | <context context-type="linenumber">287</context> | ||
5699 | </context-group> | ||
5700 | </trans-unit> | ||
5701 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | ||
5702 | <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span *ngIf="!interact">"/>Remote subscribe<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span *ngIf="interact">"/>Remote interact<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||
5703 | <context-group purpose="location"> | ||
5704 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | ||
5705 | <context context-type="linenumber">11,12</context> | ||
5706 | </context-group> | ||
5707 | </trans-unit> | ||
5708 | <trans-unit id="01cf713559c39a17cf5c8fbcd33b004a77ce0963" datatype="html"> | ||
5709 | <source> You can subscribe to the channel via any ActivityPub-capable fediverse instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5710 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5711 | "/> For instance with Mastodon or Pleroma you can type the channel URL in the search box and subscribe there. </source> | ||
5712 | <context-group purpose="location"> | ||
5713 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | ||
5714 | <context context-type="linenumber">18,20</context> | ||
5715 | </context-group> | ||
5716 | </trans-unit> | ||
5717 | <trans-unit id="c590f63488a5179f20a46930cf5e673f8136673d" datatype="html"> | ||
5718 | <source> You can interact with this via any ActivityPub-capable fediverse instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5719 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5720 | "/> For instance with Mastodon or Pleroma you can type the current URL in the search box and interact with it there. </source> | ||
5721 | <context-group purpose="location"> | ||
5722 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | ||
5723 | <context context-type="linenumber">27,29</context> | ||
5724 | </context-group> | ||
5725 | </trans-unit> | ||
5726 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6" datatype="html"> | ||
5727 | <source>URL</source> | ||
5728 | <context-group purpose="location"> | ||
5729 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5730 | <context context-type="linenumber">16</context> | ||
5731 | </context-group> | ||
5732 | <context-group purpose="location"> | ||
5733 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5734 | <context context-type="linenumber">71</context> | ||
5735 | </context-group> | ||
5736 | <context-group purpose="location"> | ||
5737 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context> | ||
5738 | <context context-type="linenumber">6</context> | ||
5739 | </context-group> | ||
5740 | </trans-unit> | ||
5741 | <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> | ||
5742 | <source>QR-Code</source> | ||
5743 | <context-group purpose="location"> | ||
5744 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5745 | <context context-type="linenumber">27</context> | ||
5746 | </context-group> | ||
5747 | <context-group purpose="location"> | ||
5748 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5749 | <context context-type="linenumber">81</context> | ||
5750 | </context-group> | ||
5751 | </trans-unit> | ||
5752 | <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c" datatype="html"> | ||
5753 | <source>Embed</source> | ||
5754 | <context-group purpose="location"> | ||
5755 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5756 | <context context-type="linenumber">37</context> | ||
5757 | </context-group> | ||
5758 | <context-group purpose="location"> | ||
5759 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5760 | <context context-type="linenumber">91</context> | ||
5761 | </context-group> | ||
5762 | </trans-unit> | ||
5763 | <trans-unit id="71420314c00d8b709ea1aad8f608498f8db92258" datatype="html"> | ||
5764 | <source>Share the playlist</source> | ||
5765 | <context-group purpose="location"> | ||
5766 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5767 | <context context-type="linenumber">11</context> | ||
5768 | </context-group> | ||
5769 | </trans-unit> | ||
5770 | <trans-unit id="08c1bbb22df74b12c362fd114d0aa5a230ee4656" datatype="html"> | ||
5771 | <source> 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). </source> | ||
5772 | <context-group purpose="location"> | ||
5773 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5774 | <context context-type="linenumber">44,45</context> | ||
5775 | </context-group> | ||
5776 | <context-group purpose="location"> | ||
5777 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5778 | <context context-type="linenumber">98,99</context> | ||
5779 | </context-group> | ||
5780 | </trans-unit> | ||
5781 | <trans-unit id="dfc8701a2a6898d6784db0ebf9d3191552d81d89" datatype="html"> | ||
5782 | <source>Share the playlist at this video position</source> | ||
5783 | <context-group purpose="location"> | ||
5784 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5785 | <context context-type="linenumber">58</context> | ||
5786 | </context-group> | ||
5787 | </trans-unit> | ||
5788 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | ||
5789 | <source>Autoplay</source> | ||
5790 | <context-group purpose="location"> | ||
5791 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5792 | <context context-type="linenumber">159</context> | ||
5793 | </context-group> | ||
5794 | </trans-unit> | ||
5795 | <trans-unit id="51f7d84d38a304f7f056d2dcaf6d733c3ade35f9" datatype="html"> | ||
5796 | <source>Share the video</source> | ||
5797 | <context-group purpose="location"> | ||
5798 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5799 | <context context-type="linenumber">66</context> | ||
5800 | </context-group> | ||
5801 | </trans-unit> | ||
5802 | <trans-unit id="9adb13e2ba5160c8b0b100dc3f4cbe6051b5af9b" datatype="html"> | ||
5803 | <source>Auto select subtitle</source> | ||
5804 | <context-group purpose="location"> | ||
5805 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5806 | <context context-type="linenumber">128</context> | ||
5807 | </context-group> | ||
5808 | </trans-unit> | ||
5809 | <trans-unit id="67732b09326ab7941ce983205a42d7819dd35668" datatype="html"> | ||
5810 | <source>Loop</source> | ||
5811 | <context-group purpose="location"> | ||
5812 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5813 | <context context-type="linenumber">173</context> | ||
5814 | </context-group> | ||
5815 | </trans-unit> | ||
5816 | <trans-unit id="84e4e97b8f2abab33abeecc89f47671b07fd09cf" datatype="html"> | ||
5817 | <source>Use origin instance URL</source> | ||
5818 | <context-group purpose="location"> | ||
5819 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5820 | <context context-type="linenumber">180</context> | ||
5821 | </context-group> | ||
5822 | </trans-unit> | ||
5823 | <trans-unit id="af3ab1a1035c222ccc88816baa236eb95cea7523" datatype="html"> | ||
5824 | <source>Display video title</source> | ||
5825 | <context-group purpose="location"> | ||
5826 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5827 | <context context-type="linenumber">189</context> | ||
5828 | </context-group> | ||
5829 | </trans-unit> | ||
5830 | <trans-unit id="cd0fb32d9b50b615bdce413ca955283df7ab0b74" datatype="html"> | ||
5831 | <source>Display privacy warning</source> | ||
5832 | <context-group purpose="location"> | ||
5833 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5834 | <context context-type="linenumber">196</context> | ||
5835 | </context-group> | ||
5836 | </trans-unit> | ||
5837 | <trans-unit id="3e10c53d0372db827bf38571e56d166f1df963bf" datatype="html"> | ||
5838 | <source>Display player controls</source> | ||
5839 | <context-group purpose="location"> | ||
5840 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5841 | <context context-type="linenumber">203</context> | ||
5842 | </context-group> | ||
5843 | </trans-unit> | ||
5844 | <trans-unit id="d0701f8fd194fd5a29f6dc015d0a27c85128b65e" datatype="html"> | ||
5845 | <source>Display PeerTube button link</source> | ||
5846 | <context-group purpose="location"> | ||
5847 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5848 | <context context-type="linenumber">210</context> | ||
5849 | </context-group> | ||
5850 | </trans-unit> | ||
5851 | <trans-unit id="f0e9c70583e8264cda79a8151de51cbb1ecb02ef" datatype="html"> | ||
5852 | <source> More customization </source> | ||
5853 | <context-group purpose="location"> | ||
5854 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5855 | <context context-type="linenumber">223,224</context> | ||
5856 | </context-group> | ||
5857 | </trans-unit> | ||
5858 | <trans-unit id="cfad9c5d4357d7c4ac99cc2ce63c54c9738901d7" datatype="html"> | ||
5859 | <source> Less customization </source> | ||
5860 | <context-group purpose="location"> | ||
5861 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5862 | <context context-type="linenumber">231,232</context> | ||
5863 | </context-group> | ||
5864 | </trans-unit> | ||
5865 | <trans-unit id="d8ae45f6eb0e2d78efd70b4e80e132784aa65cf1" datatype="html"> | ||
5866 | <source>Live information</source> | ||
5867 | <context-group purpose="location"> | ||
5868 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | ||
5869 | <context context-type="linenumber">3</context> | ||
5870 | </context-group> | ||
5871 | </trans-unit> | ||
5872 | <trans-unit id="fc840cbc744829dee0c0d50e8d32e45beb731c36" datatype="html"> | ||
5873 | <source>Live RTMP Url</source> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | ||
5876 | <context context-type="linenumber">10</context> | ||
5877 | </context-group> | ||
5878 | <context-group purpose="location"> | ||
5879 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | ||
5880 | <context context-type="linenumber">215</context> | ||
5881 | </context-group> | ||
5882 | </trans-unit> | ||
5883 | <trans-unit id="39d142e6915c4f2d0f9b45e76c176eec6a48c1c1" datatype="html"> | ||
5884 | <source>Live stream key</source> | ||
5885 | <context-group purpose="location"> | ||
5886 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | ||
5887 | <context context-type="linenumber">15</context> | ||
5888 | </context-group> | ||
5889 | <context-group purpose="location"> | ||
5890 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | ||
5891 | <context context-type="linenumber">220</context> | ||
5892 | </context-group> | ||
5893 | </trans-unit> | ||
5894 | <trans-unit id="930826dd8818902aaf1300253dbee4717ceb35ee" datatype="html"> | ||
5895 | <source>⚠️ Never share your stream key with anyone.</source> | ||
5896 | <context-group purpose="location"> | ||
5897 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | ||
5898 | <context context-type="linenumber">18</context> | ||
5899 | </context-group> | ||
5900 | <context-group purpose="location"> | 5174 | <context-group purpose="location"> |
5901 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 5175 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context> |
5902 | <context context-type="linenumber">223</context> | 5176 | <context context-type="linenumber">9</context> |
5903 | </context-group> | 5177 | </context-group> |
5904 | </trans-unit> | 5178 | </trans-unit> |
5905 | <trans-unit id="5d3bc02dfb6c9b6fdd716f77c487a779ba6d6cc2" datatype="html"> | 5179 | <trans-unit id="a3550f6ce98d90d2947fe062530629dc2d3923b4" datatype="html"> |
5906 | <source>Update live settings</source> | 5180 | <source>Updated <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/></source> |
5907 | <context-group purpose="location"> | 5181 | <context-group purpose="location"> |
5908 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | 5182 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context> |
5909 | <context context-type="linenumber">30</context> | 5183 | <context context-type="linenumber">29</context> |
5910 | </context-group> | 5184 | </context-group> |
5911 | </trans-unit> | 5185 | </trans-unit> |
5912 | <trans-unit id="fb8aad312b72bbb7e5a1e2cc0b55fae8962bf0fb" datatype="html"> | 5186 | <trans-unit id="4999ffd919bb9af482aa4c53badd6cd654468582" datatype="html"> |
5913 | <source> Cancel </source> | 5187 | <source> <x id="INTERPOLATION" equiv-text=" {{ playlist.videoChanne"/> </source> |
5914 | <context-group purpose="location"> | 5188 | <context-group purpose="location"> |
5915 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> | 5189 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context> |
5916 | <context context-type="linenumber">19,20</context> | 5190 | <context context-type="linenumber">22,24</context> |
5917 | </context-group> | 5191 | </context-group> |
5918 | </trans-unit> | 5192 | </trans-unit> |
5919 | <trans-unit id="3403978719736970622" datatype="html"> | 5193 | <trans-unit id="3403978719736970622" datatype="html"> |
@@ -5988,6 +5262,17 @@ The link will expire within 1 hour.</source> | |||
5988 | <context context-type="linenumber">107</context> | 5262 | <context context-type="linenumber">107</context> |
5989 | </context-group> | 5263 | </context-group> |
5990 | </trans-unit> | 5264 | </trans-unit> |
5265 | <trans-unit id="8150022485860412528" datatype="html"> | ||
5266 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> muted.</source> | ||
5267 | <context-group purpose="location"> | ||
5268 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | ||
5269 | <context context-type="linenumber">119</context> | ||
5270 | </context-group> | ||
5271 | <context-group purpose="location"> | ||
5272 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5273 | <context context-type="linenumber">240</context> | ||
5274 | </context-group> | ||
5275 | </trans-unit> | ||
5991 | <trans-unit id="7390990800435887351" datatype="html"> | 5276 | <trans-unit id="7390990800435887351" datatype="html"> |
5992 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> unmuted.</source> | 5277 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> unmuted.</source> |
5993 | <context-group purpose="location"> | 5278 | <context-group purpose="location"> |
@@ -6293,425 +5578,593 @@ The link will expire within 1 hour.</source> | |||
6293 | <context context-type="linenumber">369</context> | 5578 | <context context-type="linenumber">369</context> |
6294 | </context-group> | 5579 | </context-group> |
6295 | </trans-unit> | 5580 | </trans-unit> |
6296 | <trans-unit id="4247400351982331798" datatype="html"> | 5581 | <trans-unit id="f9fdeb0495dd96319d13df9d9536760d0a98d9b5" datatype="html"> |
6297 | <source>Account settings</source> | 5582 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/></source> |
6298 | <context-group purpose="location"> | 5583 | <context-group purpose="location"> |
6299 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> | 5584 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> |
6300 | <context context-type="linenumber">29</context> | 5585 | <context context-type="linenumber">22</context> |
6301 | </context-group> | 5586 | </context-group> |
6302 | </trans-unit> | 5587 | </trans-unit> |
6303 | <trans-unit id="1991904494976135035" datatype="html"> | 5588 | <trans-unit id="3723085768598852106" datatype="html"> |
6304 | <source>My abuse reports</source> | 5589 | <source>Video removed from <x id="PH" equiv-text="this.playlist.displayName"/></source> |
6305 | <context-group purpose="location"> | 5590 | <context-group purpose="location"> |
6306 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> | 5591 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> |
6307 | <context context-type="linenumber">118</context> | 5592 | <context context-type="linenumber">98</context> |
5593 | </context-group> | ||
5594 | <context-group purpose="location"> | ||
5595 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
5596 | <context context-type="linenumber">307</context> | ||
6308 | </context-group> | 5597 | </context-group> |
6309 | </trans-unit> | 5598 | </trans-unit> |
6310 | <trans-unit id="1795705931707209785" datatype="html"> | 5599 | <trans-unit id="985751964589921228" datatype="html"> |
6311 | <source>Add to watch later</source> | 5600 | <source>Timestamps updated</source> |
6312 | <context-group purpose="location"> | 5601 | <context-group purpose="location"> |
6313 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context> | 5602 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> |
6314 | <context context-type="linenumber">29</context> | 5603 | <context context-type="linenumber">117</context> |
5604 | </context-group> | ||
5605 | <context-group purpose="location"> | ||
5606 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
5607 | <context context-type="linenumber">273</context> | ||
6315 | </context-group> | 5608 | </context-group> |
6316 | </trans-unit> | 5609 | </trans-unit> |
6317 | <trans-unit id="8498940878158860248" datatype="html"> | 5610 | <trans-unit id="6421445850411984665" datatype="html"> |
6318 | <source>Remove from watch later</source> | 5611 | <source>Starts at </source> |
6319 | <context-group purpose="location"> | 5612 | <context-group purpose="location"> |
6320 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context> | 5613 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> |
6321 | <context context-type="linenumber">30</context> | 5614 | <context context-type="linenumber">140</context> |
5615 | </context-group> | ||
5616 | <context-group purpose="location"> | ||
5617 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> | ||
5618 | <context context-type="linenumber">143</context> | ||
6322 | </context-group> | 5619 | </context-group> |
6323 | </trans-unit> | 5620 | </trans-unit> |
6324 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 5621 | <trans-unit id="7145200412085189912" datatype="html"> |
6325 | <source>LIVE</source> | 5622 | <source>Stops at </source> |
6326 | <context-group purpose="location"> | 5623 | <context-group purpose="location"> |
6327 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context> | 5624 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> |
6328 | <context context-type="linenumber">31</context> | 5625 | <context context-type="linenumber">141</context> |
6329 | </context-group> | 5626 | </context-group> |
5627 | </trans-unit> | ||
5628 | <trans-unit id="921225940108335688" datatype="html"> | ||
5629 | <source> and stops at </source> | ||
6330 | <context-group purpose="location"> | 5630 | <context-group purpose="location"> |
6331 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 5631 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context> |
6332 | <context context-type="linenumber">714</context> | 5632 | <context context-type="linenumber">143</context> |
6333 | </context-group> | 5633 | </context-group> |
6334 | </trans-unit> | 5634 | </trans-unit> |
6335 | <trans-unit id="a2adc8b3bb63e13ff7adf65469f356b692bd294b" datatype="html"> | 5635 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> |
6336 | <source>LIVE ENDED</source> | 5636 | <source>Unavailable</source> |
6337 | <context-group purpose="location"> | 5637 | <context-group purpose="location"> |
6338 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context> | 5638 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> |
6339 | <context context-type="linenumber">32</context> | 5639 | <context context-type="linenumber">32</context> |
6340 | </context-group> | 5640 | </context-group> |
6341 | </trans-unit> | 5641 | </trans-unit> |
6342 | <trans-unit id="4967231969832964676" datatype="html"> | 5642 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> |
6343 | <source>Profile updated.</source> | 5643 | <source>Deleted</source> |
6344 | <context-group purpose="location"> | 5644 | <context-group purpose="location"> |
6345 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context> | 5645 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> |
6346 | <context context-type="linenumber">51</context> | 5646 | <context context-type="linenumber">34</context> |
6347 | </context-group> | 5647 | </context-group> |
6348 | </trans-unit> | ||
6349 | <trans-unit id="6159571046971090595" datatype="html"> | ||
6350 | <source>Password updated.</source> | ||
6351 | <context-group purpose="location"> | 5648 | <context-group purpose="location"> |
6352 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> | 5649 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
6353 | <context context-type="linenumber">48</context> | 5650 | <context context-type="linenumber">116</context> |
5651 | </context-group> | ||
5652 | <context-group purpose="location"> | ||
5653 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context> | ||
5654 | <context context-type="linenumber">57</context> | ||
6354 | </context-group> | 5655 | </context-group> |
6355 | </trans-unit> | 5656 | </trans-unit> |
6356 | <trans-unit id="853586874765134886" datatype="html"> | 5657 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e" datatype="html"> |
6357 | <source>You current password is invalid.</source> | 5658 | <source>Delete from <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/></source> |
6358 | <context-group purpose="location"> | 5659 | <context-group purpose="location"> |
6359 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> | 5660 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> |
6360 | <context context-type="linenumber">56</context> | 5661 | <context context-type="linenumber">88</context> |
6361 | </context-group> | 5662 | </context-group> |
5663 | </trans-unit> | ||
5664 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | ||
5665 | <source>Edit starts/stops at</source> | ||
6362 | <context-group purpose="location"> | 5666 | <context-group purpose="location"> |
6363 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | 5667 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> |
6364 | <context context-type="linenumber">61</context> | 5668 | <context context-type="linenumber">50</context> |
6365 | </context-group> | 5669 | </context-group> |
6366 | </trans-unit> | 5670 | </trans-unit> |
6367 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> | 5671 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
6368 | <source>Change password</source> | 5672 | <source>Start at</source> |
6369 | <context-group purpose="location"> | 5673 | <context-group purpose="location"> |
6370 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | 5674 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> |
6371 | <context context-type="linenumber">5</context> | 5675 | <context context-type="linenumber">57</context> |
6372 | </context-group> | 5676 | </context-group> |
6373 | <context-group purpose="location"> | 5677 | <context-group purpose="location"> |
6374 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | 5678 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6375 | <context context-type="linenumber">30</context> | 5679 | <context context-type="linenumber">113</context> |
5680 | </context-group> | ||
5681 | <context-group purpose="location"> | ||
5682 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
5683 | <context context-type="linenumber">34</context> | ||
5684 | </context-group> | ||
5685 | <context-group purpose="location"> | ||
5686 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | ||
5687 | <context context-type="linenumber">47</context> | ||
6376 | </context-group> | 5688 | </context-group> |
6377 | </trans-unit> | 5689 | </trans-unit> |
6378 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b" datatype="html"> | 5690 | <trans-unit id="4d20563f7e338a1d09eb756054564ccf7c6a30ef" datatype="html"> |
6379 | <source>Current password</source> | 5691 | <source>Stop at</source> |
6380 | <context-group purpose="location"> | 5692 | <context-group purpose="location"> |
6381 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | 5693 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> |
6382 | <context context-type="linenumber">7</context> | 5694 | <context context-type="linenumber">71</context> |
5695 | </context-group> | ||
5696 | <context-group purpose="location"> | ||
5697 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5698 | <context context-type="linenumber">144</context> | ||
5699 | </context-group> | ||
5700 | <context-group purpose="location"> | ||
5701 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
5702 | <context context-type="linenumber">35</context> | ||
5703 | </context-group> | ||
5704 | <context-group purpose="location"> | ||
5705 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | ||
5706 | <context context-type="linenumber">62</context> | ||
6383 | </context-group> | 5707 | </context-group> |
6384 | </trans-unit> | 5708 | </trans-unit> |
6385 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229" datatype="html"> | 5709 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6" datatype="html"> |
6386 | <source>New password</source> | 5710 | <source>URL</source> |
6387 | <context-group purpose="location"> | 5711 | <context-group purpose="location"> |
6388 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | 5712 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6389 | <context context-type="linenumber">15</context> | 5713 | <context context-type="linenumber">16</context> |
5714 | </context-group> | ||
5715 | <context-group purpose="location"> | ||
5716 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5717 | <context context-type="linenumber">71</context> | ||
5718 | </context-group> | ||
5719 | <context-group purpose="location"> | ||
5720 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context> | ||
5721 | <context context-type="linenumber">6</context> | ||
6390 | </context-group> | 5722 | </context-group> |
6391 | </trans-unit> | 5723 | </trans-unit> |
6392 | <trans-unit id="ede41f01c781b168a783cfcefc6fb67d48780d9b" datatype="html"> | 5724 | <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> |
6393 | <source>Confirm new password</source> | 5725 | <source>QR-Code</source> |
6394 | <context-group purpose="location"> | 5726 | <context-group purpose="location"> |
6395 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | 5727 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6396 | <context context-type="linenumber">23</context> | 5728 | <context context-type="linenumber">27</context> |
5729 | </context-group> | ||
5730 | <context-group purpose="location"> | ||
5731 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5732 | <context context-type="linenumber">81</context> | ||
6397 | </context-group> | 5733 | </context-group> |
6398 | </trans-unit> | 5734 | </trans-unit> |
6399 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c" datatype="html"> | 5735 | <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c" datatype="html"> |
6400 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="cog" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon> | 5736 | <source>Embed</source> |
6401 | "/> Notification preferences </source> | ||
6402 | <context-group purpose="location"> | 5737 | <context-group purpose="location"> |
6403 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | 5738 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6404 | <context context-type="linenumber">4,6</context> | 5739 | <context context-type="linenumber">37</context> |
5740 | </context-group> | ||
5741 | <context-group purpose="location"> | ||
5742 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5743 | <context context-type="linenumber">91</context> | ||
6405 | </context-group> | 5744 | </context-group> |
6406 | </trans-unit> | 5745 | </trans-unit> |
6407 | <trans-unit id="e7f88c481ecdda90467acd3f4dbe934465cee30f" datatype="html"> | 5746 | <trans-unit id="71420314c00d8b709ea1aad8f608498f8db92258" datatype="html"> |
6408 | <source>Newest first</source> | 5747 | <source>Share the playlist</source> |
6409 | <context-group purpose="location"> | 5748 | <context-group purpose="location"> |
6410 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | 5749 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6411 | <context context-type="linenumber">11</context> | 5750 | <context context-type="linenumber">11</context> |
6412 | </context-group> | 5751 | </context-group> |
6413 | </trans-unit> | 5752 | </trans-unit> |
6414 | <trans-unit id="a05dac5ded54ab304817a823693e2af2ad1cffef" datatype="html"> | 5753 | <trans-unit id="08c1bbb22df74b12c362fd114d0aa5a230ee4656" datatype="html"> |
6415 | <source>Unread first</source> | 5754 | <source> 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). </source> |
6416 | <context-group purpose="location"> | 5755 | <context-group purpose="location"> |
6417 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | 5756 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6418 | <context context-type="linenumber">12</context> | 5757 | <context context-type="linenumber">44,45</context> |
5758 | </context-group> | ||
5759 | <context-group purpose="location"> | ||
5760 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | ||
5761 | <context context-type="linenumber">98,99</context> | ||
6419 | </context-group> | 5762 | </context-group> |
6420 | </trans-unit> | 5763 | </trans-unit> |
6421 | <trans-unit id="58479ebfcc980e1ee37a8102bc4f9a35eca2f680" datatype="html"> | 5764 | <trans-unit id="dfc8701a2a6898d6784db0ebf9d3191552d81d89" datatype="html"> |
6422 | <source>All read</source> | 5765 | <source>Share the playlist at this video position</source> |
6423 | <context-group purpose="location"> | 5766 | <context-group purpose="location"> |
6424 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | 5767 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6425 | <context context-type="linenumber">26</context> | 5768 | <context context-type="linenumber">58</context> |
6426 | </context-group> | 5769 | </context-group> |
6427 | </trans-unit> | 5770 | </trans-unit> |
6428 | <trans-unit id="bd0611346af048015e0a1275091ef68ce98832d2" datatype="html"> | 5771 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
6429 | <source>Muted servers</source> | 5772 | <source>Autoplay</source> |
6430 | <context-group purpose="location"> | 5773 | <context-group purpose="location"> |
6431 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5774 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6432 | <context context-type="linenumber">3</context> | 5775 | <context context-type="linenumber">159</context> |
6433 | </context-group> | 5776 | </context-group> |
5777 | </trans-unit> | ||
5778 | <trans-unit id="51f7d84d38a304f7f056d2dcaf6d733c3ade35f9" datatype="html"> | ||
5779 | <source>Share the video</source> | ||
6434 | <context-group purpose="location"> | 5780 | <context-group purpose="location"> |
6435 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5781 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6436 | <context context-type="linenumber">3</context> | 5782 | <context context-type="linenumber">66</context> |
6437 | </context-group> | 5783 | </context-group> |
6438 | </trans-unit> | 5784 | </trans-unit> |
6439 | <trans-unit id="60cdb933d2c7051f3b5b23f9e5f8c83fa861b220" datatype="html"> | 5785 | <trans-unit id="9adb13e2ba5160c8b0b100dc3f4cbe6051b5af9b" datatype="html"> |
6440 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> muted instances</source> | 5786 | <source>Auto select subtitle</source> |
6441 | <context-group purpose="location"> | 5787 | <context-group purpose="location"> |
6442 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5788 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6443 | <context context-type="linenumber">10</context> | 5789 | <context context-type="linenumber">128</context> |
6444 | </context-group> | 5790 | </context-group> |
5791 | </trans-unit> | ||
5792 | <trans-unit id="67732b09326ab7941ce983205a42d7819dd35668" datatype="html"> | ||
5793 | <source>Loop</source> | ||
6445 | <context-group purpose="location"> | 5794 | <context-group purpose="location"> |
6446 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5795 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6447 | <context context-type="linenumber">10</context> | 5796 | <context context-type="linenumber">173</context> |
6448 | </context-group> | 5797 | </context-group> |
6449 | </trans-unit> | 5798 | </trans-unit> |
6450 | <trans-unit id="c7b73cded84adfa978aae675417f4bb688631a71" datatype="html"> | 5799 | <trans-unit id="84e4e97b8f2abab33abeecc89f47671b07fd09cf" datatype="html"> |
6451 | <source>Mute domains</source> | 5800 | <source>Use origin instance URL</source> |
6452 | <context-group purpose="location"> | 5801 | <context-group purpose="location"> |
6453 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5802 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6454 | <context context-type="linenumber">64</context> | 5803 | <context context-type="linenumber">180</context> |
6455 | </context-group> | 5804 | </context-group> |
5805 | </trans-unit> | ||
5806 | <trans-unit id="af3ab1a1035c222ccc88816baa236eb95cea7523" datatype="html"> | ||
5807 | <source>Display video title</source> | ||
6456 | <context-group purpose="location"> | 5808 | <context-group purpose="location"> |
6457 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5809 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6458 | <context context-type="linenumber">64</context> | 5810 | <context context-type="linenumber">189</context> |
6459 | </context-group> | 5811 | </context-group> |
6460 | </trans-unit> | 5812 | </trans-unit> |
6461 | <trans-unit id="25925fc5826bc5b3eeae7c45b08b0ed74b9e2954" datatype="html"> | 5813 | <trans-unit id="cd0fb32d9b50b615bdce413ca955283df7ab0b74" datatype="html"> |
6462 | <source>Filter...</source> | 5814 | <source>Display privacy warning</source> |
6463 | <context-group purpose="location"> | 5815 | <context-group purpose="location"> |
6464 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5816 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6465 | <context context-type="linenumber">16</context> | 5817 | <context context-type="linenumber">196</context> |
6466 | </context-group> | 5818 | </context-group> |
5819 | </trans-unit> | ||
5820 | <trans-unit id="3e10c53d0372db827bf38571e56d166f1df963bf" datatype="html"> | ||
5821 | <source>Display player controls</source> | ||
6467 | <context-group purpose="location"> | 5822 | <context-group purpose="location"> |
6468 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5823 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6469 | <context context-type="linenumber">16</context> | 5824 | <context context-type="linenumber">203</context> |
6470 | </context-group> | 5825 | </context-group> |
5826 | </trans-unit> | ||
5827 | <trans-unit id="d0701f8fd194fd5a29f6dc015d0a27c85128b65e" datatype="html"> | ||
5828 | <source>Display PeerTube button link</source> | ||
6471 | <context-group purpose="location"> | 5829 | <context-group purpose="location"> |
6472 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 5830 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6473 | <context context-type="linenumber">27</context> | 5831 | <context context-type="linenumber">210</context> |
6474 | </context-group> | 5832 | </context-group> |
5833 | </trans-unit> | ||
5834 | <trans-unit id="f0e9c70583e8264cda79a8151de51cbb1ecb02ef" datatype="html"> | ||
5835 | <source> More customization </source> | ||
6475 | <context-group purpose="location"> | 5836 | <context-group purpose="location"> |
6476 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 5837 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6477 | <context context-type="linenumber">16</context> | 5838 | <context context-type="linenumber">223,224</context> |
6478 | </context-group> | 5839 | </context-group> |
5840 | </trans-unit> | ||
5841 | <trans-unit id="cfad9c5d4357d7c4ac99cc2ce63c54c9738901d7" datatype="html"> | ||
5842 | <source> Less customization </source> | ||
6479 | <context-group purpose="location"> | 5843 | <context-group purpose="location"> |
6480 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5844 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6481 | <context context-type="linenumber">16</context> | 5845 | <context context-type="linenumber">231,232</context> |
6482 | </context-group> | 5846 | </context-group> |
5847 | </trans-unit> | ||
5848 | <trans-unit id="7293356040886494773" datatype="html"> | ||
5849 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | ||
6483 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6484 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5851 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6485 | <context context-type="linenumber">16</context> | 5852 | <context context-type="linenumber">180</context> |
6486 | </context-group> | 5853 | </context-group> |
6487 | <context-group purpose="location"> | 5854 | <context-group purpose="location"> |
6488 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | 5855 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> |
6489 | <context context-type="linenumber">42</context> | 5856 | <context context-type="linenumber">146</context> |
6490 | </context-group> | 5857 | </context-group> |
5858 | </trans-unit> | ||
5859 | <trans-unit id="4859202148272511129" datatype="html"> | ||
5860 | <source>Unblock</source> | ||
6491 | <context-group purpose="location"> | 5861 | <context-group purpose="location"> |
6492 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | 5862 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6493 | <context context-type="linenumber">29</context> | 5863 | <context context-type="linenumber">182</context> |
6494 | </context-group> | 5864 | </context-group> |
6495 | <context-group purpose="location"> | 5865 | <context-group purpose="location"> |
6496 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context> | 5866 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6497 | <context context-type="linenumber">32</context> | 5867 | <context context-type="linenumber">296</context> |
6498 | </context-group> | 5868 | </context-group> |
6499 | <context-group purpose="location"> | 5869 | <context-group purpose="location"> |
6500 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 5870 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> |
6501 | <context context-type="linenumber">16</context> | 5871 | <context context-type="linenumber">70</context> |
5872 | </context-group> | ||
5873 | <context-group purpose="location"> | ||
5874 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
5875 | <context context-type="linenumber">148</context> | ||
6502 | </context-group> | 5876 | </context-group> |
6503 | </trans-unit> | 5877 | </trans-unit> |
6504 | <trans-unit id="a3ae5c724857d00c006273db314041ab0664c269" datatype="html"> | 5878 | <trans-unit id="4922469417589203720" datatype="html"> |
6505 | <source>Mute domain</source> | 5879 | <source>Video <x id="PH" equiv-text="this.video.name"/> unblocked.</source> |
6506 | <context-group purpose="location"> | 5880 | <context-group purpose="location"> |
6507 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5881 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6508 | <context context-type="linenumber">24</context> | 5882 | <context context-type="linenumber">188</context> |
6509 | </context-group> | 5883 | </context-group> |
6510 | <context-group purpose="location"> | 5884 | <context-group purpose="location"> |
6511 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5885 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> |
6512 | <context context-type="linenumber">24</context> | 5886 | <context context-type="linenumber">153</context> |
6513 | </context-group> | 5887 | </context-group> |
6514 | </trans-unit> | 5888 | </trans-unit> |
6515 | <trans-unit id="079e99cce11c87b142e80fdd14dae98a61012fc4" datatype="html"> | 5889 | <trans-unit id="3622946684246476652" datatype="html"> |
6516 | <source>Muted at <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="createdAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | 5890 | <source>Do you really want to delete this video?</source> |
6517 | <context-group purpose="location"> | 5891 | <context-group purpose="location"> |
6518 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5892 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6519 | <context context-type="linenumber">33</context> | 5893 | <context context-type="linenumber">203</context> |
6520 | </context-group> | 5894 | </context-group> |
6521 | <context-group purpose="location"> | 5895 | <context-group purpose="location"> |
6522 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5896 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
6523 | <context context-type="linenumber">29</context> | 5897 | <context context-type="linenumber">370</context> |
6524 | </context-group> | 5898 | </context-group> |
6525 | <context-group purpose="location"> | 5899 | <context-group purpose="location"> |
6526 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5900 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> |
6527 | <context context-type="linenumber">29</context> | 5901 | <context context-type="linenumber">78</context> |
6528 | </context-group> | 5902 | </context-group> |
5903 | </trans-unit> | ||
5904 | <trans-unit id="7639191791633609999" datatype="html"> | ||
5905 | <source>The live stream will be automatically terminated.</source> | ||
6529 | <context-group purpose="location"> | 5906 | <context-group purpose="location"> |
6530 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5907 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6531 | <context context-type="linenumber">33</context> | 5908 | <context context-type="linenumber">205</context> |
6532 | </context-group> | 5909 | </context-group> |
6533 | </trans-unit> | 5910 | </trans-unit> |
6534 | <trans-unit id="1f689fada9748a830117f5b429a88ef8629082a8" datatype="html"> | 5911 | <trans-unit id="2990849907502572301" datatype="html"> |
6535 | <source>Unmute</source> | 5912 | <source>This video will be duplicated by your instance.</source> |
6536 | <context-group purpose="location"> | 5913 | <context-group purpose="location"> |
6537 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5914 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6538 | <context context-type="linenumber">40</context> | 5915 | <context context-type="linenumber">226</context> |
6539 | </context-group> | 5916 | </context-group> |
5917 | </trans-unit> | ||
5918 | <trans-unit id="1950057220179636309" datatype="html"> | ||
5919 | <source>Save to playlist</source> | ||
6540 | <context-group purpose="location"> | 5920 | <context-group purpose="location"> |
6541 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5921 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6542 | <context context-type="linenumber">36</context> | 5922 | <context context-type="linenumber">264</context> |
6543 | </context-group> | 5923 | </context-group> |
6544 | <context-group purpose="location"> | 5924 | <context-group purpose="location"> |
6545 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5925 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context> |
6546 | <context context-type="linenumber">36</context> | 5926 | <context context-type="linenumber">134</context> |
6547 | </context-group> | 5927 | </context-group> |
5928 | </trans-unit> | ||
5929 | <trans-unit id="3099741642167775297" datatype="html"> | ||
5930 | <source>Download</source> | ||
6548 | <context-group purpose="location"> | 5931 | <context-group purpose="location"> |
6549 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5932 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6550 | <context context-type="linenumber">40</context> | 5933 | <context context-type="linenumber">272</context> |
6551 | </context-group> | 5934 | </context-group> |
6552 | </trans-unit> | 5935 | </trans-unit> |
6553 | <trans-unit id="8cffa679dff97a096d44fca9348eeaa1867d40aa" datatype="html"> | 5936 | <trans-unit id="420763834450076269" datatype="html"> |
6554 | <source>Open instance in a new tab</source> | 5937 | <source>Block</source> |
6555 | <context-group purpose="location"> | 5938 | <context-group purpose="location"> |
6556 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5939 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6557 | <context context-type="linenumber">43</context> | 5940 | <context context-type="linenumber">290</context> |
6558 | </context-group> | 5941 | </context-group> |
5942 | </trans-unit> | ||
5943 | <trans-unit id="4503408361537553733" datatype="html"> | ||
5944 | <source>Mirror</source> | ||
6559 | <context-group purpose="location"> | 5945 | <context-group purpose="location"> |
6560 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 5946 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6561 | <context context-type="linenumber">45</context> | 5947 | <context context-type="linenumber">302</context> |
6562 | </context-group> | 5948 | </context-group> |
5949 | </trans-unit> | ||
5950 | <trans-unit id="7008439939460403347" datatype="html"> | ||
5951 | <source>Report</source> | ||
6563 | <context-group purpose="location"> | 5952 | <context-group purpose="location"> |
6564 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5953 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6565 | <context context-type="linenumber">43</context> | 5954 | <context context-type="linenumber">314</context> |
6566 | </context-group> | 5955 | </context-group> |
6567 | </trans-unit> | 5956 | </trans-unit> |
6568 | <trans-unit id="4cac34ce105daa25964c217fdf0515a0a6ee5db9" datatype="html"> | 5957 | <trans-unit id="4903651219400691248" datatype="html"> |
6569 | <source>No server found matching current filters.</source> | 5958 | <source>Mute account</source> |
6570 | <context-group purpose="location"> | 5959 | <context-group purpose="location"> |
6571 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5960 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> |
6572 | <context context-type="linenumber">56</context> | 5961 | <context context-type="linenumber">322</context> |
6573 | </context-group> | 5962 | </context-group> |
6574 | <context-group purpose="location"> | 5963 | <context-group purpose="location"> |
6575 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5964 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
6576 | <context context-type="linenumber">56</context> | 5965 | <context context-type="linenumber">287</context> |
6577 | </context-group> | 5966 | </context-group> |
6578 | </trans-unit> | 5967 | </trans-unit> |
6579 | <trans-unit id="0ba22bd964baaf0c2f85d6731fccca31dbf06dae" datatype="html"> | 5968 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
6580 | <source>No server found.</source> | 5969 | <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span *ngIf="!interact">"/>Remote subscribe<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="<span *ngIf="interact">"/>Remote interact<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
6581 | <context-group purpose="location"> | 5970 | <context-group purpose="location"> |
6582 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5971 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
6583 | <context context-type="linenumber">57</context> | 5972 | <context context-type="linenumber">11,12</context> |
6584 | </context-group> | 5973 | </context-group> |
5974 | </trans-unit> | ||
5975 | <trans-unit id="01cf713559c39a17cf5c8fbcd33b004a77ce0963" datatype="html"> | ||
5976 | <source> You can subscribe to the channel via any ActivityPub-capable fediverse instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5977 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5978 | "/> For instance with Mastodon or Pleroma you can type the channel URL in the search box and subscribe there. </source> | ||
6585 | <context-group purpose="location"> | 5979 | <context-group purpose="location"> |
6586 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 5980 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
6587 | <context context-type="linenumber">57</context> | 5981 | <context context-type="linenumber">18,20</context> |
6588 | </context-group> | 5982 | </context-group> |
6589 | </trans-unit> | 5983 | </trans-unit> |
6590 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c" datatype="html"> | 5984 | <trans-unit id="c590f63488a5179f20a46930cf5e673f8136673d" datatype="html"> |
6591 | <source>Muted accounts</source> | 5985 | <source> You can interact with this via any ActivityPub-capable fediverse instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
5986 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
5987 | "/> For instance with Mastodon or Pleroma you can type the current URL in the search box and interact with it there. </source> | ||
6592 | <context-group purpose="location"> | 5988 | <context-group purpose="location"> |
6593 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5989 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
6594 | <context context-type="linenumber">3</context> | 5990 | <context context-type="linenumber">27,29</context> |
6595 | </context-group> | 5991 | </context-group> |
5992 | </trans-unit> | ||
5993 | <trans-unit id="d8ae45f6eb0e2d78efd70b4e80e132784aa65cf1" datatype="html"> | ||
5994 | <source>Live information</source> | ||
6596 | <context-group purpose="location"> | 5995 | <context-group purpose="location"> |
6597 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 5996 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
6598 | <context context-type="linenumber">3</context> | 5997 | <context context-type="linenumber">3</context> |
6599 | </context-group> | 5998 | </context-group> |
6600 | </trans-unit> | 5999 | </trans-unit> |
6601 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 6000 | <trans-unit id="fc840cbc744829dee0c0d50e8d32e45beb731c36" datatype="html"> |
6602 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> muted accounts</source> | 6001 | <source>Live RTMP Url</source> |
6603 | <context-group purpose="location"> | 6002 | <context-group purpose="location"> |
6604 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6003 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
6605 | <context context-type="linenumber">10</context> | 6004 | <context context-type="linenumber">10</context> |
6606 | </context-group> | 6005 | </context-group> |
6607 | <context-group purpose="location"> | 6006 | <context-group purpose="location"> |
6608 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6007 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
6609 | <context context-type="linenumber">10</context> | 6008 | <context context-type="linenumber">215</context> |
6610 | </context-group> | 6009 | </context-group> |
6611 | </trans-unit> | 6010 | </trans-unit> |
6612 | <trans-unit id="29881a45dafbe5aa05cd9d0441a4c0c2fb06df92" datatype="html"> | 6011 | <trans-unit id="39d142e6915c4f2d0f9b45e76c176eec6a48c1c1" datatype="html"> |
6613 | <source>Account</source> | 6012 | <source>Live stream key</source> |
6614 | <context-group purpose="location"> | 6013 | <context-group purpose="location"> |
6615 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6014 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
6616 | <context context-type="linenumber">28</context> | 6015 | <context context-type="linenumber">15</context> |
6617 | </context-group> | 6016 | </context-group> |
6618 | <context-group purpose="location"> | 6017 | <context-group purpose="location"> |
6619 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6018 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
6620 | <context context-type="linenumber">28</context> | 6019 | <context context-type="linenumber">220</context> |
6621 | </context-group> | 6020 | </context-group> |
6021 | </trans-unit> | ||
6022 | <trans-unit id="930826dd8818902aaf1300253dbee4717ceb35ee" datatype="html"> | ||
6023 | <source>⚠️ Never share your stream key with anyone.</source> | ||
6622 | <context-group purpose="location"> | 6024 | <context-group purpose="location"> |
6623 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | 6025 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
6624 | <context context-type="linenumber">59</context> | 6026 | <context context-type="linenumber">18</context> |
6027 | </context-group> | ||
6028 | <context-group purpose="location"> | ||
6029 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | ||
6030 | <context context-type="linenumber">223</context> | ||
6625 | </context-group> | 6031 | </context-group> |
6626 | </trans-unit> | 6032 | </trans-unit> |
6627 | <trans-unit id="33c4091a2a2438ba655caa47ede7f7a82f5f0297" datatype="html"> | 6033 | <trans-unit id="5d3bc02dfb6c9b6fdd716f77c487a779ba6d6cc2" datatype="html"> |
6628 | <source>No account found matching current filters.</source> | 6034 | <source>Update live settings</source> |
6629 | <context-group purpose="location"> | 6035 | <context-group purpose="location"> |
6630 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6036 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
6631 | <context context-type="linenumber">63</context> | 6037 | <context context-type="linenumber">30</context> |
6632 | </context-group> | 6038 | </context-group> |
6039 | </trans-unit> | ||
6040 | <trans-unit id="fb8aad312b72bbb7e5a1e2cc0b55fae8962bf0fb" datatype="html"> | ||
6041 | <source> Cancel </source> | ||
6633 | <context-group purpose="location"> | 6042 | <context-group purpose="location"> |
6634 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6043 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> |
6635 | <context context-type="linenumber">63</context> | 6044 | <context context-type="linenumber">19,20</context> |
6636 | </context-group> | 6045 | </context-group> |
6637 | </trans-unit> | 6046 | </trans-unit> |
6638 | <trans-unit id="5d3b267bc054bb6b5743dd3d46ee58cff5141697" datatype="html"> | 6047 | <trans-unit id="248731258067914565" datatype="html"> |
6639 | <source>No account found.</source> | 6048 | <source>Verify account via email</source> |
6640 | <context-group purpose="location"> | 6049 | <context-group purpose="location"> |
6641 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6050 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context> |
6642 | <context context-type="linenumber">64</context> | 6051 | <context context-type="linenumber">17</context> |
6643 | </context-group> | 6052 | </context-group> |
6053 | </trans-unit> | ||
6054 | <trans-unit id="9197112111252826229" datatype="html"> | ||
6055 | <source>Ask to send an email to verify you account</source> | ||
6644 | <context-group purpose="location"> | 6056 | <context-group purpose="location"> |
6645 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | 6057 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context> |
6646 | <context context-type="linenumber">64</context> | 6058 | <context context-type="linenumber">26</context> |
6647 | </context-group> | 6059 | </context-group> |
6648 | </trans-unit> | 6060 | </trans-unit> |
6649 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> | 6061 | <trans-unit id="2049290282534091182" datatype="html"> |
6650 | <source>Reports</source> | 6062 | <source>Moderation</source> |
6651 | <context-group purpose="location"> | 6063 | <context-group purpose="location"> |
6652 | <context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context> | 6064 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> |
6653 | <context context-type="linenumber">3</context> | 6065 | <context context-type="linenumber">28</context> |
6654 | </context-group> | 6066 | </context-group> |
6655 | <context-group purpose="location"> | 6067 | <context-group purpose="location"> |
6656 | <context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context> | 6068 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
6657 | <context context-type="linenumber">3</context> | 6069 | <context context-type="linenumber">47</context> |
6658 | </context-group> | 6070 | </context-group> |
6659 | </trans-unit> | 6071 | </trans-unit> |
6660 | <trans-unit id="4668975178372693951" datatype="html"> | 6072 | <trans-unit id="7815838401315213887" datatype="html"> |
6661 | <source>Discover videos</source> | 6073 | <source>Muted accounts</source> |
6662 | <context-group purpose="location"> | 6074 | <context-group purpose="location"> |
6663 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6075 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> |
6664 | <context context-type="linenumber">23</context> | 6076 | <context context-type="linenumber">31</context> |
6665 | </context-group> | 6077 | </context-group> |
6666 | </trans-unit> | ||
6667 | <trans-unit id="8067135025051844577" datatype="html"> | ||
6668 | <source>Trending videos</source> | ||
6669 | <context-group purpose="location"> | 6078 | <context-group purpose="location"> |
6670 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6079 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> |
6671 | <context context-type="linenumber">32</context> | 6080 | <context context-type="linenumber">86</context> |
6081 | </context-group> | ||
6082 | <context-group purpose="location"> | ||
6083 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | ||
6084 | <context context-type="linenumber">74</context> | ||
6085 | </context-group> | ||
6086 | <context-group purpose="location"> | ||
6087 | <context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context> | ||
6088 | <context context-type="linenumber">98</context> | ||
6672 | </context-group> | 6089 | </context-group> |
6673 | </trans-unit> | 6090 | </trans-unit> |
6674 | <trans-unit id="8177374861384376651" datatype="html"> | 6091 | <trans-unit id="5668793810321242853" datatype="html"> |
6675 | <source>Most liked videos</source> | 6092 | <source>Muted servers</source> |
6676 | <context-group purpose="location"> | 6093 | <context-group purpose="location"> |
6677 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6094 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> |
6678 | <context context-type="linenumber">45</context> | 6095 | <context context-type="linenumber">36</context> |
6679 | </context-group> | 6096 | </context-group> |
6680 | <context-group purpose="location"> | 6097 | <context-group purpose="location"> |
6681 | <context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context> | 6098 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> |
6099 | <context context-type="linenumber">95</context> | ||
6100 | </context-group> | ||
6101 | <context-group purpose="location"> | ||
6102 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | ||
6103 | <context context-type="linenumber">81</context> | ||
6104 | </context-group> | ||
6105 | </trans-unit> | ||
6106 | <trans-unit id="6499699285816188400" datatype="html"> | ||
6107 | <source>Abuse reports</source> | ||
6108 | <context-group purpose="location"> | ||
6109 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> | ||
6682 | <context context-type="linenumber">41</context> | 6110 | <context context-type="linenumber">41</context> |
6683 | </context-group> | 6111 | </context-group> |
6684 | </trans-unit> | 6112 | </trans-unit> |
6685 | <trans-unit id="664221386829541948" datatype="html"> | 6113 | <trans-unit id="4930506384627295710" datatype="html"> |
6686 | <source>Recently added videos</source> | 6114 | <source>Settings</source> |
6687 | <context-group purpose="location"> | 6115 | <context-group purpose="location"> |
6688 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6116 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> |
6689 | <context context-type="linenumber">58</context> | 6117 | <context context-type="linenumber">50</context> |
6690 | </context-group> | 6118 | </context-group> |
6691 | </trans-unit> | 6119 | </trans-unit> |
6692 | <trans-unit id="8681933925782924101" datatype="html"> | 6120 | <trans-unit id="5851560788527570644" datatype="html"> |
6693 | <source>Local videos</source> | 6121 | <source>Notifications</source> |
6694 | <context-group purpose="location"> | 6122 | <context-group purpose="location"> |
6695 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6123 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> |
6696 | <context context-type="linenumber">84</context> | 6124 | <context context-type="linenumber">55</context> |
6697 | </context-group> | 6125 | </context-group> |
6698 | <context-group purpose="location"> | 6126 | <context-group purpose="location"> |
6699 | <context context-type="sourcefile">src/app/+videos/video-list/video-local.component.ts</context> | 6127 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> |
6700 | <context context-type="linenumber">36</context> | 6128 | <context context-type="linenumber">109</context> |
6701 | </context-group> | 6129 | </context-group> |
6702 | </trans-unit> | 6130 | </trans-unit> |
6703 | <trans-unit id="8212906256415538361" datatype="html"> | 6131 | <trans-unit id="6658000829978978023" datatype="html"> |
6704 | <source>Upload a video</source> | 6132 | <source>Applications</source> |
6705 | <context-group purpose="location"> | 6133 | <context-group purpose="location"> |
6706 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6134 | <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context> |
6707 | <context context-type="linenumber">97</context> | 6135 | <context context-type="linenumber">60</context> |
6708 | </context-group> | 6136 | </context-group> |
6709 | </trans-unit> | 6137 | </trans-unit> |
6710 | <trans-unit id="7590784934397800835" datatype="html"> | 6138 | <trans-unit id="1795705931707209785" datatype="html"> |
6711 | <source>Edit a video</source> | 6139 | <source>Add to watch later</source> |
6712 | <context-group purpose="location"> | 6140 | <context-group purpose="location"> |
6713 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> | 6141 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context> |
6714 | <context context-type="linenumber">106</context> | 6142 | <context context-type="linenumber">29</context> |
6143 | </context-group> | ||
6144 | </trans-unit> | ||
6145 | <trans-unit id="8498940878158860248" datatype="html"> | ||
6146 | <source>Remove from watch later</source> | ||
6147 | <context-group purpose="location"> | ||
6148 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context> | ||
6149 | <context context-type="linenumber">30</context> | ||
6150 | </context-group> | ||
6151 | </trans-unit> | ||
6152 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | ||
6153 | <source>LIVE</source> | ||
6154 | <context-group purpose="location"> | ||
6155 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context> | ||
6156 | <context context-type="linenumber">31</context> | ||
6157 | </context-group> | ||
6158 | <context-group purpose="location"> | ||
6159 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
6160 | <context context-type="linenumber">846</context> | ||
6161 | </context-group> | ||
6162 | </trans-unit> | ||
6163 | <trans-unit id="a2adc8b3bb63e13ff7adf65469f356b692bd294b" datatype="html"> | ||
6164 | <source>LIVE ENDED</source> | ||
6165 | <context-group purpose="location"> | ||
6166 | <context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context> | ||
6167 | <context context-type="linenumber">32</context> | ||
6715 | </context-group> | 6168 | </context-group> |
6716 | </trans-unit> | 6169 | </trans-unit> |
6717 | <trans-unit id="6746743143272021955" datatype="html"> | 6170 | <trans-unit id="6746743143272021955" datatype="html"> |
@@ -6838,117 +6291,335 @@ The link will expire within 1 hour.</source> | |||
6838 | <context context-type="linenumber">179</context> | 6291 | <context context-type="linenumber">179</context> |
6839 | </context-group> | 6292 | </context-group> |
6840 | </trans-unit> | 6293 | </trans-unit> |
6841 | <trans-unit id="5179099584732142331" datatype="html"> | 6294 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> |
6842 | <source>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.</source> | 6295 | <source> Verify account email confirmation </source> |
6843 | <context-group purpose="location"> | 6296 | <context-group purpose="location"> |
6844 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 6297 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context> |
6845 | <context context-type="linenumber">22</context> | 6298 | <context context-type="linenumber">3,4</context> |
6846 | </context-group> | 6299 | </context-group> |
6847 | </trans-unit> | 6300 | </trans-unit> |
6848 | <trans-unit id="6897292459203320054" datatype="html"> | 6301 | <trans-unit id="b734a13448d714b0f68f49353607364ac3571c12" datatype="html"> |
6849 | <source>Type your username to confirm</source> | 6302 | <source> Email updated. </source> |
6850 | <context-group purpose="location"> | 6303 | <context-group purpose="location"> |
6851 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 6304 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context> |
6305 | <context context-type="linenumber">10,11</context> | ||
6306 | </context-group> | ||
6307 | </trans-unit> | ||
6308 | <trans-unit id="61fd1cffcb763cbfd5829071723cf9b647174bd9" datatype="html"> | ||
6309 | <source>An error occurred.</source> | ||
6310 | <context-group purpose="location"> | ||
6311 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context> | ||
6312 | <context context-type="linenumber">14</context> | ||
6313 | </context-group> | ||
6314 | </trans-unit> | ||
6315 | <trans-unit id="2687679787442328897" datatype="html"> | ||
6316 | <source>An email with verification link will be sent to <x id="PH" equiv-text="email"/>.</source> | ||
6317 | <context-group purpose="location"> | ||
6318 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context> | ||
6319 | <context context-type="linenumber">45</context> | ||
6320 | </context-group> | ||
6321 | </trans-unit> | ||
6322 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | ||
6323 | <source> Request email for account verification </source> | ||
6324 | <context-group purpose="location"> | ||
6325 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context> | ||
6326 | <context context-type="linenumber">3,4</context> | ||
6327 | </context-group> | ||
6328 | </trans-unit> | ||
6329 | <trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html"> | ||
6330 | <source>Send verification email</source> | ||
6331 | <context-group purpose="location"> | ||
6332 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context> | ||
6333 | <context context-type="linenumber">17</context> | ||
6334 | </context-group> | ||
6335 | </trans-unit> | ||
6336 | <trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html"> | ||
6337 | <source>This instance does not require email verification.</source> | ||
6338 | <context-group purpose="location"> | ||
6339 | <context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context> | ||
6340 | <context context-type="linenumber">20</context> | ||
6341 | </context-group> | ||
6342 | </trans-unit> | ||
6343 | <trans-unit id="658727060940996385" datatype="html"> | ||
6344 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | ||
6345 | <context-group purpose="location"> | ||
6346 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | ||
6347 | <context context-type="linenumber">41</context> | ||
6348 | </context-group> | ||
6349 | </trans-unit> | ||
6350 | <trans-unit id="270726559962362501" datatype="html"> | ||
6351 | <source>Renew token</source> | ||
6352 | <context-group purpose="location"> | ||
6353 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | ||
6354 | <context context-type="linenumber">42</context> | ||
6355 | </context-group> | ||
6356 | </trans-unit> | ||
6357 | <trans-unit id="3029923402309610616" datatype="html"> | ||
6358 | <source>Token renewed. Update your client configuration accordingly.</source> | ||
6359 | <context-group purpose="location"> | ||
6360 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | ||
6361 | <context context-type="linenumber">49</context> | ||
6362 | </context-group> | ||
6363 | </trans-unit> | ||
6364 | <trans-unit id="f1abafaeb40ce52355ddcc24686e3cd17b64e08a" datatype="html"> | ||
6365 | <source>Applications</source> | ||
6366 | <context-group purpose="location"> | ||
6367 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
6368 | <context context-type="linenumber">3</context> | ||
6369 | </context-group> | ||
6370 | </trans-unit> | ||
6371 | <trans-unit id="a9dff163e112fd17d43b049f58d1f6a0ee60aab0" datatype="html"> | ||
6372 | <source>SUBSCRIPTION FEED</source> | ||
6373 | <context-group purpose="location"> | ||
6374 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
6375 | <context context-type="linenumber">8</context> | ||
6376 | </context-group> | ||
6377 | </trans-unit> | ||
6378 | <trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> | ||
6379 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source> | ||
6380 | <context-group purpose="location"> | ||
6381 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
6382 | <context context-type="linenumber">10,12</context> | ||
6383 | </context-group> | ||
6384 | </trans-unit> | ||
6385 | <trans-unit id="70b989779eb53e6ff14d810336677dbc3bde4202" datatype="html"> | ||
6386 | <source>Feed URL</source> | ||
6387 | <context-group purpose="location"> | ||
6388 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
6389 | <context context-type="linenumber">18</context> | ||
6390 | </context-group> | ||
6391 | </trans-unit> | ||
6392 | <trans-unit id="87752e8ea0b8d9cc97d85d89a74b828c031242d2" datatype="html"> | ||
6393 | <source>Feed Token</source> | ||
6394 | <context-group purpose="location"> | ||
6395 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | ||
6852 | <context context-type="linenumber">23</context> | 6396 | <context context-type="linenumber">23</context> |
6853 | </context-group> | 6397 | </context-group> |
6854 | </trans-unit> | 6398 | </trans-unit> |
6855 | <trans-unit id="3122895472333547524" datatype="html"> | 6399 | <trans-unit id="7a2fe0ebf8d14b0c59eae0b7a48ce23425d45eac" datatype="html"> |
6856 | <source>Delete your account</source> | 6400 | <source>Renew token</source> |
6857 | <context-group purpose="location"> | 6401 | <context-group purpose="location"> |
6858 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 6402 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
6859 | <context context-type="linenumber">25</context> | 6403 | <context context-type="linenumber">33</context> |
6860 | </context-group> | 6404 | </context-group> |
6861 | </trans-unit> | 6405 | </trans-unit> |
6862 | <trans-unit id="2520605306994744004" datatype="html"> | 6406 | <trans-unit id="3525866160632851851" datatype="html"> |
6863 | <source>Delete my account</source> | 6407 | <source>Avatar changed.</source> |
6864 | <context-group purpose="location"> | 6408 | <context-group purpose="location"> |
6865 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 6409 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context> |
6410 | <context context-type="linenumber">42</context> | ||
6411 | </context-group> | ||
6412 | <context-group purpose="location"> | ||
6413 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context> | ||
6414 | <context context-type="linenumber">105</context> | ||
6415 | </context-group> | ||
6416 | </trans-unit> | ||
6417 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> | ||
6418 | <source>PROFILE SETTINGS</source> | ||
6419 | <context-group purpose="location"> | ||
6420 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
6421 | <context context-type="linenumber">12</context> | ||
6422 | </context-group> | ||
6423 | </trans-unit> | ||
6424 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | ||
6425 | <source>VIDEO SETTINGS</source> | ||
6426 | <context-group purpose="location"> | ||
6427 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
6866 | <context context-type="linenumber">26</context> | 6428 | <context context-type="linenumber">26</context> |
6867 | </context-group> | 6429 | </context-group> |
6868 | </trans-unit> | 6430 | </trans-unit> |
6869 | <trans-unit id="3902597758945766483" datatype="html"> | 6431 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
6870 | <source>Your account is deleted.</source> | 6432 | <source>NOTIFICATIONS</source> |
6871 | <context-group purpose="location"> | 6433 | <context-group purpose="location"> |
6872 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 6434 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> |
6873 | <context context-type="linenumber">32</context> | 6435 | <context context-type="linenumber">37</context> |
6874 | </context-group> | 6436 | </context-group> |
6875 | </trans-unit> | 6437 | </trans-unit> |
6876 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> | 6438 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
6877 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> | 6439 | <source>INTERFACE</source> |
6878 | <context-group purpose="location"> | 6440 | <context-group purpose="location"> |
6879 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> | 6441 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> |
6880 | <context context-type="linenumber">2</context> | 6442 | <context context-type="linenumber">47</context> |
6881 | </context-group> | 6443 | </context-group> |
6882 | </trans-unit> | 6444 | </trans-unit> |
6883 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45" datatype="html"> | 6445 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
6884 | <source>Delete your account</source> | 6446 | <source>EMAIL</source> |
6885 | <context-group purpose="location"> | 6447 | <context-group purpose="location"> |
6886 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> | 6448 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> |
6887 | <context context-type="linenumber">4</context> | 6449 | <context context-type="linenumber">67</context> |
6888 | </context-group> | 6450 | </context-group> |
6889 | </trans-unit> | 6451 | </trans-unit> |
6890 | <trans-unit id="6012072687166259654" datatype="html"> | 6452 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
6891 | <source>Please check your emails to verify your new email.</source> | 6453 | <source>DANGER ZONE</source> |
6892 | <context-group purpose="location"> | 6454 | <context-group purpose="location"> |
6893 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | 6455 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> |
6456 | <context context-type="linenumber">77</context> | ||
6457 | </context-group> | ||
6458 | <context-group purpose="location"> | ||
6459 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> | ||
6460 | <context context-type="linenumber">197</context> | ||
6461 | </context-group> | ||
6462 | <context-group purpose="location"> | ||
6463 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> | ||
6464 | <context context-type="linenumber">197</context> | ||
6465 | </context-group> | ||
6466 | </trans-unit> | ||
6467 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | ||
6468 | <source>PASSWORD</source> | ||
6469 | <context-group purpose="location"> | ||
6470 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context> | ||
6471 | <context context-type="linenumber">57</context> | ||
6472 | </context-group> | ||
6473 | </trans-unit> | ||
6474 | <trans-unit id="5708680277917691451" datatype="html"> | ||
6475 | <source><x id="PH" equiv-text="this.usersToBan.length"/> users banned.</source> | ||
6476 | <context-group purpose="location"> | ||
6477 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | ||
6894 | <context context-type="linenumber">53</context> | 6478 | <context context-type="linenumber">53</context> |
6895 | </context-group> | 6479 | </context-group> |
6896 | </trans-unit> | 6480 | </trans-unit> |
6897 | <trans-unit id="6585766371605707311" datatype="html"> | 6481 | <trans-unit id="2448281151916042849" datatype="html"> |
6898 | <source>Email updated.</source> | 6482 | <source>User <x id="PH" equiv-text="this.usersToBan.username"/> banned.</source> |
6899 | <context-group purpose="location"> | 6483 | <context-group purpose="location"> |
6900 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | 6484 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
6901 | <context context-type="linenumber">55</context> | 6485 | <context context-type="linenumber">54</context> |
6902 | </context-group> | 6486 | </context-group> |
6903 | </trans-unit> | 6487 | </trans-unit> |
6904 | <trans-unit id="dbcc539bd3ca0b962b87ea26855ca9d5d3c5cdf1" datatype="html"> | 6488 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
6905 | <source> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 6489 | <source>Ban</source> |
6906 | <context-group purpose="location"> | 6490 | <context-group purpose="location"> |
6907 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6491 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
6908 | <context context-type="linenumber">5</context> | 6492 | <context context-type="linenumber">3</context> |
6909 | </context-group> | 6493 | </context-group> |
6910 | </trans-unit> | 6494 | </trans-unit> |
6911 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05" datatype="html"> | 6495 | <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125" datatype="html"> |
6912 | <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span> "/> is awaiting email verification | 6496 | <source>Reason...</source> |
6913 | </source> | ||
6914 | <context-group purpose="location"> | 6497 | <context-group purpose="location"> |
6915 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6498 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
6916 | <context context-type="linenumber">9,10</context> | 6499 | <context context-type="linenumber">12</context> |
6917 | </context-group> | 6500 | </context-group> |
6918 | </trans-unit> | 6501 | </trans-unit> |
6919 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219" datatype="html"> | 6502 | <trans-unit id="f21428bd564d1cacdbc737f87a8def2e2ad42251" datatype="html"> |
6920 | <source>New email</source> | 6503 | <source> A banned user will no longer be able to login. </source> |
6921 | <context-group purpose="location"> | 6504 | <context-group purpose="location"> |
6922 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6505 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
6923 | <context context-type="linenumber">15</context> | 6506 | <context context-type="linenumber">21,22</context> |
6924 | </context-group> | 6507 | </context-group> |
6925 | </trans-unit> | 6508 | </trans-unit> |
6926 | <trans-unit id="150bb2b8ea3b2745294f0cfe8b37c83dbca4b463" datatype="html"> | 6509 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020" datatype="html"> |
6927 | <source>Your new email</source> | 6510 | <source>Ban this user</source> |
6928 | <context-group purpose="location"> | 6511 | <context-group purpose="location"> |
6929 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6512 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
6930 | <context context-type="linenumber">17</context> | 6513 | <context context-type="linenumber">31</context> |
6931 | </context-group> | 6514 | </context-group> |
6932 | </trans-unit> | 6515 | </trans-unit> |
6933 | <trans-unit id="3a83d433c5d27e1d06ece0475fac8ba409b6c9ac" datatype="html"> | 6516 | <trans-unit id="4247400351982331798" datatype="html"> |
6934 | <source>Your current password</source> | 6517 | <source>Account settings</source> |
6935 | <context-group purpose="location"> | 6518 | <context-group purpose="location"> |
6936 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6519 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> |
6937 | <context context-type="linenumber">26</context> | 6520 | <context context-type="linenumber">29</context> |
6938 | </context-group> | 6521 | </context-group> |
6939 | </trans-unit> | 6522 | </trans-unit> |
6940 | <trans-unit id="5b5b91438db5731debea388908f788bab8d3d404" datatype="html"> | 6523 | <trans-unit id="1991904494976135035" datatype="html"> |
6941 | <source>Your password</source> | 6524 | <source>My abuse reports</source> |
6942 | <context-group purpose="location"> | 6525 | <context-group purpose="location"> |
6943 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6526 | <context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context> |
6944 | <context context-type="linenumber">28</context> | 6527 | <context context-type="linenumber">118</context> |
6945 | </context-group> | 6528 | </context-group> |
6946 | </trans-unit> | 6529 | </trans-unit> |
6947 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c" datatype="html"> | 6530 | <trans-unit id="4967231969832964676" datatype="html"> |
6948 | <source>Change email</source> | 6531 | <source>Profile updated.</source> |
6949 | <context-group purpose="location"> | 6532 | <context-group purpose="location"> |
6950 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6533 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context> |
6951 | <context context-type="linenumber">36</context> | 6534 | <context context-type="linenumber">51</context> |
6535 | </context-group> | ||
6536 | </trans-unit> | ||
6537 | <trans-unit id="1056145626640340519" datatype="html"> | ||
6538 | <source>Video added in <x id="PH" equiv-text="playlist.displayName"/> at timestamps <x id="PH_1" equiv-text="this.formatTimestamp(element)"/></source> | ||
6539 | <context-group purpose="location"> | ||
6540 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
6541 | <context context-type="linenumber">377</context> | ||
6542 | </context-group> | ||
6543 | </trans-unit> | ||
6544 | <trans-unit id="7754186870520534716" datatype="html"> | ||
6545 | <source>Video added in <x id="PH" equiv-text="playlist.displayName"/></source> | ||
6546 | <context-group purpose="location"> | ||
6547 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
6548 | <context context-type="linenumber">378</context> | ||
6549 | </context-group> | ||
6550 | </trans-unit> | ||
6551 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566" datatype="html"> | ||
6552 | <source>Save to</source> | ||
6553 | <context-group purpose="location"> | ||
6554 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
6555 | <context context-type="linenumber">4</context> | ||
6556 | </context-group> | ||
6557 | </trans-unit> | ||
6558 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> | ||
6559 | <source>Search playlists</source> | ||
6560 | <context-group purpose="location"> | ||
6561 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
6562 | <context context-type="linenumber">9</context> | ||
6563 | </context-group> | ||
6564 | </trans-unit> | ||
6565 | <trans-unit id="19fc45e7e0cab63a8c4422ea7158bf5c6228cee4" datatype="html"> | ||
6566 | <source>Create a private playlist</source> | ||
6567 | <context-group purpose="location"> | ||
6568 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | ||
6569 | <context context-type="linenumber">66</context> | ||
6570 | </context-group> | ||
6571 | </trans-unit> | ||
6572 | <trans-unit id="4762794934098378428" datatype="html"> | ||
6573 | <source>Video blocked.</source> | ||
6574 | <context-group purpose="location"> | ||
6575 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> | ||
6576 | <context context-type="linenumber">60</context> | ||
6577 | </context-group> | ||
6578 | <context-group purpose="location"> | ||
6579 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
6580 | <context context-type="linenumber">340</context> | ||
6581 | </context-group> | ||
6582 | </trans-unit> | ||
6583 | <trans-unit id="dc3bdad5421d0ee7ddd76ae62b699d72dd9f61b4" datatype="html"> | ||
6584 | <source>Please describe the reason...</source> | ||
6585 | <context-group purpose="location"> | ||
6586 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
6587 | <context context-type="linenumber">13</context> | ||
6588 | </context-group> | ||
6589 | </trans-unit> | ||
6590 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> | ||
6591 | <source>Block video "<x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</source> | ||
6592 | <context-group purpose="location"> | ||
6593 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
6594 | <context context-type="linenumber">3</context> | ||
6595 | </context-group> | ||
6596 | </trans-unit> | ||
6597 | <trans-unit id="cc6208fd0ded0d4a57f4c0a97c2843dc454db39a" datatype="html"> | ||
6598 | <source>Block live "<x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</source> | ||
6599 | <context-group purpose="location"> | ||
6600 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
6601 | <context context-type="linenumber">4</context> | ||
6602 | </context-group> | ||
6603 | </trans-unit> | ||
6604 | <trans-unit id="0cd0f27936731dabfd8d89277b781d5dd664bc89" datatype="html"> | ||
6605 | <source>Unfederate the video</source> | ||
6606 | <context-group purpose="location"> | ||
6607 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
6608 | <context context-type="linenumber">24</context> | ||
6609 | </context-group> | ||
6610 | </trans-unit> | ||
6611 | <trans-unit id="297603f796b0d287ac02b80d5aca6156c91a8fea" datatype="html"> | ||
6612 | <source>This will ask remote instances to delete it</source> | ||
6613 | <context-group purpose="location"> | ||
6614 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
6615 | <context context-type="linenumber">27</context> | ||
6616 | </context-group> | ||
6617 | </trans-unit> | ||
6618 | <trans-unit id="a5065c0f26fbd00b6f6ac0cf948535a44fffbd45" datatype="html"> | ||
6619 | <source> Blocking this live will automatically terminate the live stream. </source> | ||
6620 | <context-group purpose="location"> | ||
6621 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | ||
6622 | <context context-type="linenumber">33,34</context> | ||
6952 | </context-group> | 6623 | </context-group> |
6953 | </trans-unit> | 6624 | </trans-unit> |
6954 | <trans-unit id="3868123820758341861" datatype="html"> | 6625 | <trans-unit id="3868123820758341861" datatype="html"> |
@@ -7200,88 +6871,202 @@ The link will expire within 1 hour.</source> | |||
7200 | <context context-type="linenumber">28</context> | 6871 | <context context-type="linenumber">28</context> |
7201 | </context-group> | 6872 | </context-group> |
7202 | </trans-unit> | 6873 | </trans-unit> |
7203 | <trans-unit id="1056145626640340519" datatype="html"> | 6874 | <trans-unit id="1472171759957681533" datatype="html"> |
7204 | <source>Video added in <x id="PH" equiv-text="playlist.displayName"/> at timestamps <x id="PH_1" equiv-text="this.formatTimestamp(element)"/></source> | 6875 | <source>Video reported.</source> |
7205 | <context-group purpose="location"> | 6876 | <context-group purpose="location"> |
7206 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | 6877 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context> |
7207 | <context context-type="linenumber">377</context> | 6878 | <context context-type="linenumber">110</context> |
7208 | </context-group> | 6879 | </context-group> |
7209 | </trans-unit> | 6880 | </trans-unit> |
7210 | <trans-unit id="7754186870520534716" datatype="html"> | 6881 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> |
7211 | <source>Video added in <x id="PH" equiv-text="playlist.displayName"/></source> | 6882 | <source>Report video "<x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</source> |
7212 | <context-group purpose="location"> | 6883 | <context-group purpose="location"> |
7213 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | 6884 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> |
7214 | <context context-type="linenumber">378</context> | 6885 | <context context-type="linenumber">3</context> |
7215 | </context-group> | 6886 | </context-group> |
7216 | </trans-unit> | 6887 | </trans-unit> |
7217 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566" datatype="html"> | 6888 | <trans-unit id="020d5da7c3f4726e3623587a05a11f00e1d40409" datatype="html"> |
7218 | <source>Save to</source> | 6889 | <source> Your report will be sent to moderators of <x id="INTERPOLATION" equiv-text="rators of {{ curr"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="isRemote()">"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too<x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/>. </source> |
7219 | <context-group purpose="location"> | 6890 | <context-group purpose="location"> |
7220 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | 6891 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> |
7221 | <context context-type="linenumber">4</context> | 6892 | <context context-type="linenumber">74,76</context> |
7222 | </context-group> | 6893 | </context-group> |
7223 | </trans-unit> | 6894 | </trans-unit> |
7224 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> | 6895 | <trans-unit id="1006562256968398209" datatype="html"> |
7225 | <source>Search playlists</source> | 6896 | <source>video</source> |
7226 | <context-group purpose="location"> | 6897 | <context-group purpose="location"> |
7227 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | 6898 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
7228 | <context context-type="linenumber">9</context> | 6899 | <context context-type="linenumber">48</context> |
7229 | </context-group> | 6900 | </context-group> |
7230 | </trans-unit> | 6901 | </trans-unit> |
7231 | <trans-unit id="19fc45e7e0cab63a8c4422ea7158bf5c6228cee4" datatype="html"> | 6902 | <trans-unit id="5235042777215655908" datatype="html"> |
7232 | <source>Create a private playlist</source> | 6903 | <source>subtitles</source> |
7233 | <context-group purpose="location"> | 6904 | <context-group purpose="location"> |
7234 | <context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context> | 6905 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
7235 | <context context-type="linenumber">66</context> | 6906 | <context context-type="linenumber">49</context> |
7236 | </context-group> | 6907 | </context-group> |
7237 | </trans-unit> | 6908 | </trans-unit> |
7238 | <trans-unit id="12646164819555880" datatype="html"> | 6909 | <trans-unit id="346270517625845962" datatype="html"> |
7239 | <source>Videos from your subscriptions</source> | 6910 | <source>Encoder</source> |
7240 | <context-group purpose="location"> | 6911 | <context-group purpose="location"> |
7241 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> | 6912 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
7242 | <context context-type="linenumber">41</context> | 6913 | <context context-type="linenumber">145</context> |
7243 | </context-group> | 6914 | </context-group> |
7244 | </trans-unit> | 6915 | </trans-unit> |
7245 | <trans-unit id="642534594356440342" datatype="html"> | 6916 | <trans-unit id="2331557444464201331" datatype="html"> |
7246 | <source>Feed</source> | 6917 | <source>Format name</source> |
7247 | <context-group purpose="location"> | 6918 | <context-group purpose="location"> |
7248 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> | 6919 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
7249 | <context context-type="linenumber">68</context> | 6920 | <context context-type="linenumber">146</context> |
7250 | </context-group> | 6921 | </context-group> |
7251 | </trans-unit> | 6922 | </trans-unit> |
7252 | <trans-unit id="3392372077636861449" datatype="html"> | 6923 | <trans-unit id="45739481977493163" datatype="html"> |
7253 | <source>Feed URL copied</source> | 6924 | <source>Size</source> |
7254 | <context-group purpose="location"> | 6925 | <context-group purpose="location"> |
7255 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> | 6926 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
6927 | <context context-type="linenumber">147</context> | ||
6928 | </context-group> | ||
6929 | </trans-unit> | ||
6930 | <trans-unit id="7742520815129539114" datatype="html"> | ||
6931 | <source>Bitrate</source> | ||
6932 | <context-group purpose="location"> | ||
6933 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6934 | <context context-type="linenumber">149</context> | ||
6935 | </context-group> | ||
6936 | <context-group purpose="location"> | ||
6937 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6938 | <context context-type="linenumber">172</context> | ||
6939 | </context-group> | ||
6940 | </trans-unit> | ||
6941 | <trans-unit id="4094960161662677662" datatype="html"> | ||
6942 | <source>Codec</source> | ||
6943 | <context-group purpose="location"> | ||
6944 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6945 | <context context-type="linenumber">169</context> | ||
6946 | </context-group> | ||
6947 | </trans-unit> | ||
6948 | <trans-unit id="4915431133669985304" datatype="html"> | ||
6949 | <source>Profile</source> | ||
6950 | <context-group purpose="location"> | ||
6951 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6952 | <context context-type="linenumber">170</context> | ||
6953 | </context-group> | ||
6954 | </trans-unit> | ||
6955 | <trans-unit id="1963136290621768454" datatype="html"> | ||
6956 | <source>Resolution</source> | ||
6957 | <context-group purpose="location"> | ||
6958 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6959 | <context context-type="linenumber">179</context> | ||
6960 | </context-group> | ||
6961 | </trans-unit> | ||
6962 | <trans-unit id="7814358426066520520" datatype="html"> | ||
6963 | <source>Aspect ratio</source> | ||
6964 | <context-group purpose="location"> | ||
6965 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6966 | <context context-type="linenumber">180</context> | ||
6967 | </context-group> | ||
6968 | </trans-unit> | ||
6969 | <trans-unit id="44862519224794374" datatype="html"> | ||
6970 | <source>Average frame rate</source> | ||
6971 | <context-group purpose="location"> | ||
6972 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6973 | <context context-type="linenumber">181</context> | ||
6974 | </context-group> | ||
6975 | </trans-unit> | ||
6976 | <trans-unit id="5053683525387462246" datatype="html"> | ||
6977 | <source>Pixel format</source> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6980 | <context context-type="linenumber">182</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit> | ||
6983 | <trans-unit id="7858676566953242358" datatype="html"> | ||
6984 | <source>Sample rate</source> | ||
6985 | <context-group purpose="location"> | ||
6986 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6987 | <context context-type="linenumber">186</context> | ||
6988 | </context-group> | ||
6989 | </trans-unit> | ||
6990 | <trans-unit id="5403856660543890284" datatype="html"> | ||
6991 | <source>Channel Layout</source> | ||
6992 | <context-group purpose="location"> | ||
6993 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
6994 | <context context-type="linenumber">187</context> | ||
6995 | </context-group> | ||
6996 | </trans-unit> | ||
6997 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | ||
6998 | <source>Download</source> | ||
6999 | <context-group purpose="location"> | ||
7000 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7001 | <context context-type="linenumber">4</context> | ||
7002 | </context-group> | ||
7003 | <context-group purpose="location"> | ||
7004 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7256 | <context context-type="linenumber">104</context> | 7005 | <context context-type="linenumber">104</context> |
7257 | </context-group> | 7006 | </context-group> |
7258 | </trans-unit> | 7007 | </trans-unit> |
7259 | <trans-unit id="3432004930068835151" datatype="html"> | 7008 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> |
7260 | <source>Trending for the last 24 hours</source> | 7009 | <source>subtitles</source> |
7261 | <context-group purpose="location"> | 7010 | <context-group purpose="location"> |
7262 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> | 7011 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
7263 | <context context-type="linenumber">46</context> | 7012 | <context context-type="linenumber">11</context> |
7264 | </context-group> | 7013 | </context-group> |
7265 | </trans-unit> | 7014 | </trans-unit> |
7266 | <trans-unit id="6716379522893509803" datatype="html"> | 7015 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> |
7267 | <source>Trending videos are those totalizing the greatest number of views during the last 24 hours</source> | 7016 | <source>video</source> |
7268 | <context-group purpose="location"> | 7017 | <context-group purpose="location"> |
7269 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> | 7018 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
7270 | <context context-type="linenumber">47</context> | 7019 | <context context-type="linenumber">12</context> |
7271 | </context-group> | 7020 | </context-group> |
7272 | </trans-unit> | 7021 | </trans-unit> |
7273 | <trans-unit id="2494835943815843060" datatype="html"> | 7022 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> |
7274 | <source>Videos that have the most likes.</source> | 7023 | <source>Format</source> |
7275 | <context-group purpose="location"> | 7024 | <context-group purpose="location"> |
7276 | <context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context> | 7025 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
7277 | <context context-type="linenumber">42</context> | 7026 | <context context-type="linenumber">45</context> |
7278 | </context-group> | 7027 | </context-group> |
7279 | </trans-unit> | 7028 | </trans-unit> |
7280 | <trans-unit id="2431286785954354122" datatype="html"> | 7029 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> |
7281 | <source>Recently added</source> | 7030 | <source>Video stream</source> |
7282 | <context-group purpose="location"> | 7031 | <context-group purpose="location"> |
7283 | <context context-type="sourcefile">src/app/+videos/video-list/video-recently-added.component.ts</context> | 7032 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
7284 | <context context-type="linenumber">36</context> | 7033 | <context context-type="linenumber">57</context> |
7034 | </context-group> | ||
7035 | </trans-unit> | ||
7036 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> | ||
7037 | <source>Audio stream</source> | ||
7038 | <context-group purpose="location"> | ||
7039 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7040 | <context context-type="linenumber">69</context> | ||
7041 | </context-group> | ||
7042 | </trans-unit> | ||
7043 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> | ||
7044 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/></source> | ||
7045 | <context-group purpose="location"> | ||
7046 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7047 | <context context-type="linenumber">49</context> | ||
7048 | </context-group> | ||
7049 | <context-group purpose="location"> | ||
7050 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7051 | <context context-type="linenumber">61</context> | ||
7052 | </context-group> | ||
7053 | <context-group purpose="location"> | ||
7054 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7055 | <context context-type="linenumber">73</context> | ||
7056 | </context-group> | ||
7057 | </trans-unit> | ||
7058 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c" datatype="html"> | ||
7059 | <source>Direct download</source> | ||
7060 | <context-group purpose="location"> | ||
7061 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7062 | <context context-type="linenumber">87</context> | ||
7063 | </context-group> | ||
7064 | </trans-unit> | ||
7065 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d" datatype="html"> | ||
7066 | <source>Torrent (.torrent file)</source> | ||
7067 | <context-group purpose="location"> | ||
7068 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
7069 | <context context-type="linenumber">92</context> | ||
7285 | </context-group> | 7070 | </context-group> |
7286 | </trans-unit> | 7071 | </trans-unit> |
7287 | <trans-unit id="4498682414491138092" datatype="html"> | 7072 | <trans-unit id="4498682414491138092" datatype="html"> |
@@ -7326,99 +7111,304 @@ The link will expire within 1 hour.</source> | |||
7326 | <context context-type="linenumber">198</context> | 7111 | <context context-type="linenumber">198</context> |
7327 | </context-group> | 7112 | </context-group> |
7328 | </trans-unit> | 7113 | </trans-unit> |
7329 | <trans-unit id="4762794934098378428" datatype="html"> | 7114 | <trans-unit id="6159571046971090595" datatype="html"> |
7330 | <source>Video blocked.</source> | 7115 | <source>Password updated.</source> |
7331 | <context-group purpose="location"> | 7116 | <context-group purpose="location"> |
7332 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> | 7117 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> |
7333 | <context context-type="linenumber">60</context> | 7118 | <context context-type="linenumber">48</context> |
7334 | </context-group> | 7119 | </context-group> |
7120 | </trans-unit> | ||
7121 | <trans-unit id="853586874765134886" datatype="html"> | ||
7122 | <source>You current password is invalid.</source> | ||
7335 | <context-group purpose="location"> | 7123 | <context-group purpose="location"> |
7336 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7124 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> |
7337 | <context context-type="linenumber">340</context> | 7125 | <context context-type="linenumber">56</context> |
7126 | </context-group> | ||
7127 | <context-group purpose="location"> | ||
7128 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | ||
7129 | <context context-type="linenumber">61</context> | ||
7338 | </context-group> | 7130 | </context-group> |
7339 | </trans-unit> | 7131 | </trans-unit> |
7340 | <trans-unit id="dc3bdad5421d0ee7ddd76ae62b699d72dd9f61b4" datatype="html"> | 7132 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> |
7341 | <source>Please describe the reason...</source> | 7133 | <source>Change password</source> |
7342 | <context-group purpose="location"> | 7134 | <context-group purpose="location"> |
7343 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7135 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> |
7344 | <context context-type="linenumber">13</context> | 7136 | <context context-type="linenumber">5</context> |
7137 | </context-group> | ||
7138 | <context-group purpose="location"> | ||
7139 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | ||
7140 | <context context-type="linenumber">30</context> | ||
7345 | </context-group> | 7141 | </context-group> |
7346 | </trans-unit> | 7142 | </trans-unit> |
7347 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> | 7143 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b" datatype="html"> |
7348 | <source>Block video "<x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</source> | 7144 | <source>Current password</source> |
7349 | <context-group purpose="location"> | 7145 | <context-group purpose="location"> |
7350 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7146 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> |
7147 | <context context-type="linenumber">7</context> | ||
7148 | </context-group> | ||
7149 | </trans-unit> | ||
7150 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229" datatype="html"> | ||
7151 | <source>New password</source> | ||
7152 | <context-group purpose="location"> | ||
7153 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | ||
7154 | <context context-type="linenumber">15</context> | ||
7155 | </context-group> | ||
7156 | </trans-unit> | ||
7157 | <trans-unit id="ede41f01c781b168a783cfcefc6fb67d48780d9b" datatype="html"> | ||
7158 | <source>Confirm new password</source> | ||
7159 | <context-group purpose="location"> | ||
7160 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> | ||
7161 | <context context-type="linenumber">23</context> | ||
7162 | </context-group> | ||
7163 | </trans-unit> | ||
7164 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c" datatype="html"> | ||
7165 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="cog" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon> | ||
7166 | "/> Notification preferences </source> | ||
7167 | <context-group purpose="location"> | ||
7168 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | ||
7169 | <context context-type="linenumber">4,6</context> | ||
7170 | </context-group> | ||
7171 | </trans-unit> | ||
7172 | <trans-unit id="e7f88c481ecdda90467acd3f4dbe934465cee30f" datatype="html"> | ||
7173 | <source>Newest first</source> | ||
7174 | <context-group purpose="location"> | ||
7175 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | ||
7176 | <context context-type="linenumber">11</context> | ||
7177 | </context-group> | ||
7178 | </trans-unit> | ||
7179 | <trans-unit id="a05dac5ded54ab304817a823693e2af2ad1cffef" datatype="html"> | ||
7180 | <source>Unread first</source> | ||
7181 | <context-group purpose="location"> | ||
7182 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | ||
7183 | <context context-type="linenumber">12</context> | ||
7184 | </context-group> | ||
7185 | </trans-unit> | ||
7186 | <trans-unit id="58479ebfcc980e1ee37a8102bc4f9a35eca2f680" datatype="html"> | ||
7187 | <source>All read</source> | ||
7188 | <context-group purpose="location"> | ||
7189 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | ||
7190 | <context context-type="linenumber">26</context> | ||
7191 | </context-group> | ||
7192 | </trans-unit> | ||
7193 | <trans-unit id="bd0611346af048015e0a1275091ef68ce98832d2" datatype="html"> | ||
7194 | <source>Muted servers</source> | ||
7195 | <context-group purpose="location"> | ||
7196 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7197 | <context context-type="linenumber">3</context> | ||
7198 | </context-group> | ||
7199 | <context-group purpose="location"> | ||
7200 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7351 | <context context-type="linenumber">3</context> | 7201 | <context context-type="linenumber">3</context> |
7352 | </context-group> | 7202 | </context-group> |
7353 | </trans-unit> | 7203 | </trans-unit> |
7354 | <trans-unit id="cc6208fd0ded0d4a57f4c0a97c2843dc454db39a" datatype="html"> | 7204 | <trans-unit id="60cdb933d2c7051f3b5b23f9e5f8c83fa861b220" datatype="html"> |
7355 | <source>Block live "<x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</source> | 7205 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> muted instances</source> |
7356 | <context-group purpose="location"> | 7206 | <context-group purpose="location"> |
7357 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7207 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7358 | <context context-type="linenumber">4</context> | 7208 | <context context-type="linenumber">10</context> |
7209 | </context-group> | ||
7210 | <context-group purpose="location"> | ||
7211 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7212 | <context context-type="linenumber">10</context> | ||
7359 | </context-group> | 7213 | </context-group> |
7360 | </trans-unit> | 7214 | </trans-unit> |
7361 | <trans-unit id="0cd0f27936731dabfd8d89277b781d5dd664bc89" datatype="html"> | 7215 | <trans-unit id="c7b73cded84adfa978aae675417f4bb688631a71" datatype="html"> |
7362 | <source>Unfederate the video</source> | 7216 | <source>Mute domains</source> |
7363 | <context-group purpose="location"> | 7217 | <context-group purpose="location"> |
7364 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7218 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7365 | <context context-type="linenumber">24</context> | 7219 | <context context-type="linenumber">64</context> |
7220 | </context-group> | ||
7221 | <context-group purpose="location"> | ||
7222 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7223 | <context context-type="linenumber">64</context> | ||
7366 | </context-group> | 7224 | </context-group> |
7367 | </trans-unit> | 7225 | </trans-unit> |
7368 | <trans-unit id="297603f796b0d287ac02b80d5aca6156c91a8fea" datatype="html"> | 7226 | <trans-unit id="25925fc5826bc5b3eeae7c45b08b0ed74b9e2954" datatype="html"> |
7369 | <source>This will ask remote instances to delete it</source> | 7227 | <source>Filter...</source> |
7370 | <context-group purpose="location"> | 7228 | <context-group purpose="location"> |
7371 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7229 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7230 | <context context-type="linenumber">16</context> | ||
7231 | </context-group> | ||
7232 | <context-group purpose="location"> | ||
7233 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7234 | <context context-type="linenumber">16</context> | ||
7235 | </context-group> | ||
7236 | <context-group purpose="location"> | ||
7237 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
7372 | <context context-type="linenumber">27</context> | 7238 | <context context-type="linenumber">27</context> |
7373 | </context-group> | 7239 | </context-group> |
7240 | <context-group purpose="location"> | ||
7241 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | ||
7242 | <context context-type="linenumber">16</context> | ||
7243 | </context-group> | ||
7244 | <context-group purpose="location"> | ||
7245 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7246 | <context context-type="linenumber">16</context> | ||
7247 | </context-group> | ||
7248 | <context-group purpose="location"> | ||
7249 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7250 | <context context-type="linenumber">16</context> | ||
7251 | </context-group> | ||
7252 | <context-group purpose="location"> | ||
7253 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
7254 | <context context-type="linenumber">42</context> | ||
7255 | </context-group> | ||
7256 | <context-group purpose="location"> | ||
7257 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
7258 | <context context-type="linenumber">29</context> | ||
7259 | </context-group> | ||
7260 | <context-group purpose="location"> | ||
7261 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context> | ||
7262 | <context context-type="linenumber">32</context> | ||
7263 | </context-group> | ||
7264 | <context-group purpose="location"> | ||
7265 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | ||
7266 | <context context-type="linenumber">16</context> | ||
7267 | </context-group> | ||
7374 | </trans-unit> | 7268 | </trans-unit> |
7375 | <trans-unit id="a5065c0f26fbd00b6f6ac0cf948535a44fffbd45" datatype="html"> | 7269 | <trans-unit id="a3ae5c724857d00c006273db314041ab0664c269" datatype="html"> |
7376 | <source> Blocking this live will automatically terminate the live stream. </source> | 7270 | <source>Mute domain</source> |
7377 | <context-group purpose="location"> | 7271 | <context-group purpose="location"> |
7378 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7272 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7379 | <context context-type="linenumber">33,34</context> | 7273 | <context context-type="linenumber">24</context> |
7274 | </context-group> | ||
7275 | <context-group purpose="location"> | ||
7276 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7277 | <context context-type="linenumber">24</context> | ||
7380 | </context-group> | 7278 | </context-group> |
7381 | </trans-unit> | 7279 | </trans-unit> |
7382 | <trans-unit id="5708680277917691451" datatype="html"> | 7280 | <trans-unit id="079e99cce11c87b142e80fdd14dae98a61012fc4" datatype="html"> |
7383 | <source><x id="PH" equiv-text="this.usersToBan.length"/> users banned.</source> | 7281 | <source>Muted at <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="createdAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> |
7384 | <context-group purpose="location"> | 7282 | <context-group purpose="location"> |
7385 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 7283 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7386 | <context context-type="linenumber">53</context> | 7284 | <context context-type="linenumber">33</context> |
7285 | </context-group> | ||
7286 | <context-group purpose="location"> | ||
7287 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7288 | <context context-type="linenumber">29</context> | ||
7289 | </context-group> | ||
7290 | <context-group purpose="location"> | ||
7291 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7292 | <context context-type="linenumber">29</context> | ||
7293 | </context-group> | ||
7294 | <context-group purpose="location"> | ||
7295 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7296 | <context context-type="linenumber">33</context> | ||
7387 | </context-group> | 7297 | </context-group> |
7388 | </trans-unit> | 7298 | </trans-unit> |
7389 | <trans-unit id="2448281151916042849" datatype="html"> | 7299 | <trans-unit id="1f689fada9748a830117f5b429a88ef8629082a8" datatype="html"> |
7390 | <source>User <x id="PH" equiv-text="this.usersToBan.username"/> banned.</source> | 7300 | <source>Unmute</source> |
7391 | <context-group purpose="location"> | 7301 | <context-group purpose="location"> |
7392 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 7302 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7393 | <context context-type="linenumber">54</context> | 7303 | <context context-type="linenumber">40</context> |
7304 | </context-group> | ||
7305 | <context-group purpose="location"> | ||
7306 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7307 | <context context-type="linenumber">36</context> | ||
7308 | </context-group> | ||
7309 | <context-group purpose="location"> | ||
7310 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7311 | <context context-type="linenumber">36</context> | ||
7312 | </context-group> | ||
7313 | <context-group purpose="location"> | ||
7314 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7315 | <context context-type="linenumber">40</context> | ||
7394 | </context-group> | 7316 | </context-group> |
7395 | </trans-unit> | 7317 | </trans-unit> |
7396 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 7318 | <trans-unit id="8cffa679dff97a096d44fca9348eeaa1867d40aa" datatype="html"> |
7397 | <source>Ban</source> | 7319 | <source>Open instance in a new tab</source> |
7398 | <context-group purpose="location"> | 7320 | <context-group purpose="location"> |
7399 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 7321 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
7322 | <context context-type="linenumber">43</context> | ||
7323 | </context-group> | ||
7324 | <context-group purpose="location"> | ||
7325 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | ||
7326 | <context context-type="linenumber">45</context> | ||
7327 | </context-group> | ||
7328 | <context-group purpose="location"> | ||
7329 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7330 | <context context-type="linenumber">43</context> | ||
7331 | </context-group> | ||
7332 | </trans-unit> | ||
7333 | <trans-unit id="4cac34ce105daa25964c217fdf0515a0a6ee5db9" datatype="html"> | ||
7334 | <source>No server found matching current filters.</source> | ||
7335 | <context-group purpose="location"> | ||
7336 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7337 | <context context-type="linenumber">56</context> | ||
7338 | </context-group> | ||
7339 | <context-group purpose="location"> | ||
7340 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7341 | <context context-type="linenumber">56</context> | ||
7342 | </context-group> | ||
7343 | </trans-unit> | ||
7344 | <trans-unit id="0ba22bd964baaf0c2f85d6731fccca31dbf06dae" datatype="html"> | ||
7345 | <source>No server found.</source> | ||
7346 | <context-group purpose="location"> | ||
7347 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7348 | <context context-type="linenumber">57</context> | ||
7349 | </context-group> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | ||
7352 | <context context-type="linenumber">57</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit> | ||
7355 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c" datatype="html"> | ||
7356 | <source>Muted accounts</source> | ||
7357 | <context-group purpose="location"> | ||
7358 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7359 | <context context-type="linenumber">3</context> | ||
7360 | </context-group> | ||
7361 | <context-group purpose="location"> | ||
7362 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7400 | <context context-type="linenumber">3</context> | 7363 | <context context-type="linenumber">3</context> |
7401 | </context-group> | 7364 | </context-group> |
7402 | </trans-unit> | 7365 | </trans-unit> |
7403 | <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125" datatype="html"> | 7366 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
7404 | <source>Reason...</source> | 7367 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> muted accounts</source> |
7405 | <context-group purpose="location"> | 7368 | <context-group purpose="location"> |
7406 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 7369 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> |
7407 | <context context-type="linenumber">12</context> | 7370 | <context context-type="linenumber">10</context> |
7371 | </context-group> | ||
7372 | <context-group purpose="location"> | ||
7373 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7374 | <context context-type="linenumber">10</context> | ||
7408 | </context-group> | 7375 | </context-group> |
7409 | </trans-unit> | 7376 | </trans-unit> |
7410 | <trans-unit id="f21428bd564d1cacdbc737f87a8def2e2ad42251" datatype="html"> | 7377 | <trans-unit id="29881a45dafbe5aa05cd9d0441a4c0c2fb06df92" datatype="html"> |
7411 | <source> A banned user will no longer be able to login. </source> | 7378 | <source>Account</source> |
7412 | <context-group purpose="location"> | 7379 | <context-group purpose="location"> |
7413 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 7380 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> |
7414 | <context context-type="linenumber">21,22</context> | 7381 | <context context-type="linenumber">28</context> |
7382 | </context-group> | ||
7383 | <context-group purpose="location"> | ||
7384 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7385 | <context context-type="linenumber">28</context> | ||
7386 | </context-group> | ||
7387 | <context-group purpose="location"> | ||
7388 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
7389 | <context context-type="linenumber">59</context> | ||
7415 | </context-group> | 7390 | </context-group> |
7416 | </trans-unit> | 7391 | </trans-unit> |
7417 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020" datatype="html"> | 7392 | <trans-unit id="33c4091a2a2438ba655caa47ede7f7a82f5f0297" datatype="html"> |
7418 | <source>Ban this user</source> | 7393 | <source>No account found matching current filters.</source> |
7419 | <context-group purpose="location"> | 7394 | <context-group purpose="location"> |
7420 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 7395 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> |
7421 | <context context-type="linenumber">31</context> | 7396 | <context context-type="linenumber">63</context> |
7397 | </context-group> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7400 | <context context-type="linenumber">63</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit> | ||
7403 | <trans-unit id="5d3b267bc054bb6b5743dd3d46ee58cff5141697" datatype="html"> | ||
7404 | <source>No account found.</source> | ||
7405 | <context-group purpose="location"> | ||
7406 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7407 | <context context-type="linenumber">64</context> | ||
7408 | </context-group> | ||
7409 | <context-group purpose="location"> | ||
7410 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context> | ||
7411 | <context context-type="linenumber">64</context> | ||
7422 | </context-group> | 7412 | </context-group> |
7423 | </trans-unit> | 7413 | </trans-unit> |
7424 | <trans-unit id="7152797255397280410" datatype="html"> | 7414 | <trans-unit id="7152797255397280410" datatype="html"> |
@@ -7589,6 +7579,20 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7589 | <context context-type="linenumber">92</context> | 7579 | <context context-type="linenumber">92</context> |
7590 | </context-group> | 7580 | </context-group> |
7591 | </trans-unit> | 7581 | </trans-unit> |
7582 | <trans-unit id="1137937154872046253" datatype="html"> | ||
7583 | <source>Video channel <x id="PH" equiv-text="videoChannelCreate.displayName"/> created.</source> | ||
7584 | <context-group purpose="location"> | ||
7585 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context> | ||
7586 | <context context-type="linenumber">56</context> | ||
7587 | </context-group> | ||
7588 | </trans-unit> | ||
7589 | <trans-unit id="8723777130353305761" datatype="html"> | ||
7590 | <source>This name already exists on this instance.</source> | ||
7591 | <context-group purpose="location"> | ||
7592 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context> | ||
7593 | <context context-type="linenumber">62</context> | ||
7594 | </context-group> | ||
7595 | </trans-unit> | ||
7592 | <trans-unit id="3152303769378345477" datatype="html"> | 7596 | <trans-unit id="3152303769378345477" datatype="html"> |
7593 | <source>Confirmation of the password is required.</source> | 7597 | <source>Confirmation of the password is required.</source> |
7594 | <context-group purpose="location"> | 7598 | <context-group purpose="location"> |
@@ -7638,421 +7642,247 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7638 | <context context-type="linenumber">50</context> | 7642 | <context context-type="linenumber">50</context> |
7639 | </context-group> | 7643 | </context-group> |
7640 | </trans-unit> | 7644 | </trans-unit> |
7641 | <trans-unit id="6549061957433635758" datatype="html"> | 7645 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> |
7642 | <source>Process domains</source> | 7646 | <source>Reports</source> |
7643 | <context-group purpose="location"> | ||
7644 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.ts</context> | ||
7645 | <context context-type="linenumber">28</context> | ||
7646 | </context-group> | ||
7647 | </trans-unit> | ||
7648 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> | ||
7649 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/></source> | ||
7650 | <context-group purpose="location"> | 7647 | <context-group purpose="location"> |
7651 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context> | 7648 | <context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context> |
7652 | <context context-type="linenumber">3</context> | 7649 | <context context-type="linenumber">3</context> |
7653 | </context-group> | 7650 | </context-group> |
7654 | </trans-unit> | ||
7655 | <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396" datatype="html"> | ||
7656 | <source>1 host (without "http://") per line</source> | ||
7657 | <context-group purpose="location"> | 7651 | <context-group purpose="location"> |
7658 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context> | 7652 | <context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context> |
7659 | <context context-type="linenumber">11</context> | 7653 | <context context-type="linenumber">3</context> |
7660 | </context-group> | ||
7661 | </trans-unit> | ||
7662 | <trans-unit id="1250415136605923486" datatype="html"> | ||
7663 | <source>Do you really want to delete this abuse report?</source> | ||
7664 | <context-group purpose="location"> | ||
7665 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7666 | <context context-type="linenumber">129</context> | ||
7667 | </context-group> | ||
7668 | </trans-unit> | ||
7669 | <trans-unit id="3482559157143817408" datatype="html"> | ||
7670 | <source>Abuse deleted.</source> | ||
7671 | <context-group purpose="location"> | ||
7672 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7673 | <context context-type="linenumber">134</context> | ||
7674 | </context-group> | ||
7675 | </trans-unit> | ||
7676 | <trans-unit id="6282990098351939529" datatype="html"> | ||
7677 | <source>Deleted comment</source> | ||
7678 | <context-group purpose="location"> | ||
7679 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7680 | <context context-type="linenumber">210</context> | ||
7681 | </context-group> | ||
7682 | </trans-unit> | ||
7683 | <trans-unit id="6473213678768782133" datatype="html"> | ||
7684 | <source>Internal actions</source> | ||
7685 | <context-group purpose="location"> | ||
7686 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7687 | <context context-type="linenumber">239</context> | ||
7688 | </context-group> | ||
7689 | <context-group purpose="location"> | ||
7690 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
7691 | <context context-type="linenumber">43</context> | ||
7692 | </context-group> | ||
7693 | </trans-unit> | ||
7694 | <trans-unit id="9196775343330824083" datatype="html"> | ||
7695 | <source>Messages with reporter</source> | ||
7696 | <context-group purpose="location"> | ||
7697 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7698 | <context context-type="linenumber">244</context> | ||
7699 | </context-group> | ||
7700 | </trans-unit> | ||
7701 | <trans-unit id="8770468575924421391" datatype="html"> | ||
7702 | <source>Messages with moderators</source> | ||
7703 | <context-group purpose="location"> | ||
7704 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7705 | <context context-type="linenumber">245</context> | ||
7706 | </context-group> | ||
7707 | </trans-unit> | ||
7708 | <trans-unit id="8528549800795985099" datatype="html"> | ||
7709 | <source>Update internal note</source> | ||
7710 | <context-group purpose="location"> | ||
7711 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7712 | <context context-type="linenumber">250</context> | ||
7713 | </context-group> | 7654 | </context-group> |
7714 | </trans-unit> | 7655 | </trans-unit> |
7715 | <trans-unit id="1679841953757186358" datatype="html"> | 7656 | <trans-unit id="5179099584732142331" datatype="html"> |
7716 | <source>Mark as accepted</source> | 7657 | <source>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.</source> |
7717 | <context-group purpose="location"> | 7658 | <context-group purpose="location"> |
7718 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7659 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
7719 | <context context-type="linenumber">255</context> | 7660 | <context context-type="linenumber">22</context> |
7720 | </context-group> | 7661 | </context-group> |
7721 | </trans-unit> | 7662 | </trans-unit> |
7722 | <trans-unit id="7993358694073742566" datatype="html"> | 7663 | <trans-unit id="6897292459203320054" datatype="html"> |
7723 | <source>Mark as rejected</source> | 7664 | <source>Type your username to confirm</source> |
7724 | <context-group purpose="location"> | 7665 | <context-group purpose="location"> |
7725 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7666 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
7726 | <context context-type="linenumber">260</context> | 7667 | <context context-type="linenumber">23</context> |
7727 | </context-group> | 7668 | </context-group> |
7728 | </trans-unit> | 7669 | </trans-unit> |
7729 | <trans-unit id="4175703770051343108" datatype="html"> | 7670 | <trans-unit id="3122895472333547524" datatype="html"> |
7730 | <source>Add internal note</source> | 7671 | <source>Delete your account</source> |
7731 | <context-group purpose="location"> | 7672 | <context-group purpose="location"> |
7732 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7673 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
7733 | <context context-type="linenumber">265</context> | 7674 | <context context-type="linenumber">25</context> |
7734 | </context-group> | 7675 | </context-group> |
7735 | </trans-unit> | 7676 | </trans-unit> |
7736 | <trans-unit id="4559872264406386913" datatype="html"> | 7677 | <trans-unit id="2520605306994744004" datatype="html"> |
7737 | <source>Delete report</source> | 7678 | <source>Delete my account</source> |
7738 | <context-group purpose="location"> | 7679 | <context-group purpose="location"> |
7739 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7680 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
7740 | <context context-type="linenumber">270</context> | 7681 | <context context-type="linenumber">26</context> |
7741 | </context-group> | 7682 | </context-group> |
7742 | </trans-unit> | 7683 | </trans-unit> |
7743 | <trans-unit id="5793550984155962433" datatype="html"> | 7684 | <trans-unit id="3902597758945766483" datatype="html"> |
7744 | <source>Actions for the flagged account</source> | 7685 | <source>Your account is deleted.</source> |
7745 | <context-group purpose="location"> | 7686 | <context-group purpose="location"> |
7746 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7687 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
7747 | <context context-type="linenumber">281</context> | 7688 | <context context-type="linenumber">32</context> |
7748 | </context-group> | 7689 | </context-group> |
7749 | </trans-unit> | 7690 | </trans-unit> |
7750 | <trans-unit id="3719503424625455635" datatype="html"> | 7691 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> |
7751 | <source>Mute server account</source> | 7692 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> |
7752 | <context-group purpose="location"> | 7693 | <context-group purpose="location"> |
7753 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7694 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> |
7754 | <context context-type="linenumber">293</context> | 7695 | <context context-type="linenumber">2</context> |
7755 | </context-group> | 7696 | </context-group> |
7756 | </trans-unit> | 7697 | </trans-unit> |
7757 | <trans-unit id="5072091387445907742" datatype="html"> | 7698 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45" datatype="html"> |
7758 | <source>Actions for the reporter</source> | 7699 | <source>Delete your account</source> |
7759 | <context-group purpose="location"> | 7700 | <context-group purpose="location"> |
7760 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7701 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> |
7761 | <context context-type="linenumber">305</context> | 7702 | <context context-type="linenumber">4</context> |
7762 | </context-group> | 7703 | </context-group> |
7763 | </trans-unit> | 7704 | </trans-unit> |
7764 | <trans-unit id="6599069899275412095" datatype="html"> | 7705 | <trans-unit id="6012072687166259654" datatype="html"> |
7765 | <source>Mute reporter</source> | 7706 | <source>Please check your emails to verify your new email.</source> |
7766 | <context-group purpose="location"> | 7707 | <context-group purpose="location"> |
7767 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7708 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> |
7768 | <context context-type="linenumber">311</context> | 7709 | <context context-type="linenumber">53</context> |
7769 | </context-group> | 7710 | </context-group> |
7770 | </trans-unit> | 7711 | </trans-unit> |
7771 | <trans-unit id="1595779426198793580" datatype="html"> | 7712 | <trans-unit id="6585766371605707311" datatype="html"> |
7772 | <source>Mute server</source> | 7713 | <source>Email updated.</source> |
7773 | <context-group purpose="location"> | 7714 | <context-group purpose="location"> |
7774 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7715 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> |
7775 | <context context-type="linenumber">317</context> | 7716 | <context context-type="linenumber">55</context> |
7776 | </context-group> | 7717 | </context-group> |
7777 | </trans-unit> | 7718 | </trans-unit> |
7778 | <trans-unit id="296166371893775555" datatype="html"> | 7719 | <trans-unit id="dbcc539bd3ca0b962b87ea26855ca9d5d3c5cdf1" datatype="html"> |
7779 | <source>Actions for the video</source> | 7720 | <source> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
7780 | <context-group purpose="location"> | ||
7781 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7782 | <context context-type="linenumber">329</context> | ||
7783 | </context-group> | ||
7784 | <context-group purpose="location"> | 7721 | <context-group purpose="location"> |
7785 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | 7722 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7786 | <context context-type="linenumber">66</context> | 7723 | <context context-type="linenumber">5</context> |
7787 | </context-group> | 7724 | </context-group> |
7788 | </trans-unit> | 7725 | </trans-unit> |
7789 | <trans-unit id="3924877328520650445" datatype="html"> | 7726 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05" datatype="html"> |
7790 | <source>Block video</source> | 7727 | <source><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span> "/> is awaiting email verification |
7728 | </source> | ||
7791 | <context-group purpose="location"> | 7729 | <context-group purpose="location"> |
7792 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7730 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7793 | <context context-type="linenumber">334</context> | 7731 | <context context-type="linenumber">9,10</context> |
7794 | </context-group> | 7732 | </context-group> |
7795 | </trans-unit> | 7733 | </trans-unit> |
7796 | <trans-unit id="4328862996304258770" datatype="html"> | 7734 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219" datatype="html"> |
7797 | <source>Unblock video</source> | 7735 | <source>New email</source> |
7798 | <context-group purpose="location"> | 7736 | <context-group purpose="location"> |
7799 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7737 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7800 | <context context-type="linenumber">350</context> | 7738 | <context context-type="linenumber">15</context> |
7801 | </context-group> | 7739 | </context-group> |
7802 | </trans-unit> | 7740 | </trans-unit> |
7803 | <trans-unit id="9065327551191479877" datatype="html"> | 7741 | <trans-unit id="150bb2b8ea3b2745294f0cfe8b37c83dbca4b463" datatype="html"> |
7804 | <source>Video unblocked.</source> | 7742 | <source>Your new email</source> |
7805 | <context-group purpose="location"> | 7743 | <context-group purpose="location"> |
7806 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7744 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7807 | <context context-type="linenumber">356</context> | 7745 | <context context-type="linenumber">17</context> |
7808 | </context-group> | 7746 | </context-group> |
7809 | </trans-unit> | 7747 | </trans-unit> |
7810 | <trans-unit id="2909684945706361544" datatype="html"> | 7748 | <trans-unit id="3a83d433c5d27e1d06ece0475fac8ba409b6c9ac" datatype="html"> |
7811 | <source>Delete video</source> | 7749 | <source>Your current password</source> |
7812 | <context-group purpose="location"> | 7750 | <context-group purpose="location"> |
7813 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7751 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7814 | <context context-type="linenumber">366</context> | 7752 | <context context-type="linenumber">26</context> |
7815 | </context-group> | 7753 | </context-group> |
7816 | </trans-unit> | 7754 | </trans-unit> |
7817 | <trans-unit id="3941342949736653028" datatype="html"> | 7755 | <trans-unit id="5b5b91438db5731debea388908f788bab8d3d404" datatype="html"> |
7818 | <source>Video deleted.</source> | 7756 | <source>Your password</source> |
7819 | <context-group purpose="location"> | ||
7820 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7821 | <context context-type="linenumber">378</context> | ||
7822 | </context-group> | ||
7823 | <context-group purpose="location"> | 7757 | <context-group purpose="location"> |
7824 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | 7758 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7825 | <context context-type="linenumber">86</context> | 7759 | <context context-type="linenumber">28</context> |
7826 | </context-group> | 7760 | </context-group> |
7827 | </trans-unit> | 7761 | </trans-unit> |
7828 | <trans-unit id="2210418817778733727" datatype="html"> | 7762 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c" datatype="html"> |
7829 | <source>Actions for the comment</source> | 7763 | <source>Change email</source> |
7830 | <context-group purpose="location"> | 7764 | <context-group purpose="location"> |
7831 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7765 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
7832 | <context context-type="linenumber">395</context> | 7766 | <context context-type="linenumber">36</context> |
7833 | </context-group> | 7767 | </context-group> |
7834 | </trans-unit> | 7768 | </trans-unit> |
7835 | <trans-unit id="7978668497183230348" datatype="html"> | 7769 | <trans-unit id="77907918814566205" datatype="html"> |
7836 | <source>Delete comment</source> | 7770 | <source>New video from your subscriptions</source> |
7837 | <context-group purpose="location"> | 7771 | <context-group purpose="location"> |
7838 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7772 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7839 | <context context-type="linenumber">401</context> | 7773 | <context context-type="linenumber">32</context> |
7840 | </context-group> | 7774 | </context-group> |
7841 | </trans-unit> | 7775 | </trans-unit> |
7842 | <trans-unit id="6747218355168080191" datatype="html"> | 7776 | <trans-unit id="4343589211916204486" datatype="html"> |
7843 | <source>Do you really want to delete this comment?</source> | 7777 | <source>New comment on your video</source> |
7844 | <context-group purpose="location"> | ||
7845 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
7846 | <context context-type="linenumber">405</context> | ||
7847 | </context-group> | ||
7848 | <context-group purpose="location"> | 7778 | <context-group purpose="location"> |
7849 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context> | 7779 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7850 | <context context-type="linenumber">166</context> | 7780 | <context context-type="linenumber">33</context> |
7851 | </context-group> | 7781 | </context-group> |
7852 | </trans-unit> | 7782 | </trans-unit> |
7853 | <trans-unit id="7837272126865175984" datatype="html"> | 7783 | <trans-unit id="7130088765428829942" datatype="html"> |
7854 | <source>Comment deleted.</source> | 7784 | <source>New abuse</source> |
7855 | <context-group purpose="location"> | 7785 | <context-group purpose="location"> |
7856 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7786 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7857 | <context context-type="linenumber">413</context> | 7787 | <context context-type="linenumber">34</context> |
7858 | </context-group> | 7788 | </context-group> |
7859 | </trans-unit> | 7789 | </trans-unit> |
7860 | <trans-unit id="8014491157078444256" datatype="html"> | 7790 | <trans-unit id="2265829846010085268" datatype="html"> |
7861 | <source>Server <x id="PH" equiv-text="host"/> muted by the instance.</source> | 7791 | <source>Video blocked automatically waiting review</source> |
7862 | <context-group purpose="location"> | 7792 | <context-group purpose="location"> |
7863 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | 7793 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7864 | <context context-type="linenumber">441</context> | 7794 | <context context-type="linenumber">35</context> |
7865 | </context-group> | 7795 | </context-group> |
7866 | </trans-unit> | 7796 | </trans-unit> |
7867 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> | 7797 | <trans-unit id="5671547068905553663" datatype="html"> |
7868 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> reports</source> | 7798 | <source>One of your video is blocked/unblocked</source> |
7869 | <context-group purpose="location"> | 7799 | <context-group purpose="location"> |
7870 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7800 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7871 | <context context-type="linenumber">5</context> | 7801 | <context context-type="linenumber">36</context> |
7872 | </context-group> | 7802 | </context-group> |
7873 | </trans-unit> | 7803 | </trans-unit> |
7874 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> | 7804 | <trans-unit id="1158912204255103651" datatype="html"> |
7875 | <source>Advanced report filters</source> | 7805 | <source>Video published (after transcoding/scheduled update)</source> |
7876 | <context-group purpose="location"> | 7806 | <context-group purpose="location"> |
7877 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7807 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7878 | <context context-type="linenumber">18</context> | 7808 | <context context-type="linenumber">37</context> |
7879 | </context-group> | 7809 | </context-group> |
7880 | </trans-unit> | 7810 | </trans-unit> |
7881 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> | 7811 | <trans-unit id="3809414664640924954" datatype="html"> |
7882 | <source>Unsolved reports</source> | 7812 | <source>Video import finished</source> |
7883 | <context-group purpose="location"> | 7813 | <context-group purpose="location"> |
7884 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7814 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7885 | <context context-type="linenumber">19</context> | 7815 | <context context-type="linenumber">38</context> |
7886 | </context-group> | 7816 | </context-group> |
7887 | </trans-unit> | 7817 | </trans-unit> |
7888 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> | 7818 | <trans-unit id="3268838889659873892" datatype="html"> |
7889 | <source>Accepted reports</source> | 7819 | <source>A new user registered on your instance</source> |
7890 | <context-group purpose="location"> | 7820 | <context-group purpose="location"> |
7891 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7821 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7892 | <context context-type="linenumber">20</context> | 7822 | <context context-type="linenumber">39</context> |
7893 | </context-group> | 7823 | </context-group> |
7894 | </trans-unit> | 7824 | </trans-unit> |
7895 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> | 7825 | <trans-unit id="7373104725413001009" datatype="html"> |
7896 | <source>Refused reports</source> | 7826 | <source>You or your channel(s) has a new follower</source> |
7897 | <context-group purpose="location"> | 7827 | <context-group purpose="location"> |
7898 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7828 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7899 | <context context-type="linenumber">21</context> | 7829 | <context context-type="linenumber">40</context> |
7900 | </context-group> | 7830 | </context-group> |
7901 | </trans-unit> | 7831 | </trans-unit> |
7902 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> | 7832 | <trans-unit id="5315689532659759332" datatype="html"> |
7903 | <source>Reports with blocked videos</source> | 7833 | <source>Someone mentioned you in video comments</source> |
7904 | <context-group purpose="location"> | 7834 | <context-group purpose="location"> |
7905 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7835 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7906 | <context context-type="linenumber">22</context> | 7836 | <context context-type="linenumber">41</context> |
7907 | </context-group> | 7837 | </context-group> |
7908 | </trans-unit> | 7838 | </trans-unit> |
7909 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> | 7839 | <trans-unit id="2018794201569157817" datatype="html"> |
7910 | <source>Reports with deleted videos</source> | 7840 | <source>Your instance has a new follower</source> |
7911 | <context-group purpose="location"> | 7841 | <context-group purpose="location"> |
7912 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7842 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7913 | <context context-type="linenumber">23</context> | 7843 | <context context-type="linenumber">42</context> |
7914 | </context-group> | 7844 | </context-group> |
7915 | </trans-unit> | 7845 | </trans-unit> |
7916 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> | 7846 | <trans-unit id="773085434165307906" datatype="html"> |
7917 | <source>Video/Comment/Account</source> | 7847 | <source>Your instance automatically followed another instance</source> |
7918 | <context-group purpose="location"> | 7848 | <context-group purpose="location"> |
7919 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7849 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7920 | <context context-type="linenumber">42</context> | 7850 | <context context-type="linenumber">43</context> |
7921 | </context-group> | 7851 | </context-group> |
7922 | </trans-unit> | 7852 | </trans-unit> |
7923 | <trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9" datatype="html"> | 7853 | <trans-unit id="900099988467638766" datatype="html"> |
7924 | <source>State <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="state">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | 7854 | <source>An abuse report received a new message</source> |
7925 | <context-group purpose="location"> | 7855 | <context-group purpose="location"> |
7926 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7856 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7927 | <context context-type="linenumber">44</context> | 7857 | <context context-type="linenumber">44</context> |
7928 | </context-group> | 7858 | </context-group> |
7929 | <context-group purpose="location"> | ||
7930 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | ||
7931 | <context context-type="linenumber">33</context> | ||
7932 | </context-group> | ||
7933 | <context-group purpose="location"> | ||
7934 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | ||
7935 | <context context-type="linenumber">29</context> | ||
7936 | </context-group> | ||
7937 | </trans-unit> | 7859 | </trans-unit> |
7938 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> | 7860 | <trans-unit id="2326816287669585542" datatype="html"> |
7939 | <source>Messages</source> | 7861 | <source>One of your abuse reports has been accepted or rejected by moderators</source> |
7940 | <context-group purpose="location"> | 7862 | <context-group purpose="location"> |
7941 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7863 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7942 | <context context-type="linenumber">45</context> | 7864 | <context context-type="linenumber">45</context> |
7943 | </context-group> | 7865 | </context-group> |
7944 | </trans-unit> | 7866 | </trans-unit> |
7945 | <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2" datatype="html"> | 7867 | <trans-unit id="5095562193296630034" datatype="html"> |
7946 | <source>Reporter</source> | 7868 | <source>Preferences saved</source> |
7947 | <context-group purpose="location"> | ||
7948 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
7949 | <context context-type="linenumber">41</context> | ||
7950 | </context-group> | ||
7951 | <context-group purpose="location"> | ||
7952 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
7953 | <context context-type="linenumber">7</context> | ||
7954 | </context-group> | ||
7955 | </trans-unit> | ||
7956 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> | ||
7957 | <source>Internal note</source> | ||
7958 | <context-group purpose="location"> | ||
7959 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
7960 | <context context-type="linenumber">46</context> | ||
7961 | </context-group> | ||
7962 | </trans-unit> | ||
7963 | <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e" datatype="html"> | ||
7964 | <source>More information</source> | ||
7965 | <context-group purpose="location"> | ||
7966 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
7967 | <context context-type="linenumber">52</context> | ||
7968 | </context-group> | ||
7969 | <context-group purpose="location"> | ||
7970 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | ||
7971 | <context context-type="linenumber">46</context> | ||
7972 | </context-group> | ||
7973 | <context-group purpose="location"> | ||
7974 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context> | ||
7975 | <context context-type="linenumber">312</context> | ||
7976 | </context-group> | ||
7977 | <context-group purpose="location"> | ||
7978 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
7979 | <context context-type="linenumber">73</context> | ||
7980 | </context-group> | ||
7981 | <context-group purpose="location"> | ||
7982 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
7983 | <context context-type="linenumber">53</context> | ||
7984 | </context-group> | ||
7985 | <context-group purpose="location"> | ||
7986 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
7987 | <context context-type="linenumber">53</context> | ||
7988 | </context-group> | ||
7989 | </trans-unit> | ||
7990 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> | ||
7991 | <source> Deleted account </source> | ||
7992 | <context-group purpose="location"> | ||
7993 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
7994 | <context context-type="linenumber">82,83</context> | ||
7995 | </context-group> | ||
7996 | </trans-unit> | ||
7997 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> | ||
7998 | <source>This video has been reported multiple times.</source> | ||
7999 | <context-group purpose="location"> | ||
8000 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8001 | <context context-type="linenumber">95</context> | ||
8002 | </context-group> | ||
8003 | <context-group purpose="location"> | ||
8004 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8005 | <context context-type="linenumber">95</context> | ||
8006 | </context-group> | ||
8007 | </trans-unit> | ||
8008 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> | ||
8009 | <source>The video was blocked</source> | ||
8010 | <context-group purpose="location"> | ||
8011 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8012 | <context context-type="linenumber">104</context> | ||
8013 | </context-group> | ||
8014 | <context-group purpose="location"> | ||
8015 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8016 | <context context-type="linenumber">104</context> | ||
8017 | </context-group> | ||
8018 | </trans-unit> | ||
8019 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> | ||
8020 | <source>by <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> </source> | ||
8021 | <context-group purpose="location"> | ||
8022 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8023 | <context context-type="linenumber">107</context> | ||
8024 | </context-group> | ||
8025 | <context-group purpose="location"> | ||
8026 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8027 | <context context-type="linenumber">124</context> | ||
8028 | </context-group> | ||
8029 | </trans-unit> | ||
8030 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> | ||
8031 | <source>Video was deleted</source> | ||
8032 | <context-group purpose="location"> | ||
8033 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8034 | <context context-type="linenumber">114</context> | ||
8035 | </context-group> | ||
8036 | </trans-unit> | ||
8037 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> | ||
8038 | <source> Account deleted </source> | ||
8039 | <context-group purpose="location"> | 7869 | <context-group purpose="location"> |
8040 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7870 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8041 | <context context-type="linenumber">150,151</context> | 7871 | <context context-type="linenumber">92</context> |
8042 | </context-group> | 7872 | </context-group> |
8043 | </trans-unit> | 7873 | </trans-unit> |
8044 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> | 7874 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136" datatype="html"> |
8045 | <source>No abuses found matching current filters.</source> | 7875 | <source>Activities</source> |
8046 | <context-group purpose="location"> | 7876 | <context-group purpose="location"> |
8047 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7877 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> |
8048 | <context context-type="linenumber">188</context> | 7878 | <context context-type="linenumber">2</context> |
8049 | </context-group> | 7879 | </context-group> |
8050 | </trans-unit> | 7880 | </trans-unit> |
8051 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> | 7881 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355" datatype="html"> |
8052 | <source>No abuses found.</source> | 7882 | <source>Web</source> |
8053 | <context-group purpose="location"> | 7883 | <context-group purpose="location"> |
8054 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | 7884 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> |
8055 | <context context-type="linenumber">189</context> | 7885 | <context context-type="linenumber">3</context> |
8056 | </context-group> | 7886 | </context-group> |
8057 | </trans-unit> | 7887 | </trans-unit> |
8058 | <trans-unit id="6700357678556223012" datatype="html"> | 7888 | <trans-unit id="6700357678556223012" datatype="html"> |
@@ -8097,20 +7927,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8097 | <context context-type="linenumber">41</context> | 7927 | <context context-type="linenumber">41</context> |
8098 | </context-group> | 7928 | </context-group> |
8099 | </trans-unit> | 7929 | </trans-unit> |
8100 | <trans-unit id="1137937154872046253" datatype="html"> | ||
8101 | <source>Video channel <x id="PH" equiv-text="videoChannelCreate.displayName"/> created.</source> | ||
8102 | <context-group purpose="location"> | ||
8103 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context> | ||
8104 | <context context-type="linenumber">56</context> | ||
8105 | </context-group> | ||
8106 | </trans-unit> | ||
8107 | <trans-unit id="8723777130353305761" datatype="html"> | ||
8108 | <source>This name already exists on this instance.</source> | ||
8109 | <context-group purpose="location"> | ||
8110 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context> | ||
8111 | <context context-type="linenumber">62</context> | ||
8112 | </context-group> | ||
8113 | </trans-unit> | ||
8114 | <trans-unit id="9191505323045740697" datatype="html"> | 7930 | <trans-unit id="9191505323045740697" datatype="html"> |
8115 | <source>Block reason must be at least 2 characters long.</source> | 7931 | <source>Block reason must be at least 2 characters long.</source> |
8116 | <context-group purpose="location"> | 7932 | <context-group purpose="location"> |
@@ -8125,321 +7941,131 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8125 | <context context-type="linenumber">8</context> | 7941 | <context context-type="linenumber">8</context> |
8126 | </context-group> | 7942 | </context-group> |
8127 | </trans-unit> | 7943 | </trans-unit> |
8128 | <trans-unit id="1472171759957681533" datatype="html"> | 7944 | <trans-unit id="6549061957433635758" datatype="html"> |
8129 | <source>Video reported.</source> | 7945 | <source>Process domains</source> |
8130 | <context-group purpose="location"> | 7946 | <context-group purpose="location"> |
8131 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context> | 7947 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.ts</context> |
8132 | <context context-type="linenumber">110</context> | 7948 | <context context-type="linenumber">28</context> |
8133 | </context-group> | 7949 | </context-group> |
8134 | </trans-unit> | 7950 | </trans-unit> |
8135 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> | 7951 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> |
8136 | <source>Report video "<x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</source> | 7952 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/></source> |
8137 | <context-group purpose="location"> | 7953 | <context-group purpose="location"> |
8138 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | 7954 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context> |
8139 | <context context-type="linenumber">3</context> | 7955 | <context context-type="linenumber">3</context> |
8140 | </context-group> | 7956 | </context-group> |
8141 | </trans-unit> | 7957 | </trans-unit> |
8142 | <trans-unit id="020d5da7c3f4726e3623587a05a11f00e1d40409" datatype="html"> | 7958 | <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396" datatype="html"> |
8143 | <source> Your report will be sent to moderators of <x id="INTERPOLATION" equiv-text="rators of {{ curr"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="isRemote()">"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too<x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/>. </source> | 7959 | <source>1 host (without "http://") per line</source> |
8144 | <context-group purpose="location"> | ||
8145 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context> | ||
8146 | <context context-type="linenumber">74,76</context> | ||
8147 | </context-group> | ||
8148 | </trans-unit> | ||
8149 | <trans-unit id="1006562256968398209" datatype="html"> | ||
8150 | <source>video</source> | ||
8151 | <context-group purpose="location"> | ||
8152 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8153 | <context context-type="linenumber">48</context> | ||
8154 | </context-group> | ||
8155 | </trans-unit> | ||
8156 | <trans-unit id="5235042777215655908" datatype="html"> | ||
8157 | <source>subtitles</source> | ||
8158 | <context-group purpose="location"> | ||
8159 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8160 | <context context-type="linenumber">49</context> | ||
8161 | </context-group> | ||
8162 | </trans-unit> | ||
8163 | <trans-unit id="346270517625845962" datatype="html"> | ||
8164 | <source>Encoder</source> | ||
8165 | <context-group purpose="location"> | ||
8166 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8167 | <context context-type="linenumber">145</context> | ||
8168 | </context-group> | ||
8169 | </trans-unit> | ||
8170 | <trans-unit id="2331557444464201331" datatype="html"> | ||
8171 | <source>Format name</source> | ||
8172 | <context-group purpose="location"> | ||
8173 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8174 | <context context-type="linenumber">146</context> | ||
8175 | </context-group> | ||
8176 | </trans-unit> | ||
8177 | <trans-unit id="45739481977493163" datatype="html"> | ||
8178 | <source>Size</source> | ||
8179 | <context-group purpose="location"> | ||
8180 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8181 | <context context-type="linenumber">147</context> | ||
8182 | </context-group> | ||
8183 | </trans-unit> | ||
8184 | <trans-unit id="7742520815129539114" datatype="html"> | ||
8185 | <source>Bitrate</source> | ||
8186 | <context-group purpose="location"> | ||
8187 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8188 | <context context-type="linenumber">149</context> | ||
8189 | </context-group> | ||
8190 | <context-group purpose="location"> | ||
8191 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8192 | <context context-type="linenumber">172</context> | ||
8193 | </context-group> | ||
8194 | </trans-unit> | ||
8195 | <trans-unit id="4094960161662677662" datatype="html"> | ||
8196 | <source>Codec</source> | ||
8197 | <context-group purpose="location"> | ||
8198 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8199 | <context context-type="linenumber">169</context> | ||
8200 | </context-group> | ||
8201 | </trans-unit> | ||
8202 | <trans-unit id="4915431133669985304" datatype="html"> | ||
8203 | <source>Profile</source> | ||
8204 | <context-group purpose="location"> | ||
8205 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8206 | <context context-type="linenumber">170</context> | ||
8207 | </context-group> | ||
8208 | </trans-unit> | ||
8209 | <trans-unit id="1963136290621768454" datatype="html"> | ||
8210 | <source>Resolution</source> | ||
8211 | <context-group purpose="location"> | ||
8212 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8213 | <context context-type="linenumber">179</context> | ||
8214 | </context-group> | ||
8215 | </trans-unit> | ||
8216 | <trans-unit id="7814358426066520520" datatype="html"> | ||
8217 | <source>Aspect ratio</source> | ||
8218 | <context-group purpose="location"> | ||
8219 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8220 | <context context-type="linenumber">180</context> | ||
8221 | </context-group> | ||
8222 | </trans-unit> | ||
8223 | <trans-unit id="44862519224794374" datatype="html"> | ||
8224 | <source>Average frame rate</source> | ||
8225 | <context-group purpose="location"> | ||
8226 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8227 | <context context-type="linenumber">181</context> | ||
8228 | </context-group> | ||
8229 | </trans-unit> | ||
8230 | <trans-unit id="5053683525387462246" datatype="html"> | ||
8231 | <source>Pixel format</source> | ||
8232 | <context-group purpose="location"> | ||
8233 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8234 | <context context-type="linenumber">182</context> | ||
8235 | </context-group> | ||
8236 | </trans-unit> | ||
8237 | <trans-unit id="7858676566953242358" datatype="html"> | ||
8238 | <source>Sample rate</source> | ||
8239 | <context-group purpose="location"> | ||
8240 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8241 | <context context-type="linenumber">186</context> | ||
8242 | </context-group> | ||
8243 | </trans-unit> | ||
8244 | <trans-unit id="5403856660543890284" datatype="html"> | ||
8245 | <source>Channel Layout</source> | ||
8246 | <context-group purpose="location"> | ||
8247 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | ||
8248 | <context context-type="linenumber">187</context> | ||
8249 | </context-group> | ||
8250 | </trans-unit> | ||
8251 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | ||
8252 | <source>Download</source> | ||
8253 | <context-group purpose="location"> | ||
8254 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8255 | <context context-type="linenumber">4</context> | ||
8256 | </context-group> | ||
8257 | <context-group purpose="location"> | ||
8258 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8259 | <context context-type="linenumber">104</context> | ||
8260 | </context-group> | ||
8261 | </trans-unit> | ||
8262 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> | ||
8263 | <source>subtitles</source> | ||
8264 | <context-group purpose="location"> | 7960 | <context-group purpose="location"> |
8265 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 7961 | <context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context> |
8266 | <context context-type="linenumber">11</context> | 7962 | <context context-type="linenumber">11</context> |
8267 | </context-group> | 7963 | </context-group> |
8268 | </trans-unit> | 7964 | </trans-unit> |
8269 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> | 7965 | <trans-unit id="4668975178372693951" datatype="html"> |
8270 | <source>video</source> | 7966 | <source>Discover videos</source> |
8271 | <context-group purpose="location"> | ||
8272 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8273 | <context context-type="linenumber">12</context> | ||
8274 | </context-group> | ||
8275 | </trans-unit> | ||
8276 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> | ||
8277 | <source>Format</source> | ||
8278 | <context-group purpose="location"> | ||
8279 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8280 | <context context-type="linenumber">45</context> | ||
8281 | </context-group> | ||
8282 | </trans-unit> | ||
8283 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> | ||
8284 | <source>Video stream</source> | ||
8285 | <context-group purpose="location"> | ||
8286 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8287 | <context context-type="linenumber">57</context> | ||
8288 | </context-group> | ||
8289 | </trans-unit> | ||
8290 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> | ||
8291 | <source>Audio stream</source> | ||
8292 | <context-group purpose="location"> | ||
8293 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8294 | <context context-type="linenumber">69</context> | ||
8295 | </context-group> | ||
8296 | </trans-unit> | ||
8297 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> | ||
8298 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/></source> | ||
8299 | <context-group purpose="location"> | ||
8300 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8301 | <context context-type="linenumber">49</context> | ||
8302 | </context-group> | ||
8303 | <context-group purpose="location"> | ||
8304 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8305 | <context context-type="linenumber">61</context> | ||
8306 | </context-group> | ||
8307 | <context-group purpose="location"> | ||
8308 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8309 | <context context-type="linenumber">73</context> | ||
8310 | </context-group> | ||
8311 | </trans-unit> | ||
8312 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c" datatype="html"> | ||
8313 | <source>Direct download</source> | ||
8314 | <context-group purpose="location"> | ||
8315 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | ||
8316 | <context context-type="linenumber">87</context> | ||
8317 | </context-group> | ||
8318 | </trans-unit> | ||
8319 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d" datatype="html"> | ||
8320 | <source>Torrent (.torrent file)</source> | ||
8321 | <context-group purpose="location"> | 7967 | <context-group purpose="location"> |
8322 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 7968 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8323 | <context context-type="linenumber">92</context> | 7969 | <context context-type="linenumber">23</context> |
8324 | </context-group> | 7970 | </context-group> |
8325 | </trans-unit> | 7971 | </trans-unit> |
8326 | <trans-unit id="77907918814566205" datatype="html"> | 7972 | <trans-unit id="8067135025051844577" datatype="html"> |
8327 | <source>New video from your subscriptions</source> | 7973 | <source>Trending videos</source> |
8328 | <context-group purpose="location"> | 7974 | <context-group purpose="location"> |
8329 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 7975 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8330 | <context context-type="linenumber">32</context> | 7976 | <context context-type="linenumber">32</context> |
8331 | </context-group> | 7977 | </context-group> |
8332 | </trans-unit> | 7978 | </trans-unit> |
8333 | <trans-unit id="4343589211916204486" datatype="html"> | 7979 | <trans-unit id="8177374861384376651" datatype="html"> |
8334 | <source>New comment on your video</source> | 7980 | <source>Most liked videos</source> |
8335 | <context-group purpose="location"> | ||
8336 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | ||
8337 | <context context-type="linenumber">33</context> | ||
8338 | </context-group> | ||
8339 | </trans-unit> | ||
8340 | <trans-unit id="7130088765428829942" datatype="html"> | ||
8341 | <source>New abuse</source> | ||
8342 | <context-group purpose="location"> | 7981 | <context-group purpose="location"> |
8343 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 7982 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8344 | <context context-type="linenumber">34</context> | 7983 | <context context-type="linenumber">45</context> |
8345 | </context-group> | 7984 | </context-group> |
8346 | </trans-unit> | ||
8347 | <trans-unit id="2265829846010085268" datatype="html"> | ||
8348 | <source>Video blocked automatically waiting review</source> | ||
8349 | <context-group purpose="location"> | 7985 | <context-group purpose="location"> |
8350 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 7986 | <context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context> |
8351 | <context context-type="linenumber">35</context> | 7987 | <context context-type="linenumber">41</context> |
8352 | </context-group> | 7988 | </context-group> |
8353 | </trans-unit> | 7989 | </trans-unit> |
8354 | <trans-unit id="5671547068905553663" datatype="html"> | 7990 | <trans-unit id="664221386829541948" datatype="html"> |
8355 | <source>One of your video is blocked/unblocked</source> | 7991 | <source>Recently added videos</source> |
8356 | <context-group purpose="location"> | 7992 | <context-group purpose="location"> |
8357 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 7993 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8358 | <context context-type="linenumber">36</context> | 7994 | <context context-type="linenumber">58</context> |
8359 | </context-group> | 7995 | </context-group> |
8360 | </trans-unit> | 7996 | </trans-unit> |
8361 | <trans-unit id="1158912204255103651" datatype="html"> | 7997 | <trans-unit id="8681933925782924101" datatype="html"> |
8362 | <source>Video published (after transcoding/scheduled update)</source> | 7998 | <source>Local videos</source> |
8363 | <context-group purpose="location"> | 7999 | <context-group purpose="location"> |
8364 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8000 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8365 | <context context-type="linenumber">37</context> | 8001 | <context context-type="linenumber">84</context> |
8366 | </context-group> | 8002 | </context-group> |
8367 | </trans-unit> | ||
8368 | <trans-unit id="3809414664640924954" datatype="html"> | ||
8369 | <source>Video import finished</source> | ||
8370 | <context-group purpose="location"> | 8003 | <context-group purpose="location"> |
8371 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8004 | <context context-type="sourcefile">src/app/+videos/video-list/video-local.component.ts</context> |
8372 | <context context-type="linenumber">38</context> | 8005 | <context context-type="linenumber">36</context> |
8373 | </context-group> | 8006 | </context-group> |
8374 | </trans-unit> | 8007 | </trans-unit> |
8375 | <trans-unit id="3268838889659873892" datatype="html"> | 8008 | <trans-unit id="8212906256415538361" datatype="html"> |
8376 | <source>A new user registered on your instance</source> | 8009 | <source>Upload a video</source> |
8377 | <context-group purpose="location"> | 8010 | <context-group purpose="location"> |
8378 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8011 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8379 | <context context-type="linenumber">39</context> | 8012 | <context context-type="linenumber">97</context> |
8380 | </context-group> | 8013 | </context-group> |
8381 | </trans-unit> | 8014 | </trans-unit> |
8382 | <trans-unit id="7373104725413001009" datatype="html"> | 8015 | <trans-unit id="7590784934397800835" datatype="html"> |
8383 | <source>You or your channel(s) has a new follower</source> | 8016 | <source>Edit a video</source> |
8384 | <context-group purpose="location"> | 8017 | <context-group purpose="location"> |
8385 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8018 | <context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context> |
8386 | <context context-type="linenumber">40</context> | 8019 | <context context-type="linenumber">106</context> |
8387 | </context-group> | 8020 | </context-group> |
8388 | </trans-unit> | 8021 | </trans-unit> |
8389 | <trans-unit id="5315689532659759332" datatype="html"> | 8022 | <trans-unit id="12646164819555880" datatype="html"> |
8390 | <source>Someone mentioned you in video comments</source> | 8023 | <source>Videos from your subscriptions</source> |
8391 | <context-group purpose="location"> | 8024 | <context-group purpose="location"> |
8392 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8025 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> |
8393 | <context context-type="linenumber">41</context> | 8026 | <context context-type="linenumber">41</context> |
8394 | </context-group> | 8027 | </context-group> |
8395 | </trans-unit> | 8028 | </trans-unit> |
8396 | <trans-unit id="2018794201569157817" datatype="html"> | 8029 | <trans-unit id="642534594356440342" datatype="html"> |
8397 | <source>Your instance has a new follower</source> | 8030 | <source>Feed</source> |
8398 | <context-group purpose="location"> | ||
8399 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | ||
8400 | <context context-type="linenumber">42</context> | ||
8401 | </context-group> | ||
8402 | </trans-unit> | ||
8403 | <trans-unit id="773085434165307906" datatype="html"> | ||
8404 | <source>Your instance automatically followed another instance</source> | ||
8405 | <context-group purpose="location"> | 8031 | <context-group purpose="location"> |
8406 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8032 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> |
8407 | <context context-type="linenumber">43</context> | 8033 | <context context-type="linenumber">68</context> |
8408 | </context-group> | 8034 | </context-group> |
8409 | </trans-unit> | 8035 | </trans-unit> |
8410 | <trans-unit id="900099988467638766" datatype="html"> | 8036 | <trans-unit id="3392372077636861449" datatype="html"> |
8411 | <source>An abuse report received a new message</source> | 8037 | <source>Feed URL copied</source> |
8412 | <context-group purpose="location"> | 8038 | <context-group purpose="location"> |
8413 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8039 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> |
8414 | <context context-type="linenumber">44</context> | 8040 | <context context-type="linenumber">104</context> |
8415 | </context-group> | 8041 | </context-group> |
8416 | </trans-unit> | 8042 | </trans-unit> |
8417 | <trans-unit id="2326816287669585542" datatype="html"> | 8043 | <trans-unit id="3432004930068835151" datatype="html"> |
8418 | <source>One of your abuse reports has been accepted or rejected by moderators</source> | 8044 | <source>Trending for the last 24 hours</source> |
8419 | <context-group purpose="location"> | 8045 | <context-group purpose="location"> |
8420 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8046 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> |
8421 | <context context-type="linenumber">45</context> | 8047 | <context context-type="linenumber">46</context> |
8422 | </context-group> | 8048 | </context-group> |
8423 | </trans-unit> | 8049 | </trans-unit> |
8424 | <trans-unit id="5095562193296630034" datatype="html"> | 8050 | <trans-unit id="6716379522893509803" datatype="html"> |
8425 | <source>Preferences saved</source> | 8051 | <source>Trending videos are those totalizing the greatest number of views during the last 24 hours</source> |
8426 | <context-group purpose="location"> | 8052 | <context-group purpose="location"> |
8427 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8053 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> |
8428 | <context context-type="linenumber">92</context> | 8054 | <context context-type="linenumber">47</context> |
8429 | </context-group> | 8055 | </context-group> |
8430 | </trans-unit> | 8056 | </trans-unit> |
8431 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136" datatype="html"> | 8057 | <trans-unit id="2431286785954354122" datatype="html"> |
8432 | <source>Activities</source> | 8058 | <source>Recently added</source> |
8433 | <context-group purpose="location"> | 8059 | <context-group purpose="location"> |
8434 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> | 8060 | <context context-type="sourcefile">src/app/+videos/video-list/video-recently-added.component.ts</context> |
8435 | <context context-type="linenumber">2</context> | 8061 | <context context-type="linenumber">36</context> |
8436 | </context-group> | 8062 | </context-group> |
8437 | </trans-unit> | 8063 | </trans-unit> |
8438 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355" datatype="html"> | 8064 | <trans-unit id="2494835943815843060" datatype="html"> |
8439 | <source>Web</source> | 8065 | <source>Videos that have the most likes.</source> |
8440 | <context-group purpose="location"> | 8066 | <context-group purpose="location"> |
8441 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> | 8067 | <context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context> |
8442 | <context context-type="linenumber">3</context> | 8068 | <context context-type="linenumber">42</context> |
8443 | </context-group> | 8069 | </context-group> |
8444 | </trans-unit> | 8070 | </trans-unit> |
8445 | <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390" datatype="html"> | 8071 | <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390" datatype="html"> |
@@ -8512,6 +8138,69 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8512 | <context context-type="linenumber">3</context> | 8138 | <context context-type="linenumber">3</context> |
8513 | </context-group> | 8139 | </context-group> |
8514 | </trans-unit> | 8140 | </trans-unit> |
8141 | <trans-unit id="1000468652492651683" datatype="html"> | ||
8142 | <source>Report reason is required.</source> | ||
8143 | <context-group purpose="location"> | ||
8144 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8145 | <context context-type="linenumber">7</context> | ||
8146 | </context-group> | ||
8147 | </trans-unit> | ||
8148 | <trans-unit id="1109780973109145433" datatype="html"> | ||
8149 | <source>Report reason must be at least 2 characters long.</source> | ||
8150 | <context-group purpose="location"> | ||
8151 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8152 | <context context-type="linenumber">8</context> | ||
8153 | </context-group> | ||
8154 | </trans-unit> | ||
8155 | <trans-unit id="5414573937278525654" datatype="html"> | ||
8156 | <source>Report reason cannot be more than 3000 characters long.</source> | ||
8157 | <context-group purpose="location"> | ||
8158 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8159 | <context context-type="linenumber">9</context> | ||
8160 | </context-group> | ||
8161 | </trans-unit> | ||
8162 | <trans-unit id="8779567454442277762" datatype="html"> | ||
8163 | <source>Moderation comment is required.</source> | ||
8164 | <context-group purpose="location"> | ||
8165 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8166 | <context context-type="linenumber">16</context> | ||
8167 | </context-group> | ||
8168 | </trans-unit> | ||
8169 | <trans-unit id="8954765410376245909" datatype="html"> | ||
8170 | <source>Moderation comment must be at least 2 characters long.</source> | ||
8171 | <context-group purpose="location"> | ||
8172 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8173 | <context context-type="linenumber">17</context> | ||
8174 | </context-group> | ||
8175 | </trans-unit> | ||
8176 | <trans-unit id="6316804467108244906" datatype="html"> | ||
8177 | <source>Moderation comment cannot be more than 3000 characters long.</source> | ||
8178 | <context-group purpose="location"> | ||
8179 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8180 | <context context-type="linenumber">18</context> | ||
8181 | </context-group> | ||
8182 | </trans-unit> | ||
8183 | <trans-unit id="8835075531528610034" datatype="html"> | ||
8184 | <source>Abuse message is required.</source> | ||
8185 | <context-group purpose="location"> | ||
8186 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8187 | <context context-type="linenumber">25</context> | ||
8188 | </context-group> | ||
8189 | </trans-unit> | ||
8190 | <trans-unit id="9034042966936514516" datatype="html"> | ||
8191 | <source>Abuse message must be at least 2 characters long.</source> | ||
8192 | <context-group purpose="location"> | ||
8193 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8194 | <context context-type="linenumber">26</context> | ||
8195 | </context-group> | ||
8196 | </trans-unit> | ||
8197 | <trans-unit id="7989186574443390119" datatype="html"> | ||
8198 | <source>Abuse message cannot be more than 3000 characters long.</source> | ||
8199 | <context-group purpose="location"> | ||
8200 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | ||
8201 | <context context-type="linenumber">27</context> | ||
8202 | </context-group> | ||
8203 | </trans-unit> | ||
8515 | <trans-unit id="1875025899004073421" datatype="html"> | 8204 | <trans-unit id="1875025899004073421" datatype="html"> |
8516 | <source>Settings updated.</source> | 8205 | <source>Settings updated.</source> |
8517 | <context-group purpose="location"> | 8206 | <context-group purpose="location"> |
@@ -8669,277 +8358,400 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8669 | <context context-type="linenumber">32</context> | 8358 | <context context-type="linenumber">32</context> |
8670 | </context-group> | 8359 | </context-group> |
8671 | </trans-unit> | 8360 | </trans-unit> |
8672 | <trans-unit id="2740793005745065895" datatype="html"> | 8361 | <trans-unit id="1250415136605923486" datatype="html"> |
8673 | <source><x id="PH" equiv-text="host"/> is not valid</source> | 8362 | <source>Do you really want to delete this abuse report?</source> |
8674 | <context-group purpose="location"> | 8363 | <context-group purpose="location"> |
8675 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | 8364 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8676 | <context context-type="linenumber">19</context> | 8365 | <context context-type="linenumber">129</context> |
8677 | </context-group> | 8366 | </context-group> |
8678 | </trans-unit> | 8367 | </trans-unit> |
8679 | <trans-unit id="2127446333083057097" datatype="html"> | 8368 | <trans-unit id="3482559157143817408" datatype="html"> |
8680 | <source>Domain is required.</source> | 8369 | <source>Abuse deleted.</source> |
8681 | <context-group purpose="location"> | 8370 | <context-group purpose="location"> |
8682 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | 8371 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8683 | <context context-type="linenumber">56</context> | 8372 | <context context-type="linenumber">134</context> |
8684 | </context-group> | 8373 | </context-group> |
8685 | </trans-unit> | 8374 | </trans-unit> |
8686 | <trans-unit id="6780793142903080663" datatype="html"> | 8375 | <trans-unit id="6282990098351939529" datatype="html"> |
8687 | <source>Domains entered are invalid.</source> | 8376 | <source>Deleted comment</source> |
8688 | <context-group purpose="location"> | 8377 | <context-group purpose="location"> |
8689 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | 8378 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8690 | <context context-type="linenumber">57</context> | 8379 | <context context-type="linenumber">210</context> |
8691 | </context-group> | 8380 | </context-group> |
8692 | </trans-unit> | 8381 | </trans-unit> |
8693 | <trans-unit id="5886492514458202177" datatype="html"> | 8382 | <trans-unit id="6473213678768782133" datatype="html"> |
8694 | <source>Domains entered contain duplicates.</source> | 8383 | <source>Internal actions</source> |
8695 | <context-group purpose="location"> | 8384 | <context-group purpose="location"> |
8696 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | 8385 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8697 | <context context-type="linenumber">58</context> | 8386 | <context context-type="linenumber">239</context> |
8698 | </context-group> | 8387 | </context-group> |
8699 | </trans-unit> | ||
8700 | <trans-unit id="149121389669248117" datatype="html"> | ||
8701 | <source>Violent or Repulsive</source> | ||
8702 | <context-group purpose="location"> | 8388 | <context-group purpose="location"> |
8703 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | 8389 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> |
8704 | <context context-type="linenumber">21</context> | 8390 | <context context-type="linenumber">43</context> |
8705 | </context-group> | 8391 | </context-group> |
8706 | </trans-unit> | 8392 | </trans-unit> |
8707 | <trans-unit id="2493388551376623687" datatype="html"> | 8393 | <trans-unit id="9196775343330824083" datatype="html"> |
8708 | <source>Hateful or Abusive</source> | 8394 | <source>Messages with reporter</source> |
8709 | <context-group purpose="location"> | 8395 | <context-group purpose="location"> |
8710 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | 8396 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8711 | <context context-type="linenumber">22</context> | 8397 | <context context-type="linenumber">244</context> |
8712 | </context-group> | 8398 | </context-group> |
8713 | </trans-unit> | 8399 | </trans-unit> |
8714 | <trans-unit id="5124757565683866220" datatype="html"> | 8400 | <trans-unit id="8770468575924421391" datatype="html"> |
8715 | <source>Spam or Misleading</source> | 8401 | <source>Messages with moderators</source> |
8716 | <context-group purpose="location"> | 8402 | <context-group purpose="location"> |
8717 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | 8403 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8718 | <context context-type="linenumber">23</context> | 8404 | <context context-type="linenumber">245</context> |
8719 | </context-group> | 8405 | </context-group> |
8720 | </trans-unit> | 8406 | </trans-unit> |
8721 | <trans-unit id="8440128775129354214" datatype="html"> | 8407 | <trans-unit id="8528549800795985099" datatype="html"> |
8722 | <source>Privacy</source> | 8408 | <source>Update internal note</source> |
8723 | <context-group purpose="location"> | 8409 | <context-group purpose="location"> |
8724 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | 8410 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8725 | <context context-type="linenumber">24</context> | 8411 | <context context-type="linenumber">250</context> |
8726 | </context-group> | 8412 | </context-group> |
8727 | </trans-unit> | 8413 | </trans-unit> |
8728 | <trans-unit id="3776575731053010580" datatype="html"> | 8414 | <trans-unit id="1679841953757186358" datatype="html"> |
8729 | <source>Server rules</source> | 8415 | <source>Mark as accepted</source> |
8730 | <context-group purpose="location"> | 8416 | <context-group purpose="location"> |
8731 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | 8417 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8732 | <context context-type="linenumber">26</context> | 8418 | <context context-type="linenumber">255</context> |
8733 | </context-group> | 8419 | </context-group> |
8734 | </trans-unit> | 8420 | </trans-unit> |
8735 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> | 8421 | <trans-unit id="7993358694073742566" datatype="html"> |
8736 | <source>Report</source> | 8422 | <source>Mark as rejected</source> |
8737 | <context-group purpose="location"> | 8423 | <context-group purpose="location"> |
8738 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8424 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8739 | <context context-type="linenumber">65</context> | 8425 | <context context-type="linenumber">260</context> |
8740 | </context-group> | 8426 | </context-group> |
8741 | </trans-unit> | 8427 | </trans-unit> |
8742 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> | 8428 | <trans-unit id="4175703770051343108" datatype="html"> |
8743 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 8429 | <source>Add internal note</source> |
8744 | <context-group purpose="location"> | 8430 | <context-group purpose="location"> |
8745 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8431 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8746 | <context context-type="linenumber">27</context> | 8432 | <context context-type="linenumber">265</context> |
8747 | </context-group> | 8433 | </context-group> |
8748 | </trans-unit> | 8434 | </trans-unit> |
8749 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> | 8435 | <trans-unit id="4559872264406386913" datatype="html"> |
8750 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 8436 | <source>Delete report</source> |
8751 | <context-group purpose="location"> | 8437 | <context-group purpose="location"> |
8752 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8438 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8753 | <context context-type="linenumber">27</context> | 8439 | <context context-type="linenumber">270</context> |
8754 | </context-group> | 8440 | </context-group> |
8755 | </trans-unit> | 8441 | </trans-unit> |
8756 | <trans-unit id="4dbabcc6e79125d4b798ba8139a40202db712475" datatype="html"> | 8442 | <trans-unit id="5793550984155962433" datatype="html"> |
8757 | <source>Reportee</source> | 8443 | <source>Actions for the flagged account</source> |
8758 | <context-group purpose="location"> | 8444 | <context-group purpose="location"> |
8759 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8445 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8760 | <context context-type="linenumber">33</context> | 8446 | <context context-type="linenumber">281</context> |
8761 | </context-group> | 8447 | </context-group> |
8762 | </trans-unit> | 8448 | </trans-unit> |
8763 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> | 8449 | <trans-unit id="3719503424625455635" datatype="html"> |
8764 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 8450 | <source>Mute server account</source> |
8765 | <context-group purpose="location"> | 8451 | <context-group purpose="location"> |
8766 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8452 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8767 | <context context-type="linenumber">52</context> | 8453 | <context context-type="linenumber">293</context> |
8768 | </context-group> | 8454 | </context-group> |
8769 | </trans-unit> | 8455 | </trans-unit> |
8770 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> | 8456 | <trans-unit id="5072091387445907742" datatype="html"> |
8771 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 8457 | <source>Actions for the reporter</source> |
8772 | <context-group purpose="location"> | 8458 | <context-group purpose="location"> |
8773 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8459 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8774 | <context context-type="linenumber">52</context> | 8460 | <context context-type="linenumber">305</context> |
8775 | </context-group> | 8461 | </context-group> |
8776 | </trans-unit> | 8462 | </trans-unit> |
8777 | <trans-unit id="9da0107a35751e722c8b4bca7636fc7645dbdbdc" datatype="html"> | 8463 | <trans-unit id="6599069899275412095" datatype="html"> |
8778 | <source>Updated</source> | 8464 | <source>Mute reporter</source> |
8779 | <context-group purpose="location"> | 8465 | <context-group purpose="location"> |
8780 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8466 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8781 | <context context-type="linenumber">58</context> | 8467 | <context context-type="linenumber">311</context> |
8782 | </context-group> | 8468 | </context-group> |
8783 | </trans-unit> | 8469 | </trans-unit> |
8784 | <trans-unit id="08a52c67462389568cf14a021ddecc0aedaa9613" datatype="html"> | 8470 | <trans-unit id="1595779426198793580" datatype="html"> |
8785 | <source>Reported part</source> | 8471 | <source>Mute server</source> |
8786 | <context-group purpose="location"> | 8472 | <context-group purpose="location"> |
8787 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8473 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8788 | <context context-type="linenumber">83</context> | 8474 | <context context-type="linenumber">317</context> |
8789 | </context-group> | 8475 | </context-group> |
8790 | </trans-unit> | 8476 | </trans-unit> |
8791 | <trans-unit id="5c54befce78d70e20c215f10a00e617245f53bc9" datatype="html"> | 8477 | <trans-unit id="296166371893775555" datatype="html"> |
8792 | <source>Note</source> | 8478 | <source>Actions for the video</source> |
8793 | <context-group purpose="location"> | 8479 | <context-group purpose="location"> |
8794 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8480 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8795 | <context context-type="linenumber">90</context> | 8481 | <context context-type="linenumber">329</context> |
8482 | </context-group> | ||
8483 | <context-group purpose="location"> | ||
8484 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
8485 | <context context-type="linenumber">66</context> | ||
8796 | </context-group> | 8486 | </context-group> |
8797 | </trans-unit> | 8487 | </trans-unit> |
8798 | <trans-unit id="1d3402b0e60154aaa071f390c63437b701d9048c" datatype="html"> | 8488 | <trans-unit id="3924877328520650445" datatype="html"> |
8799 | <source>The video was deleted</source> | 8489 | <source>Block video</source> |
8800 | <context-group purpose="location"> | 8490 | <context-group purpose="location"> |
8801 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8491 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8802 | <context context-type="linenumber">99</context> | 8492 | <context context-type="linenumber">334</context> |
8803 | </context-group> | 8493 | </context-group> |
8804 | </trans-unit> | 8494 | </trans-unit> |
8805 | <trans-unit id="96e41129ef5d2fa12b7a6ffcab608e9af04d8cbd" datatype="html"> | 8495 | <trans-unit id="4328862996304258770" datatype="html"> |
8806 | <source>Comment:</source> | 8496 | <source>Unblock video</source> |
8807 | <context-group purpose="location"> | 8497 | <context-group purpose="location"> |
8808 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 8498 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8809 | <context context-type="linenumber">105</context> | 8499 | <context context-type="linenumber">350</context> |
8810 | </context-group> | 8500 | </context-group> |
8811 | </trans-unit> | 8501 | </trans-unit> |
8812 | <trans-unit id="2393853062458645999" datatype="html"> | 8502 | <trans-unit id="9065327551191479877" datatype="html"> |
8813 | <source>Comment updated.</source> | 8503 | <source>Video unblocked.</source> |
8814 | <context-group purpose="location"> | 8504 | <context-group purpose="location"> |
8815 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context> | 8505 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8816 | <context context-type="linenumber">58</context> | 8506 | <context context-type="linenumber">356</context> |
8817 | </context-group> | 8507 | </context-group> |
8818 | </trans-unit> | 8508 | </trans-unit> |
8819 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f" datatype="html"> | 8509 | <trans-unit id="2909684945706361544" datatype="html"> |
8820 | <source>Moderation comment</source> | 8510 | <source>Delete video</source> |
8821 | <context-group purpose="location"> | 8511 | <context-group purpose="location"> |
8822 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | 8512 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8823 | <context context-type="linenumber">3</context> | 8513 | <context context-type="linenumber">366</context> |
8824 | </context-group> | 8514 | </context-group> |
8825 | </trans-unit> | 8515 | </trans-unit> |
8826 | <trans-unit id="5731e5d5ac989bf08848b5a57a5586cf84d80964" datatype="html"> | 8516 | <trans-unit id="3941342949736653028" datatype="html"> |
8827 | <source> This comment can only be seen by you or the other moderators. </source> | 8517 | <source>Video deleted.</source> |
8828 | <context-group purpose="location"> | 8518 | <context-group purpose="location"> |
8829 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | 8519 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8830 | <context context-type="linenumber">21,22</context> | 8520 | <context context-type="linenumber">378</context> |
8521 | </context-group> | ||
8522 | <context-group purpose="location"> | ||
8523 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
8524 | <context context-type="linenumber">86</context> | ||
8831 | </context-group> | 8525 | </context-group> |
8832 | </trans-unit> | 8526 | </trans-unit> |
8833 | <trans-unit id="0562e455c88234829f3c27a38f3039f027bfd5d2" datatype="html"> | 8527 | <trans-unit id="2210418817778733727" datatype="html"> |
8834 | <source>Update this comment</source> | 8528 | <source>Actions for the comment</source> |
8835 | <context-group purpose="location"> | 8529 | <context-group purpose="location"> |
8836 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | 8530 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8837 | <context context-type="linenumber">31</context> | 8531 | <context context-type="linenumber">395</context> |
8838 | </context-group> | 8532 | </context-group> |
8839 | </trans-unit> | 8533 | </trans-unit> |
8840 | <trans-unit id="2044813052587776285" datatype="html"> | 8534 | <trans-unit id="7978668497183230348" datatype="html"> |
8841 | <source>Add a message to communicate with the reporter</source> | 8535 | <source>Delete comment</source> |
8842 | <context-group purpose="location"> | 8536 | <context-group purpose="location"> |
8843 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> | 8537 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8844 | <context context-type="linenumber">100</context> | 8538 | <context context-type="linenumber">401</context> |
8845 | </context-group> | 8539 | </context-group> |
8846 | </trans-unit> | 8540 | </trans-unit> |
8847 | <trans-unit id="4117663541503607703" datatype="html"> | 8541 | <trans-unit id="6747218355168080191" datatype="html"> |
8848 | <source>Add a message to communicate with the moderation team</source> | 8542 | <source>Do you really want to delete this comment?</source> |
8849 | <context-group purpose="location"> | 8543 | <context-group purpose="location"> |
8850 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> | 8544 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8851 | <context context-type="linenumber">103</context> | 8545 | <context context-type="linenumber">405</context> |
8546 | </context-group> | ||
8547 | <context-group purpose="location"> | ||
8548 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
8549 | <context context-type="linenumber">166</context> | ||
8852 | </context-group> | 8550 | </context-group> |
8853 | </trans-unit> | 8551 | </trans-unit> |
8854 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> | 8552 | <trans-unit id="7837272126865175984" datatype="html"> |
8855 | <source>Add a message</source> | 8553 | <source>Comment deleted.</source> |
8856 | <context-group purpose="location"> | 8554 | <context-group purpose="location"> |
8857 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | 8555 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8858 | <context context-type="linenumber">44</context> | 8556 | <context context-type="linenumber">413</context> |
8859 | </context-group> | 8557 | </context-group> |
8860 | </trans-unit> | 8558 | </trans-unit> |
8861 | <trans-unit id="91e073459fc31b0fc1f6384aa9ad816f9f796de8" datatype="html"> | 8559 | <trans-unit id="8014491157078444256" datatype="html"> |
8862 | <source>Messages with the reporter</source> | 8560 | <source>Server <x id="PH" equiv-text="host"/> muted by the instance.</source> |
8863 | <context-group purpose="location"> | 8561 | <context-group purpose="location"> |
8864 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | 8562 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context> |
8865 | <context context-type="linenumber">4</context> | 8563 | <context context-type="linenumber">441</context> |
8866 | </context-group> | 8564 | </context-group> |
8867 | </trans-unit> | 8565 | </trans-unit> |
8868 | <trans-unit id="f0327abdde923ab7f56cf036a5bf6bc2546126c0" datatype="html"> | 8566 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> |
8869 | <source>Messages with the moderation team</source> | 8567 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> reports</source> |
8870 | <context-group purpose="location"> | 8568 | <context-group purpose="location"> |
8871 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | 8569 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8872 | <context context-type="linenumber">5</context> | 8570 | <context context-type="linenumber">5</context> |
8873 | </context-group> | 8571 | </context-group> |
8874 | </trans-unit> | 8572 | </trans-unit> |
8875 | <trans-unit id="158f56a96d95d4ddcfe506aca64f754d01fa11b6" datatype="html"> | 8573 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> |
8876 | <source> No messages for now. </source> | 8574 | <source>Advanced report filters</source> |
8877 | <context-group purpose="location"> | 8575 | <context-group purpose="location"> |
8878 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | 8576 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8879 | <context context-type="linenumber">28,29</context> | 8577 | <context context-type="linenumber">18</context> |
8880 | </context-group> | 8578 | </context-group> |
8881 | </trans-unit> | 8579 | </trans-unit> |
8882 | <trans-unit id="1000468652492651683" datatype="html"> | 8580 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> |
8883 | <source>Report reason is required.</source> | 8581 | <source>Unsolved reports</source> |
8884 | <context-group purpose="location"> | 8582 | <context-group purpose="location"> |
8885 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8583 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8584 | <context context-type="linenumber">19</context> | ||
8585 | </context-group> | ||
8586 | </trans-unit> | ||
8587 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> | ||
8588 | <source>Accepted reports</source> | ||
8589 | <context-group purpose="location"> | ||
8590 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8591 | <context context-type="linenumber">20</context> | ||
8592 | </context-group> | ||
8593 | </trans-unit> | ||
8594 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> | ||
8595 | <source>Refused reports</source> | ||
8596 | <context-group purpose="location"> | ||
8597 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8598 | <context context-type="linenumber">21</context> | ||
8599 | </context-group> | ||
8600 | </trans-unit> | ||
8601 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> | ||
8602 | <source>Reports with blocked videos</source> | ||
8603 | <context-group purpose="location"> | ||
8604 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8605 | <context context-type="linenumber">22</context> | ||
8606 | </context-group> | ||
8607 | </trans-unit> | ||
8608 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> | ||
8609 | <source>Reports with deleted videos</source> | ||
8610 | <context-group purpose="location"> | ||
8611 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8612 | <context context-type="linenumber">23</context> | ||
8613 | </context-group> | ||
8614 | </trans-unit> | ||
8615 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> | ||
8616 | <source>Video/Comment/Account</source> | ||
8617 | <context-group purpose="location"> | ||
8618 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8619 | <context context-type="linenumber">42</context> | ||
8620 | </context-group> | ||
8621 | </trans-unit> | ||
8622 | <trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9" datatype="html"> | ||
8623 | <source>State <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="state">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
8624 | <context-group purpose="location"> | ||
8625 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8626 | <context context-type="linenumber">44</context> | ||
8627 | </context-group> | ||
8628 | <context-group purpose="location"> | ||
8629 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | ||
8630 | <context context-type="linenumber">33</context> | ||
8631 | </context-group> | ||
8632 | <context-group purpose="location"> | ||
8633 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | ||
8634 | <context context-type="linenumber">29</context> | ||
8635 | </context-group> | ||
8636 | </trans-unit> | ||
8637 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> | ||
8638 | <source>Messages</source> | ||
8639 | <context-group purpose="location"> | ||
8640 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8641 | <context context-type="linenumber">45</context> | ||
8642 | </context-group> | ||
8643 | </trans-unit> | ||
8644 | <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2" datatype="html"> | ||
8645 | <source>Reporter</source> | ||
8646 | <context-group purpose="location"> | ||
8647 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8648 | <context context-type="linenumber">41</context> | ||
8649 | </context-group> | ||
8650 | <context-group purpose="location"> | ||
8651 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
8886 | <context context-type="linenumber">7</context> | 8652 | <context context-type="linenumber">7</context> |
8887 | </context-group> | 8653 | </context-group> |
8888 | </trans-unit> | 8654 | </trans-unit> |
8889 | <trans-unit id="1109780973109145433" datatype="html"> | 8655 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> |
8890 | <source>Report reason must be at least 2 characters long.</source> | 8656 | <source>Internal note</source> |
8891 | <context-group purpose="location"> | 8657 | <context-group purpose="location"> |
8892 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8658 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8893 | <context context-type="linenumber">8</context> | 8659 | <context context-type="linenumber">46</context> |
8894 | </context-group> | 8660 | </context-group> |
8895 | </trans-unit> | 8661 | </trans-unit> |
8896 | <trans-unit id="5414573937278525654" datatype="html"> | 8662 | <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e" datatype="html"> |
8897 | <source>Report reason cannot be more than 3000 characters long.</source> | 8663 | <source>More information</source> |
8898 | <context-group purpose="location"> | 8664 | <context-group purpose="location"> |
8899 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8665 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8900 | <context context-type="linenumber">9</context> | 8666 | <context context-type="linenumber">52</context> |
8667 | </context-group> | ||
8668 | <context-group purpose="location"> | ||
8669 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | ||
8670 | <context context-type="linenumber">46</context> | ||
8671 | </context-group> | ||
8672 | <context-group purpose="location"> | ||
8673 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
8674 | <context context-type="linenumber">73</context> | ||
8675 | </context-group> | ||
8676 | <context-group purpose="location"> | ||
8677 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context> | ||
8678 | <context context-type="linenumber">312</context> | ||
8679 | </context-group> | ||
8680 | <context-group purpose="location"> | ||
8681 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
8682 | <context context-type="linenumber">53</context> | ||
8683 | </context-group> | ||
8684 | <context-group purpose="location"> | ||
8685 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
8686 | <context context-type="linenumber">53</context> | ||
8901 | </context-group> | 8687 | </context-group> |
8902 | </trans-unit> | 8688 | </trans-unit> |
8903 | <trans-unit id="8779567454442277762" datatype="html"> | 8689 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> |
8904 | <source>Moderation comment is required.</source> | 8690 | <source> Deleted account </source> |
8905 | <context-group purpose="location"> | 8691 | <context-group purpose="location"> |
8906 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8692 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8907 | <context context-type="linenumber">16</context> | 8693 | <context context-type="linenumber">82,83</context> |
8908 | </context-group> | 8694 | </context-group> |
8909 | </trans-unit> | 8695 | </trans-unit> |
8910 | <trans-unit id="8954765410376245909" datatype="html"> | 8696 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> |
8911 | <source>Moderation comment must be at least 2 characters long.</source> | 8697 | <source>This video has been reported multiple times.</source> |
8912 | <context-group purpose="location"> | 8698 | <context-group purpose="location"> |
8913 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8699 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8914 | <context context-type="linenumber">17</context> | 8700 | <context context-type="linenumber">95</context> |
8701 | </context-group> | ||
8702 | <context-group purpose="location"> | ||
8703 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8704 | <context context-type="linenumber">95</context> | ||
8915 | </context-group> | 8705 | </context-group> |
8916 | </trans-unit> | 8706 | </trans-unit> |
8917 | <trans-unit id="6316804467108244906" datatype="html"> | 8707 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> |
8918 | <source>Moderation comment cannot be more than 3000 characters long.</source> | 8708 | <source>The video was blocked</source> |
8919 | <context-group purpose="location"> | 8709 | <context-group purpose="location"> |
8920 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8710 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8921 | <context context-type="linenumber">18</context> | 8711 | <context context-type="linenumber">104</context> |
8712 | </context-group> | ||
8713 | <context-group purpose="location"> | ||
8714 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8715 | <context context-type="linenumber">104</context> | ||
8922 | </context-group> | 8716 | </context-group> |
8923 | </trans-unit> | 8717 | </trans-unit> |
8924 | <trans-unit id="8835075531528610034" datatype="html"> | 8718 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> |
8925 | <source>Abuse message is required.</source> | 8719 | <source>by <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> </source> |
8926 | <context-group purpose="location"> | 8720 | <context-group purpose="location"> |
8927 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8721 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8928 | <context context-type="linenumber">25</context> | 8722 | <context context-type="linenumber">107</context> |
8723 | </context-group> | ||
8724 | <context-group purpose="location"> | ||
8725 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8726 | <context context-type="linenumber">124</context> | ||
8929 | </context-group> | 8727 | </context-group> |
8930 | </trans-unit> | 8728 | </trans-unit> |
8931 | <trans-unit id="9034042966936514516" datatype="html"> | 8729 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> |
8932 | <source>Abuse message must be at least 2 characters long.</source> | 8730 | <source>Video was deleted</source> |
8933 | <context-group purpose="location"> | 8731 | <context-group purpose="location"> |
8934 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8732 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8935 | <context context-type="linenumber">26</context> | 8733 | <context context-type="linenumber">114</context> |
8936 | </context-group> | 8734 | </context-group> |
8937 | </trans-unit> | 8735 | </trans-unit> |
8938 | <trans-unit id="7989186574443390119" datatype="html"> | 8736 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> |
8939 | <source>Abuse message cannot be more than 3000 characters long.</source> | 8737 | <source> Account deleted </source> |
8940 | <context-group purpose="location"> | 8738 | <context-group purpose="location"> |
8941 | <context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context> | 8739 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> |
8942 | <context context-type="linenumber">27</context> | 8740 | <context context-type="linenumber">150,151</context> |
8741 | </context-group> | ||
8742 | </trans-unit> | ||
8743 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> | ||
8744 | <source>No abuses found matching current filters.</source> | ||
8745 | <context-group purpose="location"> | ||
8746 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8747 | <context context-type="linenumber">188</context> | ||
8748 | </context-group> | ||
8749 | </trans-unit> | ||
8750 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> | ||
8751 | <source>No abuses found.</source> | ||
8752 | <context-group purpose="location"> | ||
8753 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
8754 | <context context-type="linenumber">189</context> | ||
8943 | </context-group> | 8755 | </context-group> |
8944 | </trans-unit> | 8756 | </trans-unit> |
8945 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> | 8757 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> |
@@ -9077,27 +8889,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
9077 | <context context-type="linenumber">41</context> | 8889 | <context context-type="linenumber">41</context> |
9078 | </context-group> | 8890 | </context-group> |
9079 | </trans-unit> | 8891 | </trans-unit> |
9080 | <trans-unit id="3371601176452094961" datatype="html"> | ||
9081 | <source>Instance <x id="PH" equiv-text="host"/> unmuted by your instance.</source> | ||
9082 | <context-group purpose="location"> | ||
9083 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context> | ||
9084 | <context context-type="linenumber">46</context> | ||
9085 | </context-group> | ||
9086 | </trans-unit> | ||
9087 | <trans-unit id="3096398988891996621" datatype="html"> | ||
9088 | <source>Instance <x id="PH" equiv-text="domain"/> muted by your instance.</source> | ||
9089 | <context-group purpose="location"> | ||
9090 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context> | ||
9091 | <context context-type="linenumber">69</context> | ||
9092 | </context-group> | ||
9093 | </trans-unit> | ||
9094 | <trans-unit id="8639315630141911544" datatype="html"> | ||
9095 | <source>Account <x id="PH" equiv-text="blockedAccount.nameWithHost"/> unmuted by your instance.</source> | ||
9096 | <context-group purpose="location"> | ||
9097 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context> | ||
9098 | <context context-type="linenumber">48</context> | ||
9099 | </context-group> | ||
9100 | </trans-unit> | ||
9101 | <trans-unit id="8564701209009684429" datatype="html"> | 8892 | <trans-unit id="8564701209009684429" datatype="html"> |
9102 | <source>Federation</source> | 8893 | <source>Federation</source> |
9103 | <context-group purpose="location"> | 8894 | <context-group purpose="location"> |
@@ -9183,6 +8974,27 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
9183 | <context context-type="linenumber">103</context> | 8974 | <context context-type="linenumber">103</context> |
9184 | </context-group> | 8975 | </context-group> |
9185 | </trans-unit> | 8976 | </trans-unit> |
8977 | <trans-unit id="3371601176452094961" datatype="html"> | ||
8978 | <source>Instance <x id="PH" equiv-text="host"/> unmuted by your instance.</source> | ||
8979 | <context-group purpose="location"> | ||
8980 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context> | ||
8981 | <context context-type="linenumber">46</context> | ||
8982 | </context-group> | ||
8983 | </trans-unit> | ||
8984 | <trans-unit id="3096398988891996621" datatype="html"> | ||
8985 | <source>Instance <x id="PH" equiv-text="domain"/> muted by your instance.</source> | ||
8986 | <context-group purpose="location"> | ||
8987 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context> | ||
8988 | <context context-type="linenumber">69</context> | ||
8989 | </context-group> | ||
8990 | </trans-unit> | ||
8991 | <trans-unit id="8639315630141911544" datatype="html"> | ||
8992 | <source>Account <x id="PH" equiv-text="blockedAccount.nameWithHost"/> unmuted by your instance.</source> | ||
8993 | <context-group purpose="location"> | ||
8994 | <context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context> | ||
8995 | <context context-type="linenumber">48</context> | ||
8996 | </context-group> | ||
8997 | </trans-unit> | ||
9186 | <trans-unit id="2593763089859685916" datatype="html"> | 8998 | <trans-unit id="2593763089859685916" datatype="html"> |
9187 | <source>enabled</source> | 8999 | <source>enabled</source> |
9188 | <context-group purpose="location"> | 9000 | <context-group purpose="location"> |
@@ -9317,6 +9129,216 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
9317 | <context context-type="linenumber">82,83</context> | 9129 | <context context-type="linenumber">82,83</context> |
9318 | </context-group> | 9130 | </context-group> |
9319 | </trans-unit> | 9131 | </trans-unit> |
9132 | <trans-unit id="2740793005745065895" datatype="html"> | ||
9133 | <source><x id="PH" equiv-text="host"/> is not valid</source> | ||
9134 | <context-group purpose="location"> | ||
9135 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | ||
9136 | <context context-type="linenumber">19</context> | ||
9137 | </context-group> | ||
9138 | </trans-unit> | ||
9139 | <trans-unit id="2127446333083057097" datatype="html"> | ||
9140 | <source>Domain is required.</source> | ||
9141 | <context-group purpose="location"> | ||
9142 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | ||
9143 | <context context-type="linenumber">56</context> | ||
9144 | </context-group> | ||
9145 | </trans-unit> | ||
9146 | <trans-unit id="6780793142903080663" datatype="html"> | ||
9147 | <source>Domains entered are invalid.</source> | ||
9148 | <context-group purpose="location"> | ||
9149 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | ||
9150 | <context context-type="linenumber">57</context> | ||
9151 | </context-group> | ||
9152 | </trans-unit> | ||
9153 | <trans-unit id="5886492514458202177" datatype="html"> | ||
9154 | <source>Domains entered contain duplicates.</source> | ||
9155 | <context-group purpose="location"> | ||
9156 | <context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context> | ||
9157 | <context context-type="linenumber">58</context> | ||
9158 | </context-group> | ||
9159 | </trans-unit> | ||
9160 | <trans-unit id="149121389669248117" datatype="html"> | ||
9161 | <source>Violent or Repulsive</source> | ||
9162 | <context-group purpose="location"> | ||
9163 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
9164 | <context context-type="linenumber">21</context> | ||
9165 | </context-group> | ||
9166 | </trans-unit> | ||
9167 | <trans-unit id="2493388551376623687" datatype="html"> | ||
9168 | <source>Hateful or Abusive</source> | ||
9169 | <context-group purpose="location"> | ||
9170 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
9171 | <context context-type="linenumber">22</context> | ||
9172 | </context-group> | ||
9173 | </trans-unit> | ||
9174 | <trans-unit id="5124757565683866220" datatype="html"> | ||
9175 | <source>Spam or Misleading</source> | ||
9176 | <context-group purpose="location"> | ||
9177 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
9178 | <context context-type="linenumber">23</context> | ||
9179 | </context-group> | ||
9180 | </trans-unit> | ||
9181 | <trans-unit id="8440128775129354214" datatype="html"> | ||
9182 | <source>Privacy</source> | ||
9183 | <context-group purpose="location"> | ||
9184 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
9185 | <context context-type="linenumber">24</context> | ||
9186 | </context-group> | ||
9187 | </trans-unit> | ||
9188 | <trans-unit id="3776575731053010580" datatype="html"> | ||
9189 | <source>Server rules</source> | ||
9190 | <context-group purpose="location"> | ||
9191 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
9192 | <context context-type="linenumber">26</context> | ||
9193 | </context-group> | ||
9194 | </trans-unit> | ||
9195 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> | ||
9196 | <source>Report</source> | ||
9197 | <context-group purpose="location"> | ||
9198 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9199 | <context context-type="linenumber">65</context> | ||
9200 | </context-group> | ||
9201 | </trans-unit> | ||
9202 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> | ||
9203 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | ||
9204 | <context-group purpose="location"> | ||
9205 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9206 | <context context-type="linenumber">27</context> | ||
9207 | </context-group> | ||
9208 | </trans-unit> | ||
9209 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> | ||
9210 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||
9211 | <context-group purpose="location"> | ||
9212 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9213 | <context context-type="linenumber">27</context> | ||
9214 | </context-group> | ||
9215 | </trans-unit> | ||
9216 | <trans-unit id="4dbabcc6e79125d4b798ba8139a40202db712475" datatype="html"> | ||
9217 | <source>Reportee</source> | ||
9218 | <context-group purpose="location"> | ||
9219 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9220 | <context context-type="linenumber">33</context> | ||
9221 | </context-group> | ||
9222 | </trans-unit> | ||
9223 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> | ||
9224 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | ||
9225 | <context-group purpose="location"> | ||
9226 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9227 | <context context-type="linenumber">52</context> | ||
9228 | </context-group> | ||
9229 | </trans-unit> | ||
9230 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> | ||
9231 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||
9232 | <context-group purpose="location"> | ||
9233 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9234 | <context context-type="linenumber">52</context> | ||
9235 | </context-group> | ||
9236 | </trans-unit> | ||
9237 | <trans-unit id="9da0107a35751e722c8b4bca7636fc7645dbdbdc" datatype="html"> | ||
9238 | <source>Updated</source> | ||
9239 | <context-group purpose="location"> | ||
9240 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9241 | <context context-type="linenumber">58</context> | ||
9242 | </context-group> | ||
9243 | </trans-unit> | ||
9244 | <trans-unit id="08a52c67462389568cf14a021ddecc0aedaa9613" datatype="html"> | ||
9245 | <source>Reported part</source> | ||
9246 | <context-group purpose="location"> | ||
9247 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9248 | <context context-type="linenumber">83</context> | ||
9249 | </context-group> | ||
9250 | </trans-unit> | ||
9251 | <trans-unit id="5c54befce78d70e20c215f10a00e617245f53bc9" datatype="html"> | ||
9252 | <source>Note</source> | ||
9253 | <context-group purpose="location"> | ||
9254 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9255 | <context context-type="linenumber">90</context> | ||
9256 | </context-group> | ||
9257 | </trans-unit> | ||
9258 | <trans-unit id="1d3402b0e60154aaa071f390c63437b701d9048c" datatype="html"> | ||
9259 | <source>The video was deleted</source> | ||
9260 | <context-group purpose="location"> | ||
9261 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9262 | <context context-type="linenumber">99</context> | ||
9263 | </context-group> | ||
9264 | </trans-unit> | ||
9265 | <trans-unit id="96e41129ef5d2fa12b7a6ffcab608e9af04d8cbd" datatype="html"> | ||
9266 | <source>Comment:</source> | ||
9267 | <context-group purpose="location"> | ||
9268 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | ||
9269 | <context context-type="linenumber">105</context> | ||
9270 | </context-group> | ||
9271 | </trans-unit> | ||
9272 | <trans-unit id="2393853062458645999" datatype="html"> | ||
9273 | <source>Comment updated.</source> | ||
9274 | <context-group purpose="location"> | ||
9275 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context> | ||
9276 | <context context-type="linenumber">58</context> | ||
9277 | </context-group> | ||
9278 | </trans-unit> | ||
9279 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f" datatype="html"> | ||
9280 | <source>Moderation comment</source> | ||
9281 | <context-group purpose="location"> | ||
9282 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | ||
9283 | <context context-type="linenumber">3</context> | ||
9284 | </context-group> | ||
9285 | </trans-unit> | ||
9286 | <trans-unit id="5731e5d5ac989bf08848b5a57a5586cf84d80964" datatype="html"> | ||
9287 | <source> This comment can only be seen by you or the other moderators. </source> | ||
9288 | <context-group purpose="location"> | ||
9289 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | ||
9290 | <context context-type="linenumber">21,22</context> | ||
9291 | </context-group> | ||
9292 | </trans-unit> | ||
9293 | <trans-unit id="0562e455c88234829f3c27a38f3039f027bfd5d2" datatype="html"> | ||
9294 | <source>Update this comment</source> | ||
9295 | <context-group purpose="location"> | ||
9296 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context> | ||
9297 | <context context-type="linenumber">31</context> | ||
9298 | </context-group> | ||
9299 | </trans-unit> | ||
9300 | <trans-unit id="2044813052587776285" datatype="html"> | ||
9301 | <source>Add a message to communicate with the reporter</source> | ||
9302 | <context-group purpose="location"> | ||
9303 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> | ||
9304 | <context context-type="linenumber">100</context> | ||
9305 | </context-group> | ||
9306 | </trans-unit> | ||
9307 | <trans-unit id="4117663541503607703" datatype="html"> | ||
9308 | <source>Add a message to communicate with the moderation team</source> | ||
9309 | <context-group purpose="location"> | ||
9310 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> | ||
9311 | <context context-type="linenumber">103</context> | ||
9312 | </context-group> | ||
9313 | </trans-unit> | ||
9314 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> | ||
9315 | <source>Add a message</source> | ||
9316 | <context-group purpose="location"> | ||
9317 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | ||
9318 | <context context-type="linenumber">44</context> | ||
9319 | </context-group> | ||
9320 | </trans-unit> | ||
9321 | <trans-unit id="91e073459fc31b0fc1f6384aa9ad816f9f796de8" datatype="html"> | ||
9322 | <source>Messages with the reporter</source> | ||
9323 | <context-group purpose="location"> | ||
9324 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | ||
9325 | <context context-type="linenumber">4</context> | ||
9326 | </context-group> | ||
9327 | </trans-unit> | ||
9328 | <trans-unit id="f0327abdde923ab7f56cf036a5bf6bc2546126c0" datatype="html"> | ||
9329 | <source>Messages with the moderation team</source> | ||
9330 | <context-group purpose="location"> | ||
9331 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | ||
9332 | <context context-type="linenumber">5</context> | ||
9333 | </context-group> | ||
9334 | </trans-unit> | ||
9335 | <trans-unit id="158f56a96d95d4ddcfe506aca64f754d01fa11b6" datatype="html"> | ||
9336 | <source> No messages for now. </source> | ||
9337 | <context-group purpose="location"> | ||
9338 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context> | ||
9339 | <context context-type="linenumber">28,29</context> | ||
9340 | </context-group> | ||
9341 | </trans-unit> | ||
9320 | <trans-unit id="6b8b10fedeff64aa441ebedc2b7fbd07f6f246c1" datatype="html"> | 9342 | <trans-unit id="6b8b10fedeff64aa441ebedc2b7fbd07f6f246c1" datatype="html"> |
9321 | <source> What is PeerTube? </source> | 9343 | <source> What is PeerTube? </source> |
9322 | <context-group purpose="location"> | 9344 | <context-group purpose="location"> |
@@ -9772,6 +9794,20 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
9772 | <context context-type="linenumber">48</context> | 9794 | <context context-type="linenumber">48</context> |
9773 | </context-group> | 9795 | </context-group> |
9774 | </trans-unit> | 9796 | </trans-unit> |
9797 | <trans-unit id="5512208811126492983" datatype="html"> | ||
9798 | <source>Report comment</source> | ||
9799 | <context-group purpose="location"> | ||
9800 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context> | ||
9801 | <context context-type="linenumber">51</context> | ||
9802 | </context-group> | ||
9803 | </trans-unit> | ||
9804 | <trans-unit id="6245265026120479954" datatype="html"> | ||
9805 | <source>Comment reported.</source> | ||
9806 | <context-group purpose="location"> | ||
9807 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context> | ||
9808 | <context context-type="linenumber">82</context> | ||
9809 | </context-group> | ||
9810 | </trans-unit> | ||
9775 | <trans-unit id="7098180453085889026" datatype="html"> | 9811 | <trans-unit id="7098180453085889026" datatype="html"> |
9776 | <source>Blocked videos</source> | 9812 | <source>Blocked videos</source> |
9777 | <context-group purpose="location"> | 9813 | <context-group purpose="location"> |
@@ -9786,6 +9822,204 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
9786 | <context context-type="linenumber">109</context> | 9822 | <context context-type="linenumber">109</context> |
9787 | </context-group> | 9823 | </context-group> |
9788 | </trans-unit> | 9824 | </trans-unit> |
9825 | <trans-unit id="7483807629538115183" datatype="html"> | ||
9826 | <source>Users list</source> | ||
9827 | <context-group purpose="location"> | ||
9828 | <context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context> | ||
9829 | <context context-type="linenumber">27</context> | ||
9830 | </context-group> | ||
9831 | </trans-unit> | ||
9832 | <trans-unit id="1525334987774465166" datatype="html"> | ||
9833 | <source>Create a user</source> | ||
9834 | <context-group purpose="location"> | ||
9835 | <context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context> | ||
9836 | <context context-type="linenumber">36</context> | ||
9837 | </context-group> | ||
9838 | </trans-unit> | ||
9839 | <trans-unit id="5552039423287890133" datatype="html"> | ||
9840 | <source>Update a user</source> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context> | ||
9843 | <context context-type="linenumber">48</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit> | ||
9846 | <trans-unit id="177544274549739411" datatype="html"> | ||
9847 | <source>Following list</source> | ||
9848 | <context-group purpose="location"> | ||
9849 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | ||
9850 | <context context-type="linenumber">28</context> | ||
9851 | </context-group> | ||
9852 | </trans-unit> | ||
9853 | <trans-unit id="8092429110007204784" datatype="html"> | ||
9854 | <source>Followers list</source> | ||
9855 | <context-group purpose="location"> | ||
9856 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | ||
9857 | <context context-type="linenumber">37</context> | ||
9858 | </context-group> | ||
9859 | </trans-unit> | ||
9860 | <trans-unit id="6284468333579755406" datatype="html"> | ||
9861 | <source>Edit custom configuration</source> | ||
9862 | <context-group purpose="location"> | ||
9863 | <context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context> | ||
9864 | <context context-type="linenumber">26</context> | ||
9865 | </context-group> | ||
9866 | </trans-unit> | ||
9867 | <trans-unit id="8949443215142664126" datatype="html"> | ||
9868 | <source>Delete this comment</source> | ||
9869 | <context-group purpose="location"> | ||
9870 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
9871 | <context context-type="linenumber">65</context> | ||
9872 | </context-group> | ||
9873 | </trans-unit> | ||
9874 | <trans-unit id="3327751240218085797" datatype="html"> | ||
9875 | <source>Delete all comments of this account</source> | ||
9876 | <context-group purpose="location"> | ||
9877 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
9878 | <context context-type="linenumber">71</context> | ||
9879 | </context-group> | ||
9880 | </trans-unit> | ||
9881 | <trans-unit id="2850960459131251840" datatype="html"> | ||
9882 | <source>Comments are deleted after a few minutes</source> | ||
9883 | <context-group purpose="location"> | ||
9884 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
9885 | <context context-type="linenumber">72</context> | ||
9886 | </context-group> | ||
9887 | </trans-unit> | ||
9888 | <trans-unit id="545410448674339480" datatype="html"> | ||
9889 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | ||
9890 | <context-group purpose="location"> | ||
9891 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
9892 | <context context-type="linenumber">137</context> | ||
9893 | </context-group> | ||
9894 | </trans-unit> | ||
9895 | <trans-unit id="379090446060940062" datatype="html"> | ||
9896 | <source>Do you really want to delete all comments of <x id="PH" equiv-text="comment.by"/>?</source> | ||
9897 | <context-group purpose="location"> | ||
9898 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
9899 | <context context-type="linenumber">157</context> | ||
9900 | </context-group> | ||
9901 | </trans-unit> | ||
9902 | <trans-unit id="4539246224625965241" datatype="html"> | ||
9903 | <source>Comments of <x id="PH" equiv-text="options.accountName"/> will be deleted in a few minutes</source> | ||
9904 | <context-group purpose="location"> | ||
9905 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
9906 | <context context-type="linenumber">169</context> | ||
9907 | </context-group> | ||
9908 | </trans-unit> | ||
9909 | <trans-unit id="5b8782215fc5ae41cbbb41f92509192b66ee1246" datatype="html"> | ||
9910 | <source>Video comments</source> | ||
9911 | <context-group purpose="location"> | ||
9912 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9913 | <context context-type="linenumber">3</context> | ||
9914 | </context-group> | ||
9915 | </trans-unit> | ||
9916 | <trans-unit id="e92e448d39ae2bbd73d8f44d2f167019fe45a622" datatype="html"> | ||
9917 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> comments</source> | ||
9918 | <context-group purpose="location"> | ||
9919 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9920 | <context context-type="linenumber">14</context> | ||
9921 | </context-group> | ||
9922 | </trans-unit> | ||
9923 | <trans-unit id="ea762ca1d74c96d8568ac68482778f52ca531cc4" datatype="html"> | ||
9924 | <source>Batch actions</source> | ||
9925 | <context-group purpose="location"> | ||
9926 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9927 | <context context-type="linenumber">22</context> | ||
9928 | </context-group> | ||
9929 | <context-group purpose="location"> | ||
9930 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9931 | <context context-type="linenumber">22</context> | ||
9932 | </context-group> | ||
9933 | <context-group purpose="location"> | ||
9934 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context> | ||
9935 | <context context-type="linenumber">13</context> | ||
9936 | </context-group> | ||
9937 | <context-group purpose="location"> | ||
9938 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context> | ||
9939 | <context context-type="linenumber">13</context> | ||
9940 | </context-group> | ||
9941 | </trans-unit> | ||
9942 | <trans-unit id="ebdc173a9acc638a634724d31684849ce15778c8" datatype="html"> | ||
9943 | <source>Advanced comments filters</source> | ||
9944 | <context-group purpose="location"> | ||
9945 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9946 | <context context-type="linenumber">36</context> | ||
9947 | </context-group> | ||
9948 | </trans-unit> | ||
9949 | <trans-unit id="1f689bd2c3f3cfac3c800799545786e56aa5156d" datatype="html"> | ||
9950 | <source>Local comments</source> | ||
9951 | <context-group purpose="location"> | ||
9952 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9953 | <context context-type="linenumber">37</context> | ||
9954 | </context-group> | ||
9955 | </trans-unit> | ||
9956 | <trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | ||
9957 | <source>Remote comments</source> | ||
9958 | <context-group purpose="location"> | ||
9959 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9960 | <context context-type="linenumber">38</context> | ||
9961 | </context-group> | ||
9962 | </trans-unit> | ||
9963 | <trans-unit id="5a5d7ee2acbfa9c91ab7f41d26bda9ff0cafe42f" datatype="html"> | ||
9964 | <source>Comment</source> | ||
9965 | <context-group purpose="location"> | ||
9966 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9967 | <context context-type="linenumber">61</context> | ||
9968 | </context-group> | ||
9969 | </trans-unit> | ||
9970 | <trans-unit id="a7f42da3bb4eea0b71b0a20a2aff6612a82cab99" datatype="html"> | ||
9971 | <source>Date <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="createdAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
9972 | <context-group purpose="location"> | ||
9973 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9974 | <context context-type="linenumber">62</context> | ||
9975 | </context-group> | ||
9976 | <context-group purpose="location"> | ||
9977 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
9978 | <context context-type="linenumber">46</context> | ||
9979 | </context-group> | ||
9980 | </trans-unit> | ||
9981 | <trans-unit id="8c9050c6851a9df66791ce33bc05d6daff294921" datatype="html"> | ||
9982 | <source>Commented video</source> | ||
9983 | <context-group purpose="location"> | ||
9984 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9985 | <context context-type="linenumber">103</context> | ||
9986 | </context-group> | ||
9987 | </trans-unit> | ||
9988 | <trans-unit id="0b8869949ffd1265a194490cd96c74c4ad7c234a" datatype="html"> | ||
9989 | <source>No comments found matching current filters.</source> | ||
9990 | <context-group purpose="location"> | ||
9991 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9992 | <context context-type="linenumber">128</context> | ||
9993 | </context-group> | ||
9994 | </trans-unit> | ||
9995 | <trans-unit id="fc9202e5b01bd5ec813af78b5d51d1204ab0777e" datatype="html"> | ||
9996 | <source>No comments found.</source> | ||
9997 | <context-group purpose="location"> | ||
9998 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
9999 | <context context-type="linenumber">129</context> | ||
10000 | </context-group> | ||
10001 | </trans-unit> | ||
10002 | <trans-unit id="2338185419645468935" datatype="html"> | ||
10003 | <source>List installed plugins</source> | ||
10004 | <context-group purpose="location"> | ||
10005 | <context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context> | ||
10006 | <context context-type="linenumber">28</context> | ||
10007 | </context-group> | ||
10008 | </trans-unit> | ||
10009 | <trans-unit id="8897412584195581488" datatype="html"> | ||
10010 | <source>Search plugins</source> | ||
10011 | <context-group purpose="location"> | ||
10012 | <context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context> | ||
10013 | <context context-type="linenumber">37</context> | ||
10014 | </context-group> | ||
10015 | </trans-unit> | ||
10016 | <trans-unit id="4994333937800672218" datatype="html"> | ||
10017 | <source>Show plugin</source> | ||
10018 | <context-group purpose="location"> | ||
10019 | <context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context> | ||
10020 | <context context-type="linenumber">46</context> | ||
10021 | </context-group> | ||
10022 | </trans-unit> | ||
9789 | <trans-unit id="6775540171466219199" datatype="html"> | 10023 | <trans-unit id="6775540171466219199" datatype="html"> |
9790 | <source>Stop autoplaying next video</source> | 10024 | <source>Stop autoplaying next video</source> |
9791 | <context-group purpose="location"> | 10025 | <context-group purpose="location"> |
@@ -10277,176 +10511,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
10277 | <context context-type="linenumber">56</context> | 10511 | <context context-type="linenumber">56</context> |
10278 | </context-group> | 10512 | </context-group> |
10279 | </trans-unit> | 10513 | </trans-unit> |
10280 | <trans-unit id="5512208811126492983" datatype="html"> | ||
10281 | <source>Report comment</source> | ||
10282 | <context-group purpose="location"> | ||
10283 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context> | ||
10284 | <context context-type="linenumber">51</context> | ||
10285 | </context-group> | ||
10286 | </trans-unit> | ||
10287 | <trans-unit id="6245265026120479954" datatype="html"> | ||
10288 | <source>Comment reported.</source> | ||
10289 | <context-group purpose="location"> | ||
10290 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context> | ||
10291 | <context context-type="linenumber">82</context> | ||
10292 | </context-group> | ||
10293 | </trans-unit> | ||
10294 | <trans-unit id="7483807629538115183" datatype="html"> | ||
10295 | <source>Users list</source> | ||
10296 | <context-group purpose="location"> | ||
10297 | <context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context> | ||
10298 | <context context-type="linenumber">27</context> | ||
10299 | </context-group> | ||
10300 | </trans-unit> | ||
10301 | <trans-unit id="1525334987774465166" datatype="html"> | ||
10302 | <source>Create a user</source> | ||
10303 | <context-group purpose="location"> | ||
10304 | <context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context> | ||
10305 | <context context-type="linenumber">36</context> | ||
10306 | </context-group> | ||
10307 | </trans-unit> | ||
10308 | <trans-unit id="5552039423287890133" datatype="html"> | ||
10309 | <source>Update a user</source> | ||
10310 | <context-group purpose="location"> | ||
10311 | <context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context> | ||
10312 | <context context-type="linenumber">48</context> | ||
10313 | </context-group> | ||
10314 | </trans-unit> | ||
10315 | <trans-unit id="8949443215142664126" datatype="html"> | ||
10316 | <source>Delete this comment</source> | ||
10317 | <context-group purpose="location"> | ||
10318 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
10319 | <context context-type="linenumber">65</context> | ||
10320 | </context-group> | ||
10321 | </trans-unit> | ||
10322 | <trans-unit id="3327751240218085797" datatype="html"> | ||
10323 | <source>Delete all comments of this account</source> | ||
10324 | <context-group purpose="location"> | ||
10325 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
10326 | <context context-type="linenumber">71</context> | ||
10327 | </context-group> | ||
10328 | </trans-unit> | ||
10329 | <trans-unit id="2850960459131251840" datatype="html"> | ||
10330 | <source>Comments are deleted after a few minutes</source> | ||
10331 | <context-group purpose="location"> | ||
10332 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
10333 | <context context-type="linenumber">72</context> | ||
10334 | </context-group> | ||
10335 | </trans-unit> | ||
10336 | <trans-unit id="545410448674339480" datatype="html"> | ||
10337 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | ||
10338 | <context-group purpose="location"> | ||
10339 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
10340 | <context context-type="linenumber">137</context> | ||
10341 | </context-group> | ||
10342 | </trans-unit> | ||
10343 | <trans-unit id="379090446060940062" datatype="html"> | ||
10344 | <source>Do you really want to delete all comments of <x id="PH" equiv-text="comment.by"/>?</source> | ||
10345 | <context-group purpose="location"> | ||
10346 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
10347 | <context context-type="linenumber">157</context> | ||
10348 | </context-group> | ||
10349 | </trans-unit> | ||
10350 | <trans-unit id="4539246224625965241" datatype="html"> | ||
10351 | <source>Comments of <x id="PH" equiv-text="options.accountName"/> will be deleted in a few minutes</source> | ||
10352 | <context-group purpose="location"> | ||
10353 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | ||
10354 | <context context-type="linenumber">169</context> | ||
10355 | </context-group> | ||
10356 | </trans-unit> | ||
10357 | <trans-unit id="5b8782215fc5ae41cbbb41f92509192b66ee1246" datatype="html"> | ||
10358 | <source>Video comments</source> | ||
10359 | <context-group purpose="location"> | ||
10360 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10361 | <context context-type="linenumber">3</context> | ||
10362 | </context-group> | ||
10363 | </trans-unit> | ||
10364 | <trans-unit id="e92e448d39ae2bbd73d8f44d2f167019fe45a622" datatype="html"> | ||
10365 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> comments</source> | ||
10366 | <context-group purpose="location"> | ||
10367 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10368 | <context context-type="linenumber">14</context> | ||
10369 | </context-group> | ||
10370 | </trans-unit> | ||
10371 | <trans-unit id="ea762ca1d74c96d8568ac68482778f52ca531cc4" datatype="html"> | ||
10372 | <source>Batch actions</source> | ||
10373 | <context-group purpose="location"> | ||
10374 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10375 | <context context-type="linenumber">22</context> | ||
10376 | </context-group> | ||
10377 | <context-group purpose="location"> | ||
10378 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10379 | <context context-type="linenumber">22</context> | ||
10380 | </context-group> | ||
10381 | <context-group purpose="location"> | ||
10382 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context> | ||
10383 | <context context-type="linenumber">13</context> | ||
10384 | </context-group> | ||
10385 | <context-group purpose="location"> | ||
10386 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context> | ||
10387 | <context context-type="linenumber">13</context> | ||
10388 | </context-group> | ||
10389 | </trans-unit> | ||
10390 | <trans-unit id="ebdc173a9acc638a634724d31684849ce15778c8" datatype="html"> | ||
10391 | <source>Advanced comments filters</source> | ||
10392 | <context-group purpose="location"> | ||
10393 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10394 | <context context-type="linenumber">36</context> | ||
10395 | </context-group> | ||
10396 | </trans-unit> | ||
10397 | <trans-unit id="1f689bd2c3f3cfac3c800799545786e56aa5156d" datatype="html"> | ||
10398 | <source>Local comments</source> | ||
10399 | <context-group purpose="location"> | ||
10400 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10401 | <context context-type="linenumber">37</context> | ||
10402 | </context-group> | ||
10403 | </trans-unit> | ||
10404 | <trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | ||
10405 | <source>Remote comments</source> | ||
10406 | <context-group purpose="location"> | ||
10407 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10408 | <context context-type="linenumber">38</context> | ||
10409 | </context-group> | ||
10410 | </trans-unit> | ||
10411 | <trans-unit id="5a5d7ee2acbfa9c91ab7f41d26bda9ff0cafe42f" datatype="html"> | ||
10412 | <source>Comment</source> | ||
10413 | <context-group purpose="location"> | ||
10414 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10415 | <context context-type="linenumber">61</context> | ||
10416 | </context-group> | ||
10417 | </trans-unit> | ||
10418 | <trans-unit id="a7f42da3bb4eea0b71b0a20a2aff6612a82cab99" datatype="html"> | ||
10419 | <source>Date <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="createdAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
10420 | <context-group purpose="location"> | ||
10421 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10422 | <context context-type="linenumber">62</context> | ||
10423 | </context-group> | ||
10424 | <context-group purpose="location"> | ||
10425 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
10426 | <context context-type="linenumber">46</context> | ||
10427 | </context-group> | ||
10428 | </trans-unit> | ||
10429 | <trans-unit id="8c9050c6851a9df66791ce33bc05d6daff294921" datatype="html"> | ||
10430 | <source>Commented video</source> | ||
10431 | <context-group purpose="location"> | ||
10432 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10433 | <context context-type="linenumber">103</context> | ||
10434 | </context-group> | ||
10435 | </trans-unit> | ||
10436 | <trans-unit id="0b8869949ffd1265a194490cd96c74c4ad7c234a" datatype="html"> | ||
10437 | <source>No comments found matching current filters.</source> | ||
10438 | <context-group purpose="location"> | ||
10439 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10440 | <context context-type="linenumber">128</context> | ||
10441 | </context-group> | ||
10442 | </trans-unit> | ||
10443 | <trans-unit id="fc9202e5b01bd5ec813af78b5d51d1204ab0777e" datatype="html"> | ||
10444 | <source>No comments found.</source> | ||
10445 | <context-group purpose="location"> | ||
10446 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | ||
10447 | <context context-type="linenumber">129</context> | ||
10448 | </context-group> | ||
10449 | </trans-unit> | ||
10450 | <trans-unit id="2662644497259948010" datatype="html"> | 10514 | <trans-unit id="2662644497259948010" datatype="html"> |
10451 | <source>Comment</source> | 10515 | <source>Comment</source> |
10452 | <context-group purpose="location"> | 10516 | <context-group purpose="location"> |
@@ -10982,25 +11046,233 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
10982 | <context context-type="linenumber">76</context> | 11046 | <context context-type="linenumber">76</context> |
10983 | </context-group> | 11047 | </context-group> |
10984 | </trans-unit> | 11048 | </trans-unit> |
10985 | <trans-unit id="177544274549739411" datatype="html"> | 11049 | <trans-unit id="81585474102700882" datatype="html"> |
10986 | <source>Following list</source> | 11050 | <source>Used</source> |
10987 | <context-group purpose="location"> | 11051 | <context-group purpose="location"> |
10988 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 11052 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
11053 | <context context-type="linenumber">101</context> | ||
11054 | </context-group> | ||
11055 | </trans-unit> | ||
11056 | <trans-unit id="3955868613858648955" datatype="html"> | ||
11057 | <source>Available</source> | ||
11058 | <context-group purpose="location"> | ||
11059 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11060 | <context context-type="linenumber">101</context> | ||
11061 | </context-group> | ||
11062 | </trans-unit> | ||
11063 | <trans-unit id="5875705095657098468" datatype="html"> | ||
11064 | <source>Do you really want to remove this video redundancy?</source> | ||
11065 | <context-group purpose="location"> | ||
11066 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11067 | <context context-type="linenumber">140</context> | ||
11068 | </context-group> | ||
11069 | </trans-unit> | ||
11070 | <trans-unit id="9098272570113000349" datatype="html"> | ||
11071 | <source>Remove redundancy</source> | ||
11072 | <context-group purpose="location"> | ||
11073 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11074 | <context context-type="linenumber">141</context> | ||
11075 | </context-group> | ||
11076 | </trans-unit> | ||
11077 | <trans-unit id="6537102123107780785" datatype="html"> | ||
11078 | <source>Video redundancies removed!</source> | ||
11079 | <context-group purpose="location"> | ||
11080 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11081 | <context context-type="linenumber">147</context> | ||
11082 | </context-group> | ||
11083 | </trans-unit> | ||
11084 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> | ||
11085 | <source>Videos redundancies</source> | ||
11086 | <context-group purpose="location"> | ||
11087 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11088 | <context context-type="linenumber">3</context> | ||
11089 | </context-group> | ||
11090 | </trans-unit> | ||
11091 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> | ||
11092 | <source>My videos duplicated by remote instances</source> | ||
11093 | <context-group purpose="location"> | ||
11094 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11095 | <context context-type="linenumber">12</context> | ||
11096 | </context-group> | ||
11097 | </trans-unit> | ||
11098 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> | ||
11099 | <source>Remote videos duplicated by my instance</source> | ||
11100 | <context-group purpose="location"> | ||
11101 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11102 | <context context-type="linenumber">13</context> | ||
11103 | </context-group> | ||
11104 | </trans-unit> | ||
11105 | <trans-unit id="91bd2d52b840951d3b1f5830b023bee8bca91293" datatype="html"> | ||
11106 | <source>Video <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="name">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
11107 | <context-group purpose="location"> | ||
11108 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11109 | <context context-type="linenumber">29</context> | ||
11110 | </context-group> | ||
11111 | <context-group purpose="location"> | ||
11112 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11113 | <context context-type="linenumber">43</context> | ||
11114 | </context-group> | ||
11115 | </trans-unit> | ||
11116 | <trans-unit id="05f5612d42b02be4d6d9e0a99585ae7e30a91780" datatype="html"> | ||
11117 | <source>Strategy</source> | ||
11118 | <context-group purpose="location"> | ||
11119 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
10989 | <context context-type="linenumber">28</context> | 11120 | <context context-type="linenumber">28</context> |
10990 | </context-group> | 11121 | </context-group> |
10991 | </trans-unit> | 11122 | </trans-unit> |
10992 | <trans-unit id="8092429110007204784" datatype="html"> | 11123 | <trans-unit id="b7237eade678ae47485fbd27ec7f8c1079a8c6b7" datatype="html"> |
10993 | <source>Followers list</source> | 11124 | <source>Total size</source> |
10994 | <context-group purpose="location"> | 11125 | <context-group purpose="location"> |
10995 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 11126 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> |
11127 | <context context-type="linenumber">30</context> | ||
11128 | </context-group> | ||
11129 | </trans-unit> | ||
11130 | <trans-unit id="e536fc8b9a652aa7f7b87193cdfa143481da3bad" datatype="html"> | ||
11131 | <source>List redundancies</source> | ||
11132 | <context-group purpose="location"> | ||
11133 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
10996 | <context context-type="linenumber">37</context> | 11134 | <context context-type="linenumber">37</context> |
10997 | </context-group> | 11135 | </context-group> |
10998 | </trans-unit> | 11136 | </trans-unit> |
10999 | <trans-unit id="6284468333579755406" datatype="html"> | 11137 | <trans-unit id="c1074e8c49b3cdfaeb7fcaf8cb27e44139389e29" datatype="html"> |
11000 | <source>Edit custom configuration</source> | 11138 | <source>Open video in a new tab</source> |
11001 | <context-group purpose="location"> | 11139 | <context-group purpose="location"> |
11002 | <context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context> | 11140 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> |
11003 | <context context-type="linenumber">26</context> | 11141 | <context context-type="linenumber">49</context> |
11142 | </context-group> | ||
11143 | </trans-unit> | ||
11144 | <trans-unit id="897116a91d135b1552880aed6050814a4a0df28a" datatype="html"> | ||
11145 | <source>Your instance doesn't mirror any video.</source> | ||
11146 | <context-group purpose="location"> | ||
11147 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11148 | <context context-type="linenumber">81</context> | ||
11149 | </context-group> | ||
11150 | </trans-unit> | ||
11151 | <trans-unit id="afc5c2bbf66996ab213f6eca65b24ca423d36e31" datatype="html"> | ||
11152 | <source>Your instance has no mirrored videos.</source> | ||
11153 | <context-group purpose="location"> | ||
11154 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11155 | <context context-type="linenumber">82</context> | ||
11156 | </context-group> | ||
11157 | </trans-unit> | ||
11158 | <trans-unit id="0e96ed54157e69989a2c0bcce2f62399accdaa27" datatype="html"> | ||
11159 | <source>Enabled strategies stats</source> | ||
11160 | <context-group purpose="location"> | ||
11161 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11162 | <context context-type="linenumber">91</context> | ||
11163 | </context-group> | ||
11164 | </trans-unit> | ||
11165 | <trans-unit id="0f6e6ec286d43c14f16444a077639090f38e29de" datatype="html"> | ||
11166 | <source> No redundancy strategy is enabled on your instance. </source> | ||
11167 | <context-group purpose="location"> | ||
11168 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11169 | <context context-type="linenumber">96,97</context> | ||
11170 | </context-group> | ||
11171 | </trans-unit> | ||
11172 | <trans-unit id="3962242315365992494" datatype="html"> | ||
11173 | <source>Switch video block to manual</source> | ||
11174 | <context-group purpose="location"> | ||
11175 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
11176 | <context context-type="linenumber">48</context> | ||
11177 | </context-group> | ||
11178 | </trans-unit> | ||
11179 | <trans-unit id="6906423861055262169" datatype="html"> | ||
11180 | <source>Video <x id="PH" equiv-text="videoBlock.video.name"/> switched to manual block.</source> | ||
11181 | <context-group purpose="location"> | ||
11182 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
11183 | <context context-type="linenumber">54</context> | ||
11184 | </context-group> | ||
11185 | </trans-unit> | ||
11186 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> | ||
11187 | <source>Video blocks</source> | ||
11188 | <context-group purpose="location"> | ||
11189 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11190 | <context context-type="linenumber">3</context> | ||
11191 | </context-group> | ||
11192 | </trans-unit> | ||
11193 | <trans-unit id="9f5c75bd513580d630817cd39179fd41e5ec36f6" datatype="html"> | ||
11194 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> blocked videos</source> | ||
11195 | <context-group purpose="location"> | ||
11196 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11197 | <context context-type="linenumber">10</context> | ||
11198 | </context-group> | ||
11199 | </trans-unit> | ||
11200 | <trans-unit id="2122599f5b51ab83849bc77fa5cafcdcd896ac72" datatype="html"> | ||
11201 | <source>Advanced block filters</source> | ||
11202 | <context-group purpose="location"> | ||
11203 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11204 | <context context-type="linenumber">23</context> | ||
11205 | </context-group> | ||
11206 | </trans-unit> | ||
11207 | <trans-unit id="7d0cb3dbf192b9f3a5dbfb6d56d7609b200cbd4e" datatype="html"> | ||
11208 | <source>Automatic blocks</source> | ||
11209 | <context-group purpose="location"> | ||
11210 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11211 | <context context-type="linenumber">24</context> | ||
11212 | </context-group> | ||
11213 | </trans-unit> | ||
11214 | <trans-unit id="dfc11b6dc1387e59dbb79d248cf4c638fb9df3ea" datatype="html"> | ||
11215 | <source>Manual blocks</source> | ||
11216 | <context-group purpose="location"> | ||
11217 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11218 | <context context-type="linenumber">25</context> | ||
11219 | </context-group> | ||
11220 | </trans-unit> | ||
11221 | <trans-unit id="96dfa3efa02bfafc0bc6d4ab186ebef2813a9e8a" datatype="html"> | ||
11222 | <source>Sensitive</source> | ||
11223 | <context-group purpose="location"> | ||
11224 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11225 | <context context-type="linenumber">44</context> | ||
11226 | </context-group> | ||
11227 | </trans-unit> | ||
11228 | <trans-unit id="b748c96a1ee98d2fa9a645fb71838f5d4938855b" datatype="html"> | ||
11229 | <source>Unfederated</source> | ||
11230 | <context-group purpose="location"> | ||
11231 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11232 | <context context-type="linenumber">45</context> | ||
11233 | </context-group> | ||
11234 | <context-group purpose="location"> | ||
11235 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11236 | <context context-type="linenumber">88</context> | ||
11237 | </context-group> | ||
11238 | </trans-unit> | ||
11239 | <trans-unit id="75d9bb7a2e6256268cd0653aac75a8b994d3cf1f" datatype="html"> | ||
11240 | <source>The video was blocked due to automatic blocking of new videos</source> | ||
11241 | <context-group purpose="location"> | ||
11242 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11243 | <context context-type="linenumber">74</context> | ||
11244 | </context-group> | ||
11245 | <context-group purpose="location"> | ||
11246 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11247 | <context context-type="linenumber">74</context> | ||
11248 | </context-group> | ||
11249 | </trans-unit> | ||
11250 | <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9" datatype="html"> | ||
11251 | <source>NSFW</source> | ||
11252 | <context-group purpose="location"> | ||
11253 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11254 | <context context-type="linenumber">84</context> | ||
11255 | </context-group> | ||
11256 | </trans-unit> | ||
11257 | <trans-unit id="d2a65fafac0e4e0a3289ec54627bd7f691d8020d" datatype="html"> | ||
11258 | <source>Block reason:</source> | ||
11259 | <context-group purpose="location"> | ||
11260 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11261 | <context context-type="linenumber">104</context> | ||
11262 | </context-group> | ||
11263 | </trans-unit> | ||
11264 | <trans-unit id="f8add432da83aa37b8cf03c5b907c3a9e51088fd" datatype="html"> | ||
11265 | <source>No blocked video found matching current filters.</source> | ||
11266 | <context-group purpose="location"> | ||
11267 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11268 | <context context-type="linenumber">124</context> | ||
11269 | </context-group> | ||
11270 | </trans-unit> | ||
11271 | <trans-unit id="8d02797f76f99ad51f55e91ff82088e8772152e0" datatype="html"> | ||
11272 | <source>No blocked video found.</source> | ||
11273 | <context-group purpose="location"> | ||
11274 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11275 | <context context-type="linenumber">125</context> | ||
11004 | </context-group> | 11276 | </context-group> |
11005 | </trans-unit> | 11277 | </trans-unit> |
11006 | <trans-unit id="1729036051846673606" datatype="html"> | 11278 | <trans-unit id="1729036051846673606" datatype="html"> |
@@ -11408,21 +11680,21 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
11408 | <source>Instance languages</source> | 11680 | <source>Instance languages</source> |
11409 | <context-group purpose="location"> | 11681 | <context-group purpose="location"> |
11410 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> | 11682 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> |
11411 | <context context-type="linenumber">173</context> | 11683 | <context context-type="linenumber">183</context> |
11412 | </context-group> | 11684 | </context-group> |
11413 | </trans-unit> | 11685 | </trans-unit> |
11414 | <trans-unit id="9172233176401579786" datatype="html"> | 11686 | <trans-unit id="9172233176401579786" datatype="html"> |
11415 | <source>Scheduled</source> | 11687 | <source>Scheduled</source> |
11416 | <context-group purpose="location"> | 11688 | <context-group purpose="location"> |
11417 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> | 11689 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> |
11418 | <context context-type="linenumber">185</context> | 11690 | <context context-type="linenumber">195</context> |
11419 | </context-group> | 11691 | </context-group> |
11420 | </trans-unit> | 11692 | </trans-unit> |
11421 | <trans-unit id="1435317307066082710" datatype="html"> | 11693 | <trans-unit id="1435317307066082710" datatype="html"> |
11422 | <source>Hide the video until a specific date</source> | 11694 | <source>Hide the video until a specific date</source> |
11423 | <context-group purpose="location"> | 11695 | <context-group purpose="location"> |
11424 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> | 11696 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context> |
11425 | <context context-type="linenumber">186</context> | 11697 | <context context-type="linenumber">196</context> |
11426 | </context-group> | 11698 | </context-group> |
11427 | </trans-unit> | 11699 | </trans-unit> |
11428 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> | 11700 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> |
@@ -11644,256 +11916,6 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
11644 | <context context-type="linenumber">315</context> | 11916 | <context context-type="linenumber">315</context> |
11645 | </context-group> | 11917 | </context-group> |
11646 | </trans-unit> | 11918 | </trans-unit> |
11647 | <trans-unit id="2338185419645468935" datatype="html"> | ||
11648 | <source>List installed plugins</source> | ||
11649 | <context-group purpose="location"> | ||
11650 | <context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context> | ||
11651 | <context context-type="linenumber">28</context> | ||
11652 | </context-group> | ||
11653 | </trans-unit> | ||
11654 | <trans-unit id="8897412584195581488" datatype="html"> | ||
11655 | <source>Search plugins</source> | ||
11656 | <context-group purpose="location"> | ||
11657 | <context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context> | ||
11658 | <context context-type="linenumber">37</context> | ||
11659 | </context-group> | ||
11660 | </trans-unit> | ||
11661 | <trans-unit id="4994333937800672218" datatype="html"> | ||
11662 | <source>Show plugin</source> | ||
11663 | <context-group purpose="location"> | ||
11664 | <context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context> | ||
11665 | <context context-type="linenumber">46</context> | ||
11666 | </context-group> | ||
11667 | </trans-unit> | ||
11668 | <trans-unit id="3962242315365992494" datatype="html"> | ||
11669 | <source>Switch video block to manual</source> | ||
11670 | <context-group purpose="location"> | ||
11671 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
11672 | <context context-type="linenumber">48</context> | ||
11673 | </context-group> | ||
11674 | </trans-unit> | ||
11675 | <trans-unit id="6906423861055262169" datatype="html"> | ||
11676 | <source>Video <x id="PH" equiv-text="videoBlock.video.name"/> switched to manual block.</source> | ||
11677 | <context-group purpose="location"> | ||
11678 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
11679 | <context context-type="linenumber">54</context> | ||
11680 | </context-group> | ||
11681 | </trans-unit> | ||
11682 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> | ||
11683 | <source>Video blocks</source> | ||
11684 | <context-group purpose="location"> | ||
11685 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11686 | <context context-type="linenumber">3</context> | ||
11687 | </context-group> | ||
11688 | </trans-unit> | ||
11689 | <trans-unit id="9f5c75bd513580d630817cd39179fd41e5ec36f6" datatype="html"> | ||
11690 | <source>Showing <x id="INTERPOLATION" equiv-text="ageReportTemp"/> to <x id="INTERPOLATION_1" equiv-text="="Showing {{"/> of <x id="INTERPOLATION_2" equiv-text="rst}'}} to {{'{last}"/> blocked videos</source> | ||
11691 | <context-group purpose="location"> | ||
11692 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11693 | <context context-type="linenumber">10</context> | ||
11694 | </context-group> | ||
11695 | </trans-unit> | ||
11696 | <trans-unit id="2122599f5b51ab83849bc77fa5cafcdcd896ac72" datatype="html"> | ||
11697 | <source>Advanced block filters</source> | ||
11698 | <context-group purpose="location"> | ||
11699 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11700 | <context context-type="linenumber">23</context> | ||
11701 | </context-group> | ||
11702 | </trans-unit> | ||
11703 | <trans-unit id="7d0cb3dbf192b9f3a5dbfb6d56d7609b200cbd4e" datatype="html"> | ||
11704 | <source>Automatic blocks</source> | ||
11705 | <context-group purpose="location"> | ||
11706 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11707 | <context context-type="linenumber">24</context> | ||
11708 | </context-group> | ||
11709 | </trans-unit> | ||
11710 | <trans-unit id="dfc11b6dc1387e59dbb79d248cf4c638fb9df3ea" datatype="html"> | ||
11711 | <source>Manual blocks</source> | ||
11712 | <context-group purpose="location"> | ||
11713 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11714 | <context context-type="linenumber">25</context> | ||
11715 | </context-group> | ||
11716 | </trans-unit> | ||
11717 | <trans-unit id="91bd2d52b840951d3b1f5830b023bee8bca91293" datatype="html"> | ||
11718 | <source>Video <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="name">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
11719 | <context-group purpose="location"> | ||
11720 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11721 | <context context-type="linenumber">43</context> | ||
11722 | </context-group> | ||
11723 | <context-group purpose="location"> | ||
11724 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11725 | <context context-type="linenumber">29</context> | ||
11726 | </context-group> | ||
11727 | </trans-unit> | ||
11728 | <trans-unit id="96dfa3efa02bfafc0bc6d4ab186ebef2813a9e8a" datatype="html"> | ||
11729 | <source>Sensitive</source> | ||
11730 | <context-group purpose="location"> | ||
11731 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11732 | <context context-type="linenumber">44</context> | ||
11733 | </context-group> | ||
11734 | </trans-unit> | ||
11735 | <trans-unit id="b748c96a1ee98d2fa9a645fb71838f5d4938855b" datatype="html"> | ||
11736 | <source>Unfederated</source> | ||
11737 | <context-group purpose="location"> | ||
11738 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11739 | <context context-type="linenumber">45</context> | ||
11740 | </context-group> | ||
11741 | <context-group purpose="location"> | ||
11742 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11743 | <context context-type="linenumber">88</context> | ||
11744 | </context-group> | ||
11745 | </trans-unit> | ||
11746 | <trans-unit id="75d9bb7a2e6256268cd0653aac75a8b994d3cf1f" datatype="html"> | ||
11747 | <source>The video was blocked due to automatic blocking of new videos</source> | ||
11748 | <context-group purpose="location"> | ||
11749 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11750 | <context context-type="linenumber">74</context> | ||
11751 | </context-group> | ||
11752 | <context-group purpose="location"> | ||
11753 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11754 | <context context-type="linenumber">74</context> | ||
11755 | </context-group> | ||
11756 | </trans-unit> | ||
11757 | <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9" datatype="html"> | ||
11758 | <source>NSFW</source> | ||
11759 | <context-group purpose="location"> | ||
11760 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11761 | <context context-type="linenumber">84</context> | ||
11762 | </context-group> | ||
11763 | </trans-unit> | ||
11764 | <trans-unit id="d2a65fafac0e4e0a3289ec54627bd7f691d8020d" datatype="html"> | ||
11765 | <source>Block reason:</source> | ||
11766 | <context-group purpose="location"> | ||
11767 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11768 | <context context-type="linenumber">104</context> | ||
11769 | </context-group> | ||
11770 | </trans-unit> | ||
11771 | <trans-unit id="f8add432da83aa37b8cf03c5b907c3a9e51088fd" datatype="html"> | ||
11772 | <source>No blocked video found matching current filters.</source> | ||
11773 | <context-group purpose="location"> | ||
11774 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11775 | <context context-type="linenumber">124</context> | ||
11776 | </context-group> | ||
11777 | </trans-unit> | ||
11778 | <trans-unit id="8d02797f76f99ad51f55e91ff82088e8772152e0" datatype="html"> | ||
11779 | <source>No blocked video found.</source> | ||
11780 | <context-group purpose="location"> | ||
11781 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | ||
11782 | <context context-type="linenumber">125</context> | ||
11783 | </context-group> | ||
11784 | </trans-unit> | ||
11785 | <trans-unit id="81585474102700882" datatype="html"> | ||
11786 | <source>Used</source> | ||
11787 | <context-group purpose="location"> | ||
11788 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11789 | <context context-type="linenumber">101</context> | ||
11790 | </context-group> | ||
11791 | </trans-unit> | ||
11792 | <trans-unit id="3955868613858648955" datatype="html"> | ||
11793 | <source>Available</source> | ||
11794 | <context-group purpose="location"> | ||
11795 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11796 | <context context-type="linenumber">101</context> | ||
11797 | </context-group> | ||
11798 | </trans-unit> | ||
11799 | <trans-unit id="5875705095657098468" datatype="html"> | ||
11800 | <source>Do you really want to remove this video redundancy?</source> | ||
11801 | <context-group purpose="location"> | ||
11802 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11803 | <context context-type="linenumber">140</context> | ||
11804 | </context-group> | ||
11805 | </trans-unit> | ||
11806 | <trans-unit id="9098272570113000349" datatype="html"> | ||
11807 | <source>Remove redundancy</source> | ||
11808 | <context-group purpose="location"> | ||
11809 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11810 | <context context-type="linenumber">141</context> | ||
11811 | </context-group> | ||
11812 | </trans-unit> | ||
11813 | <trans-unit id="6537102123107780785" datatype="html"> | ||
11814 | <source>Video redundancies removed!</source> | ||
11815 | <context-group purpose="location"> | ||
11816 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
11817 | <context context-type="linenumber">147</context> | ||
11818 | </context-group> | ||
11819 | </trans-unit> | ||
11820 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> | ||
11821 | <source>Videos redundancies</source> | ||
11822 | <context-group purpose="location"> | ||
11823 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11824 | <context context-type="linenumber">3</context> | ||
11825 | </context-group> | ||
11826 | </trans-unit> | ||
11827 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> | ||
11828 | <source>My videos duplicated by remote instances</source> | ||
11829 | <context-group purpose="location"> | ||
11830 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11831 | <context context-type="linenumber">12</context> | ||
11832 | </context-group> | ||
11833 | </trans-unit> | ||
11834 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> | ||
11835 | <source>Remote videos duplicated by my instance</source> | ||
11836 | <context-group purpose="location"> | ||
11837 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11838 | <context context-type="linenumber">13</context> | ||
11839 | </context-group> | ||
11840 | </trans-unit> | ||
11841 | <trans-unit id="05f5612d42b02be4d6d9e0a99585ae7e30a91780" datatype="html"> | ||
11842 | <source>Strategy</source> | ||
11843 | <context-group purpose="location"> | ||
11844 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11845 | <context context-type="linenumber">28</context> | ||
11846 | </context-group> | ||
11847 | </trans-unit> | ||
11848 | <trans-unit id="b7237eade678ae47485fbd27ec7f8c1079a8c6b7" datatype="html"> | ||
11849 | <source>Total size</source> | ||
11850 | <context-group purpose="location"> | ||
11851 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11852 | <context context-type="linenumber">30</context> | ||
11853 | </context-group> | ||
11854 | </trans-unit> | ||
11855 | <trans-unit id="e536fc8b9a652aa7f7b87193cdfa143481da3bad" datatype="html"> | ||
11856 | <source>List redundancies</source> | ||
11857 | <context-group purpose="location"> | ||
11858 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11859 | <context context-type="linenumber">37</context> | ||
11860 | </context-group> | ||
11861 | </trans-unit> | ||
11862 | <trans-unit id="c1074e8c49b3cdfaeb7fcaf8cb27e44139389e29" datatype="html"> | ||
11863 | <source>Open video in a new tab</source> | ||
11864 | <context-group purpose="location"> | ||
11865 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11866 | <context context-type="linenumber">49</context> | ||
11867 | </context-group> | ||
11868 | </trans-unit> | ||
11869 | <trans-unit id="897116a91d135b1552880aed6050814a4a0df28a" datatype="html"> | ||
11870 | <source>Your instance doesn't mirror any video.</source> | ||
11871 | <context-group purpose="location"> | ||
11872 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11873 | <context context-type="linenumber">81</context> | ||
11874 | </context-group> | ||
11875 | </trans-unit> | ||
11876 | <trans-unit id="afc5c2bbf66996ab213f6eca65b24ca423d36e31" datatype="html"> | ||
11877 | <source>Your instance has no mirrored videos.</source> | ||
11878 | <context-group purpose="location"> | ||
11879 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11880 | <context context-type="linenumber">82</context> | ||
11881 | </context-group> | ||
11882 | </trans-unit> | ||
11883 | <trans-unit id="0e96ed54157e69989a2c0bcce2f62399accdaa27" datatype="html"> | ||
11884 | <source>Enabled strategies stats</source> | ||
11885 | <context-group purpose="location"> | ||
11886 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11887 | <context context-type="linenumber">91</context> | ||
11888 | </context-group> | ||
11889 | </trans-unit> | ||
11890 | <trans-unit id="0f6e6ec286d43c14f16444a077639090f38e29de" datatype="html"> | ||
11891 | <source> No redundancy strategy is enabled on your instance. </source> | ||
11892 | <context-group purpose="location"> | ||
11893 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context> | ||
11894 | <context context-type="linenumber">96,97</context> | ||
11895 | </context-group> | ||
11896 | </trans-unit> | ||
11897 | <trans-unit id="4968369344159400023" datatype="html"> | 11919 | <trans-unit id="4968369344159400023" datatype="html"> |
11898 | <source>Your name is required.</source> | 11920 | <source>Your name is required.</source> |
11899 | <context-group purpose="location"> | 11921 | <context-group purpose="location"> |
@@ -12181,25 +12203,25 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
12181 | <context context-type="linenumber">239</context> | 12203 | <context context-type="linenumber">239</context> |
12182 | </context-group> | 12204 | </context-group> |
12183 | </trans-unit> | 12205 | </trans-unit> |
12184 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> | 12206 | <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
12185 | <source>Services</source> | 12207 | <source>Transcoding</source> |
12186 | <context-group purpose="location"> | 12208 | <context-group purpose="location"> |
12187 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12209 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12188 | <context context-type="linenumber">654</context> | 12210 | <context context-type="linenumber">700</context> |
12189 | </context-group> | 12211 | </context-group> |
12190 | </trans-unit> | 12212 | </trans-unit> |
12191 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 12213 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
12192 | <source>Advanced configuration</source> | 12214 | <source>Advanced configuration</source> |
12193 | <context-group purpose="location"> | 12215 | <context-group purpose="location"> |
12194 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12216 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12195 | <context context-type="linenumber">830</context> | 12217 | <context context-type="linenumber">962</context> |
12196 | </context-group> | 12218 | </context-group> |
12197 | </trans-unit> | 12219 | </trans-unit> |
12198 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 12220 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
12199 | <source>Update configuration</source> | 12221 | <source>Update configuration</source> |
12200 | <context-group purpose="location"> | 12222 | <context-group purpose="location"> |
12201 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12223 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12202 | <context context-type="linenumber">1089</context> | 12224 | <context context-type="linenumber">1087</context> |
12203 | </context-group> | 12225 | </context-group> |
12204 | </trans-unit> | 12226 | </trans-unit> |
12205 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> | 12227 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> |
@@ -12741,28 +12763,28 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
12741 | <source>TWITTER</source> | 12763 | <source>TWITTER</source> |
12742 | <context-group purpose="location"> | 12764 | <context-group purpose="location"> |
12743 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12765 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12744 | <context context-type="linenumber">660</context> | 12766 | <context context-type="linenumber">652</context> |
12745 | </context-group> | 12767 | </context-group> |
12746 | </trans-unit> | 12768 | </trans-unit> |
12747 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 12769 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
12748 | <source> Optional. If any, provide the Twitter account representing your instance to improve link previews. </source> | 12770 | <source> Optional. If any, provide the Twitter account representing your instance to improve link previews. </source> |
12749 | <context-group purpose="location"> | 12771 | <context-group purpose="location"> |
12750 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12772 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12751 | <context context-type="linenumber">662,663</context> | 12773 | <context context-type="linenumber">654,655</context> |
12752 | </context-group> | 12774 | </context-group> |
12753 | </trans-unit> | 12775 | </trans-unit> |
12754 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 12776 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
12755 | <source>Your Twitter username</source> | 12777 | <source>Your Twitter username</source> |
12756 | <context-group purpose="location"> | 12778 | <context-group purpose="location"> |
12757 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12779 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12758 | <context context-type="linenumber">672</context> | 12780 | <context context-type="linenumber">664</context> |
12759 | </context-group> | 12781 | </context-group> |
12760 | </trans-unit> | 12782 | </trans-unit> |
12761 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 12783 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
12762 | <source>Instance allowed by Twitter</source> | 12784 | <source>Instance allowed by Twitter</source> |
12763 | <context-group purpose="location"> | 12785 | <context-group purpose="location"> |
12764 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12786 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12765 | <context context-type="linenumber">684</context> | 12787 | <context context-type="linenumber">676</context> |
12766 | </context-group> | 12788 | </context-group> |
12767 | </trans-unit> | 12789 | </trans-unit> |
12768 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 12790 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
@@ -12773,287 +12795,287 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
12773 | "/> to see if you instance is allowed. </source> | 12795 | "/> to see if you instance is allowed. </source> |
12774 | <context-group purpose="location"> | 12796 | <context-group purpose="location"> |
12775 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12797 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12776 | <context context-type="linenumber">689,694</context> | 12798 | <context context-type="linenumber">681,686</context> |
12777 | </context-group> | 12799 | </context-group> |
12778 | </trans-unit> | 12800 | </trans-unit> |
12779 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 12801 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
12780 | <source> Enable users of your instance to stream live. </source> | 12802 | <source>TRANSCODING</source> |
12781 | <context-group purpose="location"> | 12803 | <context-group purpose="location"> |
12782 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12804 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12783 | <context context-type="linenumber">716,717</context> | 12805 | <context context-type="linenumber">706</context> |
12784 | </context-group> | 12806 | </context-group> |
12785 | </trans-unit> | 12807 | </trans-unit> |
12786 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 12808 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
12787 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source> | 12809 | <source> 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. </source> |
12788 | <context-group purpose="location"> | 12810 | <context-group purpose="location"> |
12789 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12811 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12790 | <context context-type="linenumber">731,732</context> | 12812 | <context context-type="linenumber">708,710</context> |
12791 | </context-group> | 12813 | </context-group> |
12792 | </trans-unit> | 12814 | </trans-unit> |
12793 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 12815 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
12794 | <source>Allow your users to automatically publish a replay of their live</source> | 12816 | <source>Allow additional extensions</source> |
12795 | <context-group purpose="location"> | 12817 | <context-group purpose="location"> |
12796 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12818 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12797 | <context context-type="linenumber">739</context> | 12819 | <context context-type="linenumber">732</context> |
12798 | </context-group> | 12820 | </context-group> |
12799 | </trans-unit> | 12821 | </trans-unit> |
12800 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 12822 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
12801 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source> | 12823 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
12802 | <context-group purpose="location"> | 12824 | <context-group purpose="location"> |
12803 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12825 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12804 | <context context-type="linenumber">742,743</context> | 12826 | <context context-type="linenumber">735</context> |
12805 | </context-group> | 12827 | </context-group> |
12806 | </trans-unit> | 12828 | </trans-unit> |
12807 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 12829 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
12808 | <source>Max lives created on your instance (-1 for "unlimited")</source> | 12830 | <source>Allow audio files upload</source> |
12809 | <context-group purpose="location"> | 12831 | <context-group purpose="location"> |
12810 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12832 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12811 | <context context-type="linenumber">748</context> | 12833 | <context context-type="linenumber">743</context> |
12812 | </context-group> | 12834 | </context-group> |
12813 | </trans-unit> | 12835 | </trans-unit> |
12814 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 12836 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
12815 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 12837 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
12816 | <context-group purpose="location"> | 12838 | <context-group purpose="location"> |
12817 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12839 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12818 | <context context-type="linenumber">751</context> | 12840 | <context context-type="linenumber">746</context> |
12819 | </context-group> | 12841 | </context-group> |
12820 | </trans-unit> | 12842 | </trans-unit> |
12821 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | 12843 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
12822 | <source>Max lives created per user (-1 for "unlimited")</source> | 12844 | <source>WebTorrent support enabled</source> |
12823 | <context-group purpose="location"> | 12845 | <context-group purpose="location"> |
12824 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12846 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12825 | <context context-type="linenumber">756</context> | 12847 | <context context-type="linenumber">755</context> |
12826 | </context-group> | 12848 | </context-group> |
12827 | </trans-unit> | 12849 | </trans-unit> |
12828 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 12850 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
12829 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 12851 | <source>HLS with P2P support enabled</source> |
12830 | <context-group purpose="location"> | 12852 | <context-group purpose="location"> |
12831 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12853 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12832 | <context context-type="linenumber">759</context> | 12854 | <context context-type="linenumber">774</context> |
12833 | </context-group> | 12855 | </context-group> |
12834 | </trans-unit> | 12856 | </trans-unit> |
12835 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 12857 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
12836 | <source>Max live duration</source> | 12858 | <source>Transcoding threads</source> |
12837 | <context-group purpose="location"> | 12859 | <context-group purpose="location"> |
12838 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12860 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12839 | <context context-type="linenumber">764</context> | 12861 | <context context-type="linenumber">799</context> |
12840 | </context-group> | 12862 | </context-group> |
12841 | </trans-unit> | 12863 | </trans-unit> |
12842 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 12864 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
12843 | <source>Enable live transcoding</source> | 12865 | <source>Resolutions to generate</source> |
12844 | <context-group purpose="location"> | 12866 | <context-group purpose="location"> |
12845 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12867 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12846 | <context context-type="linenumber">780</context> | 12868 | <context context-type="linenumber">812</context> |
12847 | </context-group> | 12869 | </context-group> |
12848 | </trans-unit> | 12870 | </trans-unit> |
12849 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 12871 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
12850 | <source> Requires a lot of CPU! </source> | 12872 | <source>Transcoding enabled</source> |
12851 | <context-group purpose="location"> | 12873 | <context-group purpose="location"> |
12852 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12874 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12853 | <context context-type="linenumber">783,784</context> | 12875 | <context context-type="linenumber">720</context> |
12854 | </context-group> | 12876 | </context-group> |
12855 | </trans-unit> | 12877 | </trans-unit> |
12856 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 12878 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> |
12857 | <source>Live transcoding threads</source> | 12879 | <source>If you disable transcoding, many videos from your users will not work!</source> |
12858 | <context-group purpose="location"> | 12880 | <context-group purpose="location"> |
12859 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12881 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12860 | <context context-type="linenumber">789</context> | 12882 | <context context-type="linenumber">724</context> |
12861 | </context-group> | 12883 | </context-group> |
12862 | </trans-unit> | 12884 | </trans-unit> |
12863 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 12885 | <trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
12864 | <source>Live resolutions to generate</source> | 12886 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> |
12887 | |||
12888 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
12865 | <context-group purpose="location"> | 12889 | <context-group purpose="location"> |
12866 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12890 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12867 | <context context-type="linenumber">801</context> | 12891 | <context context-type="linenumber">759,763</context> |
12868 | </context-group> | 12892 | </context-group> |
12869 | </trans-unit> | 12893 | </trans-unit> |
12870 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 12894 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
12871 | <source>Allow live streaming</source> | 12895 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> |
12896 | "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | ||
12872 | <context-group purpose="location"> | 12897 | <context-group purpose="location"> |
12873 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12898 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12874 | <context context-type="linenumber">727</context> | 12899 | <context context-type="linenumber">778,787</context> |
12875 | </context-group> | 12900 | </context-group> |
12876 | </trans-unit> | 12901 | </trans-unit> |
12877 | <trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 12902 | <trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
12878 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source> | 12903 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source> |
12879 | <context-group purpose="location"> | 12904 | <context-group purpose="location"> |
12880 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12905 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12881 | <context context-type="linenumber">793</context> | 12906 | <context context-type="linenumber">803</context> |
12882 | </context-group> | 12907 | </context-group> |
12883 | <context-group purpose="location"> | 12908 | <context-group purpose="location"> |
12884 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12909 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12885 | <context context-type="linenumber">935</context> | 12910 | <context context-type="linenumber">925</context> |
12886 | </context-group> | 12911 | </context-group> |
12887 | </trans-unit> | 12912 | </trans-unit> |
12888 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 12913 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
12889 | <source>TRANSCODING</source> | 12914 | <source> Enable users of your instance to stream live. </source> |
12890 | <context-group purpose="location"> | 12915 | <context-group purpose="location"> |
12891 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12916 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12892 | <context context-type="linenumber">836</context> | 12917 | <context context-type="linenumber">848,849</context> |
12893 | </context-group> | 12918 | </context-group> |
12894 | </trans-unit> | 12919 | </trans-unit> |
12895 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 12920 | <trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
12896 | <source> 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. </source> | 12921 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source> |
12897 | <context-group purpose="location"> | 12922 | <context-group purpose="location"> |
12898 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12923 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12899 | <context context-type="linenumber">838,840</context> | 12924 | <context context-type="linenumber">863,864</context> |
12900 | </context-group> | 12925 | </context-group> |
12901 | </trans-unit> | 12926 | </trans-unit> |
12902 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 12927 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
12903 | <source>Allow additional extensions</source> | 12928 | <source>Allow your users to automatically publish a replay of their live</source> |
12904 | <context-group purpose="location"> | 12929 | <context-group purpose="location"> |
12905 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12930 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12906 | <context context-type="linenumber">862</context> | 12931 | <context context-type="linenumber">871</context> |
12907 | </context-group> | 12932 | </context-group> |
12908 | </trans-unit> | 12933 | </trans-unit> |
12909 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 12934 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
12910 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 12935 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source> |
12911 | <context-group purpose="location"> | 12936 | <context-group purpose="location"> |
12912 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12937 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12913 | <context context-type="linenumber">865</context> | 12938 | <context context-type="linenumber">874,875</context> |
12914 | </context-group> | 12939 | </context-group> |
12915 | </trans-unit> | 12940 | </trans-unit> |
12916 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 12941 | <trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
12917 | <source>Allow audio files upload</source> | 12942 | <source>Max lives created on your instance (-1 for "unlimited")</source> |
12918 | <context-group purpose="location"> | 12943 | <context-group purpose="location"> |
12919 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12944 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12920 | <context context-type="linenumber">873</context> | 12945 | <context context-type="linenumber">880</context> |
12921 | </context-group> | 12946 | </context-group> |
12922 | </trans-unit> | 12947 | </trans-unit> |
12923 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 12948 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
12924 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 12949 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
12925 | <context-group purpose="location"> | 12950 | <context-group purpose="location"> |
12926 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12951 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12927 | <context context-type="linenumber">876</context> | 12952 | <context context-type="linenumber">883</context> |
12928 | </context-group> | 12953 | </context-group> |
12929 | </trans-unit> | 12954 | </trans-unit> |
12930 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 12955 | <trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
12931 | <source>WebTorrent support enabled</source> | 12956 | <source>Max lives created per user (-1 for "unlimited")</source> |
12932 | <context-group purpose="location"> | 12957 | <context-group purpose="location"> |
12933 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12958 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12934 | <context context-type="linenumber">885</context> | 12959 | <context context-type="linenumber">888</context> |
12935 | </context-group> | 12960 | </context-group> |
12936 | </trans-unit> | 12961 | </trans-unit> |
12937 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 12962 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
12938 | <source>HLS with P2P support enabled</source> | 12963 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
12939 | <context-group purpose="location"> | 12964 | <context-group purpose="location"> |
12940 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12965 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12941 | <context context-type="linenumber">906</context> | 12966 | <context context-type="linenumber">891</context> |
12942 | </context-group> | 12967 | </context-group> |
12943 | </trans-unit> | 12968 | </trans-unit> |
12944 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 12969 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
12945 | <source>Transcoding threads</source> | 12970 | <source>Max live duration</source> |
12946 | <context-group purpose="location"> | 12971 | <context-group purpose="location"> |
12947 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12972 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12948 | <context context-type="linenumber">931</context> | 12973 | <context context-type="linenumber">896</context> |
12949 | </context-group> | 12974 | </context-group> |
12950 | </trans-unit> | 12975 | </trans-unit> |
12951 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 12976 | <trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
12952 | <source>Resolutions to generate</source> | 12977 | <source>Enable live transcoding</source> |
12978 | <context-group purpose="location"> | ||
12979 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
12980 | <context context-type="linenumber">912</context> | ||
12981 | </context-group> | ||
12982 | </trans-unit> | ||
12983 | <trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | ||
12984 | <source> Requires a lot of CPU! </source> | ||
12953 | <context-group purpose="location"> | 12985 | <context-group purpose="location"> |
12954 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 12986 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12955 | <context context-type="linenumber">944</context> | 12987 | <context context-type="linenumber">915,916</context> |
12988 | </context-group> | ||
12989 | </trans-unit> | ||
12990 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | ||
12991 | <source>Live transcoding threads</source> | ||
12992 | <context-group purpose="location"> | ||
12993 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
12994 | <context context-type="linenumber">921</context> | ||
12995 | </context-group> | ||
12996 | </trans-unit> | ||
12997 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | ||
12998 | <source>Live resolutions to generate</source> | ||
12999 | <context-group purpose="location"> | ||
13000 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
13001 | <context context-type="linenumber">933</context> | ||
13002 | </context-group> | ||
13003 | </trans-unit> | ||
13004 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | ||
13005 | <source>Allow live streaming</source> | ||
13006 | <context-group purpose="location"> | ||
13007 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
13008 | <context context-type="linenumber">859</context> | ||
12956 | </context-group> | 13009 | </context-group> |
12957 | </trans-unit> | 13010 | </trans-unit> |
12958 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 13011 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
12959 | <source>CACHE</source> | 13012 | <source>CACHE</source> |
12960 | <context-group purpose="location"> | 13013 | <context-group purpose="location"> |
12961 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13014 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12962 | <context context-type="linenumber">970</context> | 13015 | <context context-type="linenumber">968</context> |
12963 | </context-group> | 13016 | </context-group> |
12964 | </trans-unit> | 13017 | </trans-unit> |
12965 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 13018 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
12966 | <source> Some files are not federated, and fetched when necessary. Define their caching policies. </source> | 13019 | <source> Some files are not federated, and fetched when necessary. Define their caching policies. </source> |
12967 | <context-group purpose="location"> | 13020 | <context-group purpose="location"> |
12968 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13021 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12969 | <context context-type="linenumber">972,973</context> | 13022 | <context context-type="linenumber">970,971</context> |
12970 | </context-group> | 13023 | </context-group> |
12971 | </trans-unit> | 13024 | </trans-unit> |
12972 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 13025 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
12973 | <source>Number of previews to keep in cache</source> | 13026 | <source>Number of previews to keep in cache</source> |
12974 | <context-group purpose="location"> | 13027 | <context-group purpose="location"> |
12975 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13028 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12976 | <context context-type="linenumber">980</context> | 13029 | <context context-type="linenumber">978</context> |
12977 | </context-group> | 13030 | </context-group> |
12978 | </trans-unit> | 13031 | </trans-unit> |
12979 | <trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 13032 | <trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
12980 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | 13033 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> |
12981 | <context-group purpose="location"> | 13034 | <context-group purpose="location"> |
12982 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13035 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12983 | <context context-type="linenumber">986</context> | 13036 | <context context-type="linenumber">984</context> |
12984 | </context-group> | 13037 | </context-group> |
12985 | </trans-unit> | 13038 | </trans-unit> |
12986 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 13039 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
12987 | <source>Number of video captions to keep in cache</source> | 13040 | <source>Number of video captions to keep in cache</source> |
12988 | <context-group purpose="location"> | 13041 | <context-group purpose="location"> |
12989 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13042 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12990 | <context context-type="linenumber">992</context> | 13043 | <context context-type="linenumber">990</context> |
12991 | </context-group> | 13044 | </context-group> |
12992 | </trans-unit> | 13045 | </trans-unit> |
12993 | <trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 13046 | <trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
12994 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | 13047 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> |
12995 | <context-group purpose="location"> | 13048 | <context-group purpose="location"> |
12996 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13049 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
12997 | <context context-type="linenumber">998</context> | 13050 | <context context-type="linenumber">996</context> |
12998 | </context-group> | 13051 | </context-group> |
12999 | </trans-unit> | 13052 | </trans-unit> |
13000 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 13053 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
13001 | <source>CUSTOMIZATIONS</source> | 13054 | <source>CUSTOMIZATIONS</source> |
13002 | <context-group purpose="location"> | 13055 | <context-group purpose="location"> |
13003 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13056 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13004 | <context context-type="linenumber">1010</context> | 13057 | <context context-type="linenumber">1008</context> |
13005 | </context-group> | 13058 | </context-group> |
13006 | </trans-unit> | 13059 | </trans-unit> |
13007 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 13060 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
13008 | <source> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </source> | 13061 | <source> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </source> |
13009 | <context-group purpose="location"> | 13062 | <context-group purpose="location"> |
13010 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13063 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13011 | <context context-type="linenumber">1012,1013</context> | 13064 | <context context-type="linenumber">1010,1011</context> |
13012 | </context-group> | 13065 | </context-group> |
13013 | </trans-unit> | 13066 | </trans-unit> |
13014 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 13067 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
13015 | <source>JavaScript</source> | 13068 | <source>JavaScript</source> |
13016 | <context-group purpose="location"> | 13069 | <context-group purpose="location"> |
13017 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13070 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13018 | <context context-type="linenumber">1021</context> | 13071 | <context context-type="linenumber">1019</context> |
13019 | </context-group> | ||
13020 | </trans-unit> | ||
13021 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | ||
13022 | <source>Transcoding enabled</source> | ||
13023 | <context-group purpose="location"> | ||
13024 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
13025 | <context context-type="linenumber">850</context> | ||
13026 | </context-group> | ||
13027 | </trans-unit> | ||
13028 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> | ||
13029 | <source>If you disable transcoding, many videos from your users will not work!</source> | ||
13030 | <context-group purpose="location"> | ||
13031 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
13032 | <context context-type="linenumber">854</context> | ||
13033 | </context-group> | ||
13034 | </trans-unit> | ||
13035 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | ||
13036 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
13037 | |||
13038 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
13039 | <context-group purpose="location"> | ||
13040 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
13041 | <context context-type="linenumber">889,895</context> | ||
13042 | </context-group> | ||
13043 | </trans-unit> | ||
13044 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | ||
13045 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | ||
13046 | "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | ||
13047 | <context-group purpose="location"> | ||
13048 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
13049 | <context context-type="linenumber">910,919</context> | ||
13050 | </context-group> | 13072 | </context-group> |
13051 | </trans-unit> | 13073 | </trans-unit> |
13052 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 13074 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
13053 | <source> Write JavaScript code directly.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/>Example: <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | 13075 | <source> Write JavaScript code directly.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/>Example: <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
13054 | <context-group purpose="location"> | 13076 | <context-group purpose="location"> |
13055 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13077 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13056 | <context context-type="linenumber">1025</context> | 13078 | <context context-type="linenumber">1023</context> |
13057 | </context-group> | 13079 | </context-group> |
13058 | </trans-unit> | 13080 | </trans-unit> |
13059 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 13081 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
@@ -13070,21 +13092,21 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
13070 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | 13092 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
13071 | <context-group purpose="location"> | 13093 | <context-group purpose="location"> |
13072 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13094 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13073 | <context context-type="linenumber">1044,1055</context> | 13095 | <context context-type="linenumber">1042,1053</context> |
13074 | </context-group> | 13096 | </context-group> |
13075 | </trans-unit> | 13097 | </trans-unit> |
13076 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 13098 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
13077 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source> | 13099 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source> |
13078 | <context-group purpose="location"> | 13100 | <context-group purpose="location"> |
13079 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13101 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13080 | <context context-type="linenumber">1082,1083</context> | 13102 | <context context-type="linenumber">1080,1081</context> |
13081 | </context-group> | 13103 | </context-group> |
13082 | </trans-unit> | 13104 | </trans-unit> |
13083 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 13105 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
13084 | <source> You cannot allow live replay if you don't enable transcoding. </source> | 13106 | <source> You cannot allow live replay if you don't enable transcoding. </source> |
13085 | <context-group purpose="location"> | 13107 | <context-group purpose="location"> |
13086 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 13108 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
13087 | <context context-type="linenumber">1086,1087</context> | 13109 | <context context-type="linenumber">1084,1085</context> |
13088 | </context-group> | 13110 | </context-group> |
13089 | </trans-unit> | 13111 | </trans-unit> |
13090 | <trans-unit id="1886888801485703107" datatype="html"> | 13112 | <trans-unit id="1886888801485703107" datatype="html"> |
@@ -13475,27 +13497,6 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
13475 | <context context-type="linenumber">177</context> | 13497 | <context context-type="linenumber">177</context> |
13476 | </context-group> | 13498 | </context-group> |
13477 | </trans-unit> | 13499 | </trans-unit> |
13478 | <trans-unit id="4267638333776227701" datatype="html"> | ||
13479 | <source>Comment is required.</source> | ||
13480 | <context-group purpose="location"> | ||
13481 | <context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context> | ||
13482 | <context context-type="linenumber">7</context> | ||
13483 | </context-group> | ||
13484 | </trans-unit> | ||
13485 | <trans-unit id="71132671234491945" datatype="html"> | ||
13486 | <source>Comment must be at least 2 characters long.</source> | ||
13487 | <context-group purpose="location"> | ||
13488 | <context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context> | ||
13489 | <context context-type="linenumber">8</context> | ||
13490 | </context-group> | ||
13491 | </trans-unit> | ||
13492 | <trans-unit id="4148250392704331190" datatype="html"> | ||
13493 | <source>Comment cannot be more than 3000 characters long.</source> | ||
13494 | <context-group purpose="location"> | ||
13495 | <context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context> | ||
13496 | <context context-type="linenumber">9</context> | ||
13497 | </context-group> | ||
13498 | </trans-unit> | ||
13499 | <trans-unit id="2520968456492632777" datatype="html"> | 13500 | <trans-unit id="2520968456492632777" datatype="html"> |
13500 | <source><x id="PH" equiv-text="handle"/> accepted in instance followers</source> | 13501 | <source><x id="PH" equiv-text="handle"/> accepted in instance followers</source> |
13501 | <context-group purpose="location"> | 13502 | <context-group purpose="location"> |
@@ -13587,6 +13588,27 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
13587 | <context context-type="linenumber">69</context> | 13588 | <context context-type="linenumber">69</context> |
13588 | </context-group> | 13589 | </context-group> |
13589 | </trans-unit> | 13590 | </trans-unit> |
13591 | <trans-unit id="4267638333776227701" datatype="html"> | ||
13592 | <source>Comment is required.</source> | ||
13593 | <context-group purpose="location"> | ||
13594 | <context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context> | ||
13595 | <context context-type="linenumber">7</context> | ||
13596 | </context-group> | ||
13597 | </trans-unit> | ||
13598 | <trans-unit id="71132671234491945" datatype="html"> | ||
13599 | <source>Comment must be at least 2 characters long.</source> | ||
13600 | <context-group purpose="location"> | ||
13601 | <context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context> | ||
13602 | <context context-type="linenumber">8</context> | ||
13603 | </context-group> | ||
13604 | </trans-unit> | ||
13605 | <trans-unit id="4148250392704331190" datatype="html"> | ||
13606 | <source>Comment cannot be more than 3000 characters long.</source> | ||
13607 | <context-group purpose="location"> | ||
13608 | <context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context> | ||
13609 | <context context-type="linenumber">9</context> | ||
13610 | </context-group> | ||
13611 | </trans-unit> | ||
13590 | <trans-unit id="1099619384694370156" datatype="html"> | 13612 | <trans-unit id="1099619384694370156" datatype="html"> |
13591 | <source>Video caption language is required.</source> | 13613 | <source>Video caption language is required.</source> |
13592 | <context-group purpose="location"> | 13614 | <context-group purpose="location"> |
diff --git a/client/src/locale/angular.zh-Hans-CN.xlf b/client/src/locale/angular.zh-Hans-CN.xlf index 91f2724c8..0a08bfc75 100644 --- a/client/src/locale/angular.zh-Hans-CN.xlf +++ b/client/src/locale/angular.zh-Hans-CN.xlf | |||
@@ -422,19 +422,27 @@ | |||
422 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 422 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
423 | </target> | 423 | </target> |
424 | 424 | ||
425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="966a63453b7b12a8e6a275f21266c23bfe7dfe9b" datatype="html"> |
426 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
427 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | ||
428 | "/> </target> | ||
429 | <context-group purpose="location"> | ||
430 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
431 | <context context-type="linenumber">32,33</context> | ||
432 | </context-group> | ||
433 | </trans-unit> | ||
426 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 434 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
427 | <source>Blocked</source> | 435 | <source>Blocked</source> |
428 | <target state="new">Blocked</target> | 436 | <target state="new">Blocked</target> |
429 | 437 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> |
431 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 439 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
432 | <source>Sensitive</source> | 440 | <source>Sensitive</source> |
433 | <target> | 441 | <target> |
434 | 敏感 | 442 | 敏感 |
435 | </target> | 443 | </target> |
436 | 444 | ||
437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> |
438 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 446 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
439 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 447 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
440 | <target>{VAR_PLURAL, plural, =0 {没有视频} =1 {1 条视频} other { | 448 | <target>{VAR_PLURAL, plural, =0 {没有视频} =1 {1 条视频} other { |
@@ -1206,13 +1214,7 @@ The link will expire within 1 hour.</target> | |||
1206 | <target state="new">Sensitive:</target> | 1214 | <target state="new">Sensitive:</target> |
1207 | 1215 | ||
1208 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 1216 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> |
1209 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1217 | |
1210 | <source>Interface: <x id="INTERPOLATION"/></source> | ||
1211 | <target state="new">Interface: | ||
1212 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | ||
1213 | </target> | ||
1214 | |||
1215 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
1216 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1218 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1217 | <source>Help share videos</source> | 1219 | <source>Help share videos</source> |
1218 | <target state="new">Help share videos</target> | 1220 | <target state="new">Help share videos</target> |
@@ -1296,7 +1298,13 @@ The link will expire within 1 hour.</target> | |||
1296 | <source>Videos</source> | 1298 | <source>Videos</source> |
1297 | <target>视频</target> | 1299 | <target>视频</target> |
1298 | 1300 | ||
1299 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 1301 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1302 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | ||
1303 | <context-group purpose="location"> | ||
1304 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | ||
1305 | <context context-type="linenumber">171</context> | ||
1306 | </context-group> | ||
1307 | </trans-unit> | ||
1300 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1308 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1301 | <source>Playlists</source> | 1309 | <source>Playlists</source> |
1302 | <target>播放列表</target> | 1310 | <target>播放列表</target> |
@@ -1865,12 +1873,12 @@ The link will expire within 1 hour.</target> | |||
1865 | <source>Scheduled</source> | 1873 | <source>Scheduled</source> |
1866 | <target>定时发布</target> | 1874 | <target>定时发布</target> |
1867 | 1875 | ||
1868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 1876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> |
1869 | <trans-unit id="1435317307066082710" datatype="html"> | 1877 | <trans-unit id="1435317307066082710" datatype="html"> |
1870 | <source>Hide the video until a specific date</source> | 1878 | <source>Hide the video until a specific date</source> |
1871 | <target state="new">Hide the video until a specific date</target> | 1879 | <target state="new">Hide the video until a specific date</target> |
1872 | 1880 | ||
1873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> |
1874 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> | 1882 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d"> |
1875 | <source>Video background image</source> | 1883 | <source>Video background image</source> |
1876 | <target>视频背景图片</target> | 1884 | <target>视频背景图片</target> |
@@ -2507,7 +2515,7 @@ The link will expire within 1 hour.</target> | |||
2507 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2515 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2508 | <context context-type="linenumber">8</context> | 2516 | <context context-type="linenumber">8</context> |
2509 | </context-group> | 2517 | </context-group> |
2510 | </trans-unit><trans-unit id="b008e7aaf088bc346158605400cbf7252e9e0842" datatype="html"> | 2518 | </trans-unit><trans-unit id="c6536b56d511323d91cdea2afb96247e019f41e6" datatype="html"> |
2511 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> | 2519 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. Make sure to keep your token private. </target> |
2512 | <context-group purpose="location"> | 2520 | <context-group purpose="location"> |
2513 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2521 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
@@ -4034,107 +4042,97 @@ The link will expire within 1 hour.</target> | |||
4034 | <source>Basic configuration</source> | 4042 | <source>Basic configuration</source> |
4035 | <target>基本配置</target> | 4043 | <target>基本配置</target> |
4036 | 4044 | ||
4037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit> | 4045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> |
4046 | <source>Transcoding</source><target state="new">Transcoding</target> | ||
4047 | <context-group purpose="location"> | ||
4048 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4049 | <context context-type="linenumber">700</context> | ||
4050 | </context-group> | ||
4051 | </trans-unit> | ||
4038 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4052 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4039 | <source>TWITTER</source> | 4053 | <source>TWITTER</source> |
4040 | <target state="new">TWITTER</target> | 4054 | <target state="new">TWITTER</target> |
4041 | 4055 | ||
4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">660</context></context-group></trans-unit> | 4056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit> |
4043 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> | 4057 | <trans-unit id="31f11266d05b7a427477a8a9056a717ce332cfe3" datatype="html"> |
4044 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> | 4058 | <source>Optional. If any, provide the Twitter account representing your instance to improve link previews.</source> |
4045 | <target state="new"> | 4059 | <target state="new"> |
4046 | Optional. If any, provide the Twitter account representing your instance to improve link previews. | 4060 | Optional. If any, provide the Twitter account representing your instance to improve link previews. |
4047 | </target> | 4061 | </target> |
4048 | 4062 | ||
4049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">662</context></context-group></trans-unit> | 4063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit> |
4050 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4064 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4051 | <source>Your Twitter username</source> | 4065 | <source>Your Twitter username</source> |
4052 | <target>您的 Twitter 用户名</target> | 4066 | <target>您的 Twitter 用户名</target> |
4053 | 4067 | ||
4054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">672</context></context-group></trans-unit> | 4068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">664</context></context-group></trans-unit> |
4055 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4069 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4056 | <source>Instance allowed by Twitter</source> | 4070 | <source>Instance allowed by Twitter</source> |
4057 | <target state="new">Instance allowed by Twitter</target> | 4071 | <target state="new">Instance allowed by Twitter</target> |
4058 | 4072 | ||
4059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">684</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">676</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4060 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4074 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4061 | 4075 | ||
4062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">689</context></context-group></trans-unit> | 4076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">681</context></context-group></trans-unit> |
4063 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4077 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4064 | <source>LIVE</source><target state="new">LIVE</target> | 4078 | <source>LIVE</source><target state="new">LIVE</target> |
4065 | 4079 | ||
4066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4080 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">846</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4067 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4081 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> |
4068 | 4082 | ||
4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> | 4083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">848</context></context-group></trans-unit><trans-unit id="096cf20ca04c42d7a06b9c0b3730e938f7662f57" datatype="html"> |
4070 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> | 4084 | <source> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </source><target state="new"> ⚠️ Enabling live streaming requires trust in your users and extra moderation work </target> |
4071 | 4085 | ||
4072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">863</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4073 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4087 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> |
4074 | 4088 | ||
4075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">739</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> |
4076 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4090 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4077 | 4091 | ||
4078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> | 4092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="da82c27f10ef6f1af1db305fe3f4ec29ed191878" datatype="html"> |
4079 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> | 4093 | <source>Max lives created on your instance (-1 for "unlimited")</source><target state="new">Max lives created on your instance (-1 for "unlimited")</target> |
4080 | 4094 | ||
4081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">880</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4082 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4096 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4083 | <context-group purpose="location"> | 4097 | |
4084 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> |
4085 | <context context-type="linenumber">751</context> | ||
4086 | </context-group> | ||
4087 | </trans-unit><trans-unit id="7cb03878e0d89e67d48c707512e876ddb8658a6b" datatype="html"> | ||
4088 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> | 4099 | <source>Max lives created per user (-1 for "unlimited")</source><target state="new">Max lives created per user (-1 for "unlimited")</target> |
4089 | 4100 | ||
4090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">756</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">888</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4091 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4102 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4092 | <context-group purpose="location"> | 4103 | |
4093 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4094 | <context context-type="linenumber">759</context> | ||
4095 | </context-group> | ||
4096 | </trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | ||
4097 | <source>Max live duration</source><target state="new">Max live duration</target> | 4105 | <source>Max live duration</source><target state="new">Max live duration</target> |
4098 | 4106 | ||
4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> | 4107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="19689f977565ebbf2a7ef115905e3c681917c57b" datatype="html"> |
4100 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> | 4108 | <source>Enable live transcoding</source><target state="new">Enable live transcoding</target> |
4101 | 4109 | ||
4102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">780</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> | 4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">912</context></context-group></trans-unit><trans-unit id="fa4fcf11774c461346d54d0a210a20f8fbe571a2" datatype="html"> |
4103 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> | 4111 | <source> Requires a lot of CPU! </source><target state="new"> Requires a lot of CPU! </target> |
4104 | 4112 | ||
4105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">915</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> |
4106 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4114 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> |
4107 | 4115 | ||
4108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">789</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">921</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> |
4109 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4117 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> |
4110 | 4118 | ||
4111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">801</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">933</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> |
4112 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4120 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> |
4113 | 4121 | ||
4114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">727</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> |
4115 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4123 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> |
4116 | <context-group purpose="location"> | ||
4117 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4118 | <context context-type="linenumber">793</context> | ||
4119 | </context-group> | ||
4120 | <context-group purpose="location"> | ||
4121 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4122 | <context context-type="linenumber">935</context> | ||
4123 | </context-group> | ||
4124 | </trans-unit> | ||
4125 | <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> | ||
4126 | <source>Services</source> | ||
4127 | <target>服务</target> | ||
4128 | 4124 | ||
4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">654</context></context-group></trans-unit><trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4125 | |
4126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">803</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">925</context></context-group></trans-unit> | ||
4127 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | ||
4130 | <source>Live streaming</source><target state="new">Live streaming</target> | 4128 | <source>Live streaming</source><target state="new">Live streaming</target> |
4131 | 4129 | ||
4132 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> | 4130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">840</context></context-group></trans-unit> |
4133 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4131 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4134 | <source>TRANSCODING</source> | 4132 | <source>TRANSCODING</source> |
4135 | <target state="new">TRANSCODING</target> | 4133 | <target state="new">TRANSCODING</target> |
4136 | 4134 | ||
4137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">836</context></context-group></trans-unit> | 4135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">706</context></context-group></trans-unit> |
4138 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4136 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4139 | <source>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.</source> | 4137 | <source>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.</source> |
4140 | <target state="new"> | 4138 | <target state="new"> |
@@ -4142,55 +4140,53 @@ The link will expire within 1 hour.</target> | |||
4142 | resources, this is a critical part of PeerTube, so tread carefully. | 4140 | resources, this is a critical part of PeerTube, so tread carefully. |
4143 | </target> | 4141 | </target> |
4144 | 4142 | ||
4145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">838</context></context-group></trans-unit> | 4143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">708</context></context-group></trans-unit> |
4146 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4144 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4147 | <source>Transcoding enabled</source> | 4145 | <source>Transcoding enabled</source> |
4148 | <target>启用转码</target> | 4146 | <target>启用转码</target> |
4149 | 4147 | ||
4150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">720</context></context-group></trans-unit> |
4151 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> | 4149 | <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> |
4152 | <source>If you disable transcoding, many videos from your users will not work!</source> | 4150 | <source>If you disable transcoding, many videos from your users will not work!</source> |
4153 | <target>如果禁用转码,用户上传的视频很有可能无法正常播放!</target> | 4151 | <target>如果禁用转码,用户上传的视频很有可能无法正常播放!</target> |
4154 | 4152 | ||
4155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">854</context></context-group></trans-unit> | 4153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">724</context></context-group></trans-unit><trans-unit id="f0310168e8e770e38348719e8c8ea17db59c30e4" datatype="html"> |
4154 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4155 | |||
4156 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4157 | |||
4158 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
4159 | <context-group purpose="location"> | ||
4160 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | ||
4161 | <context context-type="linenumber">759,763</context> | ||
4162 | </context-group> | ||
4163 | </trans-unit> | ||
4156 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> | 4164 | <trans-unit id="89b449293480a19f931439c5064d53879176fc17" datatype="html"> |
4157 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> | 4165 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</source> |
4158 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> | 4166 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos.</target> |
4159 | 4167 | ||
4160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">865</context></context-group></trans-unit> | 4168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">735</context></context-group></trans-unit> |
4161 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4169 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4162 | <source>Allow additional extensions</source> | 4170 | <source>Allow additional extensions</source> |
4163 | <target>允许额外的拓展</target> | 4171 | <target>允许额外的拓展</target> |
4164 | 4172 | ||
4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">862</context></context-group></trans-unit> | 4173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">732</context></context-group></trans-unit> |
4166 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> | 4174 | <trans-unit id="abdec139a0b513ddbd4549284c38dc60e96bb477" datatype="html"> |
4167 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> | 4175 | <source>Allows users to upload audio files that will be merged with the preview file on upload.</source> |
4168 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> | 4176 | <target state="new">Allows users to upload audio files that will be merged with the preview file on upload.</target> |
4169 | 4177 | ||
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">876</context></context-group></trans-unit> | 4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">746</context></context-group></trans-unit> |
4171 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 4179 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
4172 | <source>Allow audio files upload</source> | 4180 | <source>Allow audio files upload</source> |
4173 | <target>允许上传音频文件</target> | 4181 | <target>允许上传音频文件</target> |
4174 | 4182 | ||
4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">873</context></context-group></trans-unit> | 4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">743</context></context-group></trans-unit> |
4176 | <trans-unit id="1f83d0ff227c35b5631a2b2f78067b3e915cdb59" datatype="html"> | 4184 | |
4177 | <source><x id="START_TAG_STRONG"/>Experimental, we suggest you to not disable webtorrent support for now<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/><x id="LINE_BREAK"/><x id="START_TAG_STRONG"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG"/></source> | ||
4178 | <target state="new"> | ||
4179 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Experimental, we suggest you to not disable webtorrent support for now | ||
4180 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4181 | <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2 | ||
4182 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | ||
4183 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
4184 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1 | ||
4185 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | ||
4186 | </target> | ||
4187 | |||
4188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">889</context></context-group></trans-unit> | ||
4189 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> | 4185 | <trans-unit id="ff852c5a22beaff7a8c62447b0a96f9ced7c3ed6" datatype="html"> |
4190 | <source>WebTorrent support enabled</source> | 4186 | <source>WebTorrent support enabled</source> |
4191 | <target state="new">WebTorrent support enabled</target> | 4187 | <target state="new">WebTorrent support enabled</target> |
4192 | 4188 | ||
4193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">885</context></context-group></trans-unit> | 4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">755</context></context-group></trans-unit> |
4194 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 4190 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
4195 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 4191 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
4196 | <target state="new"> | 4192 | <target state="new"> |
@@ -4210,73 +4206,67 @@ The link will expire within 1 hour.</target> | |||
4210 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> | 4206 | <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/> |
4211 | </target> | 4207 | </target> |
4212 | 4208 | ||
4213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit> | 4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">778</context></context-group></trans-unit> |
4214 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4210 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4215 | <source>HLS with P2P support enabled</source> | 4211 | <source>HLS with P2P support enabled</source> |
4216 | <target state="new">HLS with P2P support enabled</target> | 4212 | <target state="new">HLS with P2P support enabled</target> |
4217 | 4213 | ||
4218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">906</context></context-group></trans-unit> | 4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">774</context></context-group></trans-unit> |
4219 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 4215 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4220 | <source>Transcoding threads</source> | 4216 | <source>Transcoding threads</source> |
4221 | <target>转码线程数</target> | 4217 | <target>转码线程数</target> |
4222 | 4218 | ||
4223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">931</context></context-group></trans-unit> | 4219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">799</context></context-group></trans-unit> |
4224 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> | 4220 | <trans-unit id="4f9162543288be617b88ad6fcae84325f11e31b6" datatype="html"> |
4225 | <source>Resolutions to generate</source> | 4221 | <source>Resolutions to generate</source> |
4226 | <target state="new">Resolutions to generate</target> | 4222 | <target state="new">Resolutions to generate</target> |
4227 | 4223 | ||
4228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">944</context></context-group></trans-unit> | 4224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">812</context></context-group></trans-unit> |
4229 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4225 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4230 | <source>CACHE</source> | 4226 | <source>CACHE</source> |
4231 | <target state="new">CACHE</target> | 4227 | <target state="new">CACHE</target> |
4232 | 4228 | ||
4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> | 4229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">968</context></context-group></trans-unit> |
4234 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4230 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4235 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4231 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4236 | <target state="new"> | 4232 | <target state="new"> |
4237 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4233 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4238 | </target> | 4234 | </target> |
4239 | 4235 | ||
4240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">972</context></context-group></trans-unit> | 4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">970</context></context-group></trans-unit> |
4241 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4237 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4242 | <source>Number of previews to keep in cache</source> | 4238 | <source>Number of previews to keep in cache</source> |
4243 | <target state="new">Number of previews to keep in cache</target> | 4239 | <target state="new">Number of previews to keep in cache</target> |
4244 | 4240 | ||
4245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">980</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">978</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4246 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4242 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4247 | <context-group purpose="location"> | 4243 | |
4248 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">984</context></context-group></trans-unit> |
4249 | <context context-type="linenumber">986</context> | ||
4250 | </context-group> | ||
4251 | </trans-unit> | ||
4252 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4245 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4253 | <source>Number of video captions to keep in cache</source> | 4246 | <source>Number of video captions to keep in cache</source> |
4254 | <target state="new">Number of video captions to keep in cache</target> | 4247 | <target state="new">Number of video captions to keep in cache</target> |
4255 | 4248 | ||
4256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4257 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4250 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4258 | <context-group purpose="location"> | 4251 | |
4259 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">996</context></context-group></trans-unit> |
4260 | <context context-type="linenumber">998</context> | ||
4261 | </context-group> | ||
4262 | </trans-unit> | ||
4263 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4253 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4264 | <source>CUSTOMIZATIONS</source> | 4254 | <source>CUSTOMIZATIONS</source> |
4265 | <target state="new">CUSTOMIZATIONS</target> | 4255 | <target state="new">CUSTOMIZATIONS</target> |
4266 | 4256 | ||
4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> | 4257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1008</context></context-group></trans-unit> |
4268 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4258 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4269 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4259 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4270 | <target state="new"> | 4260 | <target state="new"> |
4271 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4261 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4272 | </target> | 4262 | </target> |
4273 | 4263 | ||
4274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1012</context></context-group></trans-unit> | 4264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1010</context></context-group></trans-unit> |
4275 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 4265 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4276 | <source>JavaScript</source> | 4266 | <source>JavaScript</source> |
4277 | <target>JavaScript</target> | 4267 | <target>JavaScript</target> |
4278 | 4268 | ||
4279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1021</context></context-group></trans-unit> | 4269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1019</context></context-group></trans-unit> |
4280 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4270 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4281 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4271 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4282 | <target state="new"> | 4272 | <target state="new"> |
@@ -4286,7 +4276,7 @@ The link will expire within 1 hour.</target> | |||
4286 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4276 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4287 | </target> | 4277 | </target> |
4288 | 4278 | ||
4289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1025</context></context-group></trans-unit> | 4279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1023</context></context-group></trans-unit> |
4290 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4280 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4291 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 4281 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
4292 | color: red; | 4282 | color: red; |
@@ -4318,23 +4308,23 @@ The link will expire within 1 hour.</target> | |||
4318 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 4308 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4319 | </target> | 4309 | </target> |
4320 | 4310 | ||
4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1042</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4322 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 4312 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4323 | 4313 | ||
4324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1082</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1080</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
4325 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 4315 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
4326 | 4316 | ||
4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1086</context></context-group></trans-unit> | 4317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1084</context></context-group></trans-unit> |
4328 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 4318 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4329 | <source>Advanced configuration</source> | 4319 | <source>Advanced configuration</source> |
4330 | <target>高级设置</target> | 4320 | <target>高级设置</target> |
4331 | 4321 | ||
4332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">830</context></context-group></trans-unit> | 4322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">962</context></context-group></trans-unit> |
4333 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 4323 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4334 | <source>Update configuration</source> | 4324 | <source>Update configuration</source> |
4335 | <target>更新设置</target> | 4325 | <target>更新设置</target> |
4336 | 4326 | ||
4337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1089</context></context-group></trans-unit> | 4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1087</context></context-group></trans-unit> |
4338 | 4328 | ||
4339 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 4329 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4340 | <source>VIDEO SETTINGS</source> | 4330 | <source>VIDEO SETTINGS</source> |
@@ -7015,7 +7005,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7015 | <source>any language</source> | 7005 | <source>any language</source> |
7016 | <target state="new">any language</target> | 7006 | <target state="new">any language</target> |
7017 | 7007 | ||
7018 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7008 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7019 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7009 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> |
7020 | 7010 | ||
7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7011 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> |
@@ -7023,22 +7013,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7023 | <source>hide</source> | 7013 | <source>hide</source> |
7024 | <target state="new">hide</target> | 7014 | <target state="new">hide</target> |
7025 | 7015 | ||
7026 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7016 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">246</context></context-group></trans-unit> |
7027 | <trans-unit id="8603861867909474404" datatype="html"> | 7017 | <trans-unit id="8603861867909474404" datatype="html"> |
7028 | <source>blur</source> | 7018 | <source>blur</source> |
7029 | <target state="new">blur</target> | 7019 | <target state="new">blur</target> |
7030 | 7020 | ||
7031 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> |
7032 | <trans-unit id="4534458451100881847" datatype="html"> | 7022 | <trans-unit id="4534458451100881847" datatype="html"> |
7033 | <source>display</source> | 7023 | <source>display</source> |
7034 | <target state="new">display</target> | 7024 | <target state="new">display</target> |
7035 | 7025 | ||
7036 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7026 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> |
7037 | <trans-unit id="4467323362722952678" datatype="html"> | 7027 | <trans-unit id="4467323362722952678" datatype="html"> |
7038 | <source>Unknown</source> | 7028 | <source>Unknown</source> |
7039 | <target state="new">Unknown</target> | 7029 | <target state="new">Unknown</target> |
7040 | 7030 | ||
7041 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> | 7031 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> |
7042 | <trans-unit id="8781423666414310853"> | 7032 | <trans-unit id="8781423666414310853"> |
7043 | <source>Your password has been successfully reset!</source> | 7033 | <source>Your password has been successfully reset!</source> |
7044 | <target>密码重置成功!</target> | 7034 | <target>密码重置成功!</target> |
@@ -8021,12 +8011,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8021 | <source>Instance languages</source> | 8011 | <source>Instance languages</source> |
8022 | <target state="new">Instance languages</target> | 8012 | <target state="new">Instance languages</target> |
8023 | 8013 | ||
8024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 8014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">183</context></context-group></trans-unit> |
8025 | <trans-unit id="40119547597591062" datatype="html"> | 8015 | <trans-unit id="40119547597591062" datatype="html"> |
8026 | <source>All languages</source> | 8016 | <source>All languages</source> |
8027 | <target state="new">All languages</target> | 8017 | <target state="new">All languages</target> |
8028 | 8018 | ||
8029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 8019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> |
8030 | <trans-unit id="996392855508119363"> | 8020 | <trans-unit id="996392855508119363"> |
8031 | <source>Hidden</source> | 8021 | <source>Hidden</source> |
8032 | <target>已隐藏</target> | 8022 | <target>已隐藏</target> |
@@ -8775,7 +8765,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8775 | <source>Only users of this instance can see this video</source> | 8765 | <source>Only users of this instance can see this video</source> |
8776 | <target state="new">Only users of this instance can see this video</target> | 8766 | <target state="new">Only users of this instance can see this video</target> |
8777 | 8767 | ||
8778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 8768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> |
8769 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
8770 | <context-group purpose="location"> | ||
8771 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8772 | <context context-type="linenumber">211</context> | ||
8773 | </context-group> | ||
8774 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | ||
8775 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
8776 | <context-group purpose="location"> | ||
8777 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | ||
8778 | <context context-type="linenumber">214</context> | ||
8779 | </context-group> | ||
8780 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
8779 | <source>Close</source><target state="new">Close</target> | 8781 | <source>Close</source><target state="new">Close</target> |
8780 | 8782 | ||
8781 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 8783 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> |
diff --git a/client/src/main.ts b/client/src/main.ts index 2d1749c42..0fddf3aac 100644 --- a/client/src/main.ts +++ b/client/src/main.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { enableProdMode } from '@angular/core' | 1 | import { ApplicationRef, enableProdMode } from '@angular/core' |
2 | import { enableDebugTools } from '@angular/platform-browser' | ||
2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' | 3 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' |
3 | |||
4 | import { AppModule } from './app/app.module' | 4 | import { AppModule } from './app/app.module' |
5 | import { environment } from './environments/environment' | 5 | import { environment } from './environments/environment' |
6 | 6 | ||
@@ -27,6 +27,14 @@ const bootstrap = () => platformBrowserDynamic() | |||
27 | }) | 27 | }) |
28 | } | 28 | } |
29 | 29 | ||
30 | if (!environment.production) { | ||
31 | const applicationRef = bootstrapModule.injector.get(ApplicationRef) | ||
32 | const componentRef = applicationRef.components[0] | ||
33 | |||
34 | // allows to run `ng.profiler.timeChangeDetection();` | ||
35 | enableDebugTools(componentRef) | ||
36 | } | ||
37 | |||
30 | return bootstrapModule | 38 | return bootstrapModule |
31 | }) | 39 | }) |
32 | .catch(err => { | 40 | .catch(err => { |