diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-11 11:11:00 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-11 11:11:00 +0100 |
commit | 4495806f2f5045a0626ab64f43b5fc4deefe2ac0 (patch) | |
tree | e83b61b8da313fe1add571b9dd73261828c38cf9 | |
parent | 052bdb7c120b2ac7a1616a8072f9eedd2ab2f4b6 (diff) | |
parent | 58ae266bada2233945c4446220c22ccc4e7c62b5 (diff) | |
download | PeerTube-4495806f2f5045a0626ab64f43b5fc4deefe2ac0.tar.gz PeerTube-4495806f2f5045a0626ab64f43b5fc4deefe2ac0.tar.zst PeerTube-4495806f2f5045a0626ab64f43b5fc4deefe2ac0.zip |
Merge remote-tracking branch 'weblate/develop' into develop
47 files changed, 8191 insertions, 7373 deletions
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts index e3b6f8305..94f1021bf 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts | |||
@@ -189,6 +189,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { | |||
189 | maxInstanceLives: MAX_INSTANCE_LIVES_VALIDATOR, | 189 | maxInstanceLives: MAX_INSTANCE_LIVES_VALIDATOR, |
190 | maxUserLives: MAX_USER_LIVES_VALIDATOR, | 190 | maxUserLives: MAX_USER_LIVES_VALIDATOR, |
191 | allowReplay: null, | 191 | allowReplay: null, |
192 | latencySetting: { | ||
193 | enabled: null | ||
194 | }, | ||
192 | 195 | ||
193 | transcoding: { | 196 | transcoding: { |
194 | enabled: null, | 197 | enabled: null, |
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html b/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html index 10d5278c1..8d6a4ce19 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html +++ b/client/src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html | |||
@@ -36,6 +36,18 @@ | |||
36 | </my-peertube-checkbox> | 36 | </my-peertube-checkbox> |
37 | </div> | 37 | </div> |
38 | 38 | ||
39 | <div class="form-group" formGroupName="latencySetting" [ngClass]="getDisabledLiveClass()"> | ||
40 | <my-peertube-checkbox | ||
41 | inputName="liveLatencySettingEnabled" formControlName="enabled" | ||
42 | i18n-labelText labelText="Allow your users to change live latency" | ||
43 | > | ||
44 | <ng-container ngProjectAs="description" i18n> | ||
45 | Small latency disables P2P and high latency can increase P2P ratio | ||
46 | </ng-container> | ||
47 | |||
48 | </my-peertube-checkbox> | ||
49 | </div> | ||
50 | |||
39 | <div class="form-group" [ngClass]="getDisabledLiveClass()"> | 51 | <div class="form-group" [ngClass]="getDisabledLiveClass()"> |
40 | <label i18n for="liveMaxInstanceLives"> | 52 | <label i18n for="liveMaxInstanceLives"> |
41 | Max simultaneous lives created on your instance <span class="text-muted">(-1 for "unlimited")</span> | 53 | Max simultaneous lives created on your instance <span class="text-muted">(-1 for "unlimited")</span> |
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.html b/client/src/app/+videos/+video-edit/shared/video-edit.component.html index 2281f8631..515daf15f 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.html +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.html | |||
@@ -289,6 +289,17 @@ | |||
289 | </ng-container> | 289 | </ng-container> |
290 | </my-peertube-checkbox> | 290 | </my-peertube-checkbox> |
291 | </div> | 291 | </div> |
292 | |||
293 | <div class="form-group" *ngIf="isLatencyModeEnabled()"> | ||
294 | <label i18n for="latencyMode">Latency mode</label> | ||
295 | <my-select-options | ||
296 | labelForId="latencyMode" [items]="latencyModes" formControlName="latencyMode" [clearable]="true" | ||
297 | ></my-select-options> | ||
298 | |||
299 | <div *ngIf="formErrors.latencyMode" class="form-error"> | ||
300 | {{ formErrors.latencyMode }} | ||
301 | </div> | ||
302 | </div> | ||
292 | </div> | 303 | </div> |
293 | </div> | 304 | </div> |
294 | </ng-template> | 305 | </ng-template> |
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts index 2801fc519..a2399eafb 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { forkJoin } from 'rxjs' | 1 | import { forkJoin } from 'rxjs' |
2 | import { map } from 'rxjs/operators' | 2 | import { map } from 'rxjs/operators' |
3 | import { SelectChannelItem } from 'src/types/select-options-item.model' | 3 | import { SelectChannelItem, SelectOptionsItem } from 'src/types/select-options-item.model' |
4 | import { ChangeDetectorRef, Component, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output, ViewChild } from '@angular/core' | 4 | import { ChangeDetectorRef, Component, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output, ViewChild } from '@angular/core' |
5 | import { AbstractControl, FormArray, FormControl, FormGroup, Validators } from '@angular/forms' | 5 | import { AbstractControl, FormArray, FormControl, FormGroup, Validators } from '@angular/forms' |
6 | import { HooksService, PluginService, ServerService } from '@app/core' | 6 | import { HooksService, PluginService, ServerService } from '@app/core' |
@@ -26,6 +26,7 @@ import { PluginInfo } from '@root-helpers/plugins-manager' | |||
26 | import { | 26 | import { |
27 | HTMLServerConfig, | 27 | HTMLServerConfig, |
28 | LiveVideo, | 28 | LiveVideo, |
29 | LiveVideoLatencyMode, | ||
29 | RegisterClientFormFieldOptions, | 30 | RegisterClientFormFieldOptions, |
30 | RegisterClientVideoFieldOptions, | 31 | RegisterClientVideoFieldOptions, |
31 | VideoConstant, | 32 | VideoConstant, |
@@ -78,6 +79,23 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
78 | videoCategories: VideoConstant<number>[] = [] | 79 | videoCategories: VideoConstant<number>[] = [] |
79 | videoLicences: VideoConstant<number>[] = [] | 80 | videoLicences: VideoConstant<number>[] = [] |
80 | videoLanguages: VideoLanguages[] = [] | 81 | videoLanguages: VideoLanguages[] = [] |
82 | latencyModes: SelectOptionsItem[] = [ | ||
83 | { | ||
84 | id: LiveVideoLatencyMode.SMALL_LATENCY, | ||
85 | label: $localize`Small latency`, | ||
86 | description: $localize`Reduce latency to ~15s disabling P2P` | ||
87 | }, | ||
88 | { | ||
89 | id: LiveVideoLatencyMode.DEFAULT, | ||
90 | label: $localize`Default`, | ||
91 | description: $localize`Average latency of 30s` | ||
92 | }, | ||
93 | { | ||
94 | id: LiveVideoLatencyMode.HIGH_LATENCY, | ||
95 | label: $localize`High latency`, | ||
96 | description: $localize`Average latency of 60s increasing P2P ratio` | ||
97 | } | ||
98 | ] | ||
81 | 99 | ||
82 | pluginDataFormGroup: FormGroup | 100 | pluginDataFormGroup: FormGroup |
83 | 101 | ||
@@ -141,6 +159,7 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
141 | originallyPublishedAt: VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR, | 159 | originallyPublishedAt: VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR, |
142 | liveStreamKey: null, | 160 | liveStreamKey: null, |
143 | permanentLive: null, | 161 | permanentLive: null, |
162 | latencyMode: null, | ||
144 | saveReplay: null | 163 | saveReplay: null |
145 | } | 164 | } |
146 | 165 | ||
@@ -273,6 +292,10 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
273 | return this.form.value['permanentLive'] === true | 292 | return this.form.value['permanentLive'] === true |
274 | } | 293 | } |
275 | 294 | ||
295 | isLatencyModeEnabled () { | ||
296 | return this.serverConfig.live.latencySetting.enabled | ||
297 | } | ||
298 | |||
276 | isPluginFieldHidden (pluginField: PluginField) { | 299 | isPluginFieldHidden (pluginField: PluginField) { |
277 | if (typeof pluginField.commonOptions.hidden !== 'function') return false | 300 | if (typeof pluginField.commonOptions.hidden !== 'function') return false |
278 | 301 | ||
diff --git a/client/src/app/+videos/+video-edit/video-update.component.ts b/client/src/app/+videos/+video-edit/video-update.component.ts index d9e8344fc..9c4998f2e 100644 --- a/client/src/app/+videos/+video-edit/video-update.component.ts +++ b/client/src/app/+videos/+video-edit/video-update.component.ts | |||
@@ -64,6 +64,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { | |||
64 | if (this.liveVideo) { | 64 | if (this.liveVideo) { |
65 | this.form.patchValue({ | 65 | this.form.patchValue({ |
66 | saveReplay: this.liveVideo.saveReplay, | 66 | saveReplay: this.liveVideo.saveReplay, |
67 | latencyMode: this.liveVideo.latencyMode, | ||
67 | permanentLive: this.liveVideo.permanentLive | 68 | permanentLive: this.liveVideo.permanentLive |
68 | }) | 69 | }) |
69 | } | 70 | } |
@@ -127,7 +128,8 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { | |||
127 | 128 | ||
128 | const liveVideoUpdate: LiveVideoUpdate = { | 129 | const liveVideoUpdate: LiveVideoUpdate = { |
129 | saveReplay: !!this.form.value.saveReplay, | 130 | saveReplay: !!this.form.value.saveReplay, |
130 | permanentLive: !!this.form.value.permanentLive | 131 | permanentLive: !!this.form.value.permanentLive, |
132 | latencyMode: this.form.value.latencyMode | ||
131 | } | 133 | } |
132 | 134 | ||
133 | // Don't update live attributes if they did not change | 135 | // Don't update live attributes if they did not change |
diff --git a/client/src/app/+videos/+video-watch/video-watch.component.ts b/client/src/app/+videos/+video-watch/video-watch.component.ts index 1f45c4d26..067d3bc84 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { Hotkey, HotkeysService } from 'angular2-hotkeys' | 1 | import { Hotkey, HotkeysService } from 'angular2-hotkeys' |
2 | import { forkJoin, Subscription } from 'rxjs' | 2 | import { forkJoin, map, Observable, of, Subscription, switchMap } from 'rxjs' |
3 | import { isP2PEnabled } from 'src/assets/player/utils' | 3 | import { isP2PEnabled } from 'src/assets/player/utils' |
4 | import { PlatformLocation } from '@angular/common' | 4 | import { PlatformLocation } from '@angular/common' |
5 | import { Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core' | 5 | import { Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core' |
@@ -22,11 +22,13 @@ import { HooksService } from '@app/core/plugins/hooks.service' | |||
22 | import { isXPercentInViewport, scrollToTop } from '@app/helpers' | 22 | import { isXPercentInViewport, scrollToTop } from '@app/helpers' |
23 | import { Video, VideoCaptionService, VideoDetails, VideoService } from '@app/shared/shared-main' | 23 | import { Video, VideoCaptionService, VideoDetails, VideoService } from '@app/shared/shared-main' |
24 | import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription' | 24 | import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription' |
25 | import { LiveVideoService } from '@app/shared/shared-video-live' | ||
25 | import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' | 26 | import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' |
26 | import { timeToInt } from '@shared/core-utils' | 27 | import { timeToInt } from '@shared/core-utils' |
27 | import { | 28 | import { |
28 | HTMLServerConfig, | 29 | HTMLServerConfig, |
29 | HttpStatusCode, | 30 | HttpStatusCode, |
31 | LiveVideo, | ||
30 | PeerTubeProblemDocument, | 32 | PeerTubeProblemDocument, |
31 | ServerErrorCode, | 33 | ServerErrorCode, |
32 | VideoCaption, | 34 | VideoCaption, |
@@ -63,6 +65,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
63 | 65 | ||
64 | video: VideoDetails = null | 66 | video: VideoDetails = null |
65 | videoCaptions: VideoCaption[] = [] | 67 | videoCaptions: VideoCaption[] = [] |
68 | liveVideo: LiveVideo | ||
66 | 69 | ||
67 | playlistPosition: number | 70 | playlistPosition: number |
68 | playlist: VideoPlaylist = null | 71 | playlist: VideoPlaylist = null |
@@ -89,6 +92,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
89 | private router: Router, | 92 | private router: Router, |
90 | private videoService: VideoService, | 93 | private videoService: VideoService, |
91 | private playlistService: VideoPlaylistService, | 94 | private playlistService: VideoPlaylistService, |
95 | private liveVideoService: LiveVideoService, | ||
92 | private confirmService: ConfirmService, | 96 | private confirmService: ConfirmService, |
93 | private metaService: MetaService, | 97 | private metaService: MetaService, |
94 | private authService: AuthService, | 98 | private authService: AuthService, |
@@ -239,12 +243,21 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
239 | 'filter:api.video-watch.video.get.result' | 243 | 'filter:api.video-watch.video.get.result' |
240 | ) | 244 | ) |
241 | 245 | ||
246 | const videoAndLiveObs: Observable<{ video: VideoDetails, live?: LiveVideo }> = videoObs.pipe( | ||
247 | switchMap(video => { | ||
248 | if (!video.isLive) return of({ video }) | ||
249 | |||
250 | return this.liveVideoService.getVideoLive(video.uuid) | ||
251 | .pipe(map(live => ({ live, video }))) | ||
252 | }) | ||
253 | ) | ||
254 | |||
242 | forkJoin([ | 255 | forkJoin([ |
243 | videoObs, | 256 | videoAndLiveObs, |
244 | this.videoCaptionService.listCaptions(videoId), | 257 | this.videoCaptionService.listCaptions(videoId), |
245 | this.userService.getAnonymousOrLoggedUser() | 258 | this.userService.getAnonymousOrLoggedUser() |
246 | ]).subscribe({ | 259 | ]).subscribe({ |
247 | next: ([ video, captionsResult, loggedInOrAnonymousUser ]) => { | 260 | next: ([ { video, live }, captionsResult, loggedInOrAnonymousUser ]) => { |
248 | const queryParams = this.route.snapshot.queryParams | 261 | const queryParams = this.route.snapshot.queryParams |
249 | 262 | ||
250 | const urlOptions = { | 263 | const urlOptions = { |
@@ -261,7 +274,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
261 | peertubeLink: false | 274 | peertubeLink: false |
262 | } | 275 | } |
263 | 276 | ||
264 | this.onVideoFetched({ video, videoCaptions: captionsResult.data, loggedInOrAnonymousUser, urlOptions }) | 277 | this.onVideoFetched({ video, live, videoCaptions: captionsResult.data, loggedInOrAnonymousUser, urlOptions }) |
265 | .catch(err => this.handleGlobalError(err)) | 278 | .catch(err => this.handleGlobalError(err)) |
266 | }, | 279 | }, |
267 | 280 | ||
@@ -330,16 +343,18 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
330 | 343 | ||
331 | private async onVideoFetched (options: { | 344 | private async onVideoFetched (options: { |
332 | video: VideoDetails | 345 | video: VideoDetails |
346 | live: LiveVideo | ||
333 | videoCaptions: VideoCaption[] | 347 | videoCaptions: VideoCaption[] |
334 | urlOptions: URLOptions | 348 | urlOptions: URLOptions |
335 | loggedInOrAnonymousUser: User | 349 | loggedInOrAnonymousUser: User |
336 | }) { | 350 | }) { |
337 | const { video, videoCaptions, urlOptions, loggedInOrAnonymousUser } = options | 351 | const { video, live, videoCaptions, urlOptions, loggedInOrAnonymousUser } = options |
338 | 352 | ||
339 | this.subscribeToLiveEventsIfNeeded(this.video, video) | 353 | this.subscribeToLiveEventsIfNeeded(this.video, video) |
340 | 354 | ||
341 | this.video = video | 355 | this.video = video |
342 | this.videoCaptions = videoCaptions | 356 | this.videoCaptions = videoCaptions |
357 | this.liveVideo = live | ||
343 | 358 | ||
344 | // Re init attributes | 359 | // Re init attributes |
345 | this.playerPlaceholderImgSrc = undefined | 360 | this.playerPlaceholderImgSrc = undefined |
@@ -387,6 +402,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
387 | const params = { | 402 | const params = { |
388 | video: this.video, | 403 | video: this.video, |
389 | videoCaptions: this.videoCaptions, | 404 | videoCaptions: this.videoCaptions, |
405 | liveVideo: this.liveVideo, | ||
390 | urlOptions, | 406 | urlOptions, |
391 | loggedInOrAnonymousUser, | 407 | loggedInOrAnonymousUser, |
392 | user: this.user | 408 | user: this.user |
@@ -532,12 +548,13 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
532 | 548 | ||
533 | private buildPlayerManagerOptions (params: { | 549 | private buildPlayerManagerOptions (params: { |
534 | video: VideoDetails | 550 | video: VideoDetails |
551 | liveVideo: LiveVideo | ||
535 | videoCaptions: VideoCaption[] | 552 | videoCaptions: VideoCaption[] |
536 | urlOptions: CustomizationOptions & { playerMode: PlayerMode } | 553 | urlOptions: CustomizationOptions & { playerMode: PlayerMode } |
537 | loggedInOrAnonymousUser: User | 554 | loggedInOrAnonymousUser: User |
538 | user?: AuthUser | 555 | user?: AuthUser |
539 | }) { | 556 | }) { |
540 | const { video, videoCaptions, urlOptions, loggedInOrAnonymousUser, user } = params | 557 | const { video, liveVideo, videoCaptions, urlOptions, loggedInOrAnonymousUser, user } = params |
541 | 558 | ||
542 | const getStartTime = () => { | 559 | const getStartTime = () => { |
543 | const byUrl = urlOptions.startTime !== undefined | 560 | const byUrl = urlOptions.startTime !== undefined |
@@ -562,6 +579,10 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
562 | src: environment.apiUrl + c.captionPath | 579 | src: environment.apiUrl + c.captionPath |
563 | })) | 580 | })) |
564 | 581 | ||
582 | const liveOptions = video.isLive | ||
583 | ? { latencyMode: liveVideo.latencyMode } | ||
584 | : undefined | ||
585 | |||
565 | const options: PeertubePlayerManagerOptions = { | 586 | const options: PeertubePlayerManagerOptions = { |
566 | common: { | 587 | common: { |
567 | autoplay: this.isAutoplay(), | 588 | autoplay: this.isAutoplay(), |
@@ -597,6 +618,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
597 | embedTitle: video.name, | 618 | embedTitle: video.name, |
598 | 619 | ||
599 | isLive: video.isLive, | 620 | isLive: video.isLive, |
621 | liveOptions, | ||
600 | 622 | ||
601 | language: this.localeId, | 623 | language: this.localeId, |
602 | 624 | ||
diff --git a/client/src/assets/player/peertube-player-options-builder.ts b/client/src/assets/player/peertube-player-options-builder.ts index 7a82b128d..c9cbbbf4d 100644 --- a/client/src/assets/player/peertube-player-options-builder.ts +++ b/client/src/assets/player/peertube-player-options-builder.ts | |||
@@ -1,9 +1,10 @@ | |||
1 | import videojs from 'video.js' | 1 | import videojs from 'video.js' |
2 | import { HybridLoaderSettings } from '@peertube/p2p-media-loader-core' | ||
2 | import { HlsJsEngineSettings } from '@peertube/p2p-media-loader-hlsjs' | 3 | import { HlsJsEngineSettings } from '@peertube/p2p-media-loader-hlsjs' |
3 | import { PluginsManager } from '@root-helpers/plugins-manager' | 4 | import { PluginsManager } from '@root-helpers/plugins-manager' |
4 | import { buildVideoLink, decorateVideoLink } from '@shared/core-utils' | 5 | import { buildVideoLink, decorateVideoLink } from '@shared/core-utils' |
5 | import { isDefaultLocale } from '@shared/core-utils/i18n' | 6 | import { isDefaultLocale } from '@shared/core-utils/i18n' |
6 | import { VideoFile } from '@shared/models' | 7 | import { LiveVideoLatencyMode, VideoFile } from '@shared/models' |
7 | import { copyToClipboard } from '../../root-helpers/utils' | 8 | import { copyToClipboard } from '../../root-helpers/utils' |
8 | import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager' | 9 | import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager' |
9 | import { segmentUrlBuilderFactory } from './p2p-media-loader/segment-url-builder' | 10 | import { segmentUrlBuilderFactory } from './p2p-media-loader/segment-url-builder' |
@@ -19,7 +20,6 @@ import { | |||
19 | VideoJSPluginOptions | 20 | VideoJSPluginOptions |
20 | } from './peertube-videojs-typings' | 21 | } from './peertube-videojs-typings' |
21 | import { buildVideoOrPlaylistEmbed, getRtcConfig, isIOS, isSafari } from './utils' | 22 | import { buildVideoOrPlaylistEmbed, getRtcConfig, isIOS, isSafari } from './utils' |
22 | import { HybridLoaderSettings } from '@peertube/p2p-media-loader-core' | ||
23 | 23 | ||
24 | export type PlayerMode = 'webtorrent' | 'p2p-media-loader' | 24 | export type PlayerMode = 'webtorrent' | 'p2p-media-loader' |
25 | 25 | ||
@@ -76,6 +76,9 @@ export interface CommonOptions extends CustomizationOptions { | |||
76 | embedTitle: string | 76 | embedTitle: string |
77 | 77 | ||
78 | isLive: boolean | 78 | isLive: boolean |
79 | liveOptions?: { | ||
80 | latencyMode: LiveVideoLatencyMode | ||
81 | } | ||
79 | 82 | ||
80 | language?: string | 83 | language?: string |
81 | 84 | ||
@@ -250,21 +253,8 @@ export class PeertubePlayerOptionsBuilder { | |||
250 | .filter(t => t.startsWith('ws')) | 253 | .filter(t => t.startsWith('ws')) |
251 | 254 | ||
252 | const specificLiveOrVODOptions = this.options.common.isLive | 255 | const specificLiveOrVODOptions = this.options.common.isLive |
253 | ? { // Live | 256 | ? this.getP2PMediaLoaderLiveOptions() |
254 | requiredSegmentsPriority: 1 | 257 | : this.getP2PMediaLoaderVODOptions() |
255 | } | ||
256 | : { // VOD | ||
257 | requiredSegmentsPriority: 3, | ||
258 | |||
259 | cachedSegmentExpiration: 86400000, | ||
260 | cachedSegmentsCount: 100, | ||
261 | |||
262 | httpDownloadMaxPriority: 9, | ||
263 | httpDownloadProbability: 0.06, | ||
264 | httpDownloadProbabilitySkipIfNoPeers: true, | ||
265 | |||
266 | p2pDownloadMaxPriority: 50 | ||
267 | } | ||
268 | 258 | ||
269 | return { | 259 | return { |
270 | trackerAnnounce, | 260 | trackerAnnounce, |
@@ -283,13 +273,57 @@ export class PeertubePlayerOptionsBuilder { | |||
283 | } | 273 | } |
284 | } | 274 | } |
285 | 275 | ||
276 | private getP2PMediaLoaderLiveOptions (): Partial<HybridLoaderSettings> { | ||
277 | const base = { | ||
278 | requiredSegmentsPriority: 1 | ||
279 | } | ||
280 | |||
281 | const latencyMode = this.options.common.liveOptions.latencyMode | ||
282 | |||
283 | switch (latencyMode) { | ||
284 | case LiveVideoLatencyMode.SMALL_LATENCY: | ||
285 | return { | ||
286 | ...base, | ||
287 | |||
288 | useP2P: false, | ||
289 | httpDownloadProbability: 1 | ||
290 | } | ||
291 | |||
292 | case LiveVideoLatencyMode.HIGH_LATENCY: | ||
293 | return base | ||
294 | |||
295 | default: | ||
296 | return base | ||
297 | } | ||
298 | } | ||
299 | |||
300 | private getP2PMediaLoaderVODOptions (): Partial<HybridLoaderSettings> { | ||
301 | return { | ||
302 | requiredSegmentsPriority: 3, | ||
303 | |||
304 | cachedSegmentExpiration: 86400000, | ||
305 | cachedSegmentsCount: 100, | ||
306 | |||
307 | httpDownloadMaxPriority: 9, | ||
308 | httpDownloadProbability: 0.06, | ||
309 | httpDownloadProbabilitySkipIfNoPeers: true, | ||
310 | |||
311 | p2pDownloadMaxPriority: 50 | ||
312 | } | ||
313 | } | ||
314 | |||
286 | private getHLSOptions (p2pMediaLoaderConfig: HlsJsEngineSettings) { | 315 | private getHLSOptions (p2pMediaLoaderConfig: HlsJsEngineSettings) { |
316 | const specificLiveOrVODOptions = this.options.common.isLive | ||
317 | ? this.getHLSLiveOptions() | ||
318 | : this.getHLSVODOptions() | ||
319 | |||
287 | const base = { | 320 | const base = { |
288 | capLevelToPlayerSize: true, | 321 | capLevelToPlayerSize: true, |
289 | autoStartLoad: false, | 322 | autoStartLoad: false, |
290 | liveSyncDurationCount: 5, | ||
291 | 323 | ||
292 | loader: new this.p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass() | 324 | loader: new this.p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass(), |
325 | |||
326 | ...specificLiveOrVODOptions | ||
293 | } | 327 | } |
294 | 328 | ||
295 | const averageBandwidth = getAverageBandwidthInStore() | 329 | const averageBandwidth = getAverageBandwidthInStore() |
@@ -305,6 +339,33 @@ export class PeertubePlayerOptionsBuilder { | |||
305 | } | 339 | } |
306 | } | 340 | } |
307 | 341 | ||
342 | private getHLSLiveOptions () { | ||
343 | const latencyMode = this.options.common.liveOptions.latencyMode | ||
344 | |||
345 | switch (latencyMode) { | ||
346 | case LiveVideoLatencyMode.SMALL_LATENCY: | ||
347 | return { | ||
348 | liveSyncDurationCount: 2 | ||
349 | } | ||
350 | |||
351 | case LiveVideoLatencyMode.HIGH_LATENCY: | ||
352 | return { | ||
353 | liveSyncDurationCount: 10 | ||
354 | } | ||
355 | |||
356 | default: | ||
357 | return { | ||
358 | liveSyncDurationCount: 5 | ||
359 | } | ||
360 | } | ||
361 | } | ||
362 | |||
363 | private getHLSVODOptions () { | ||
364 | return { | ||
365 | liveSyncDurationCount: 5 | ||
366 | } | ||
367 | } | ||
368 | |||
308 | private addWebTorrentOptions (plugins: VideoJSPluginOptions, alreadyPlayed: boolean) { | 369 | private addWebTorrentOptions (plugins: VideoJSPluginOptions, alreadyPlayed: boolean) { |
309 | const commonOptions = this.options.common | 370 | const commonOptions = this.options.common |
310 | const webtorrentOptions = this.options.webtorrent | 371 | const webtorrentOptions = this.options.webtorrent |
diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index e57df21bc..496736524 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf | |||
@@ -9,7 +9,7 @@ | |||
9 | </trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
11 | <source>Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source> | 11 | <source>Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source> |
12 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target> | 12 | <target state="translated">Dia <x id="INTERPOLATION" equiv-text="get wrap("/> / <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target> |
13 | <context-group purpose="location"> | 13 | <context-group purpose="location"> |
14 | <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> | 14 | <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> |
15 | <context context-type="linenumber">147,157</context> | 15 | <context context-type="linenumber">147,157</context> |
@@ -31,7 +31,7 @@ | |||
31 | </trans-unit> | 31 | </trans-unit> |
32 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 32 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
33 | <source>Select month</source> | 33 | <source>Select month</source> |
34 | <target state="new">Select month</target> | 34 | <target state="translated">Valitse kuukausi</target> |
35 | <context-group purpose="location"> | 35 | <context-group purpose="location"> |
36 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> | 36 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> |
37 | <context context-type="linenumber">74</context> | 37 | <context context-type="linenumber">74</context> |
@@ -43,7 +43,7 @@ | |||
43 | </trans-unit> | 43 | </trans-unit> |
44 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 44 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
45 | <source>Select year</source> | 45 | <source>Select year</source> |
46 | <target state="new">Select year</target> | 46 | <target state="translated">Valitse vuosi</target> |
47 | <context-group purpose="location"> | 47 | <context-group purpose="location"> |
48 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> | 48 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> |
49 | <context context-type="linenumber">74</context> | 49 | <context context-type="linenumber">74</context> |
@@ -55,7 +55,7 @@ | |||
55 | </trans-unit> | 55 | </trans-unit> |
56 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 56 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
57 | <source>Previous month</source> | 57 | <source>Previous month</source> |
58 | <target state="new">Previous month</target> | 58 | <target state="translated">Edellinen kuukausi</target> |
59 | <context-group purpose="location"> | 59 | <context-group purpose="location"> |
60 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> | 60 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> |
61 | <context context-type="linenumber">69</context> | 61 | <context context-type="linenumber">69</context> |
@@ -67,7 +67,7 @@ | |||
67 | </trans-unit> | 67 | </trans-unit> |
68 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 68 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
69 | <source>Next month</source> | 69 | <source>Next month</source> |
70 | <target state="new">Next month</target> | 70 | <target state="translated">Seuraava kuukausi</target> |
71 | <context-group purpose="location"> | 71 | <context-group purpose="location"> |
72 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> | 72 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> |
73 | <context context-type="linenumber">69</context> | 73 | <context context-type="linenumber">69</context> |
@@ -79,42 +79,42 @@ | |||
79 | </trans-unit> | 79 | </trans-unit> |
80 | <trans-unit id="ngb.pagination.first" datatype="html"> | 80 | <trans-unit id="ngb.pagination.first" datatype="html"> |
81 | <source>««</source> | 81 | <source>««</source> |
82 | <target state="new">««</target> | 82 | <target state="translated">««</target> |
83 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group> | 83 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group> |
84 | </trans-unit> | 84 | </trans-unit> |
85 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 85 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
86 | <source>«</source> | 86 | <source>«</source> |
87 | <target state="new">«</target> | 87 | <target state="translated">«</target> |
88 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group> | 88 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group> |
89 | </trans-unit> | 89 | </trans-unit> |
90 | <trans-unit id="ngb.pagination.next" datatype="html"> | 90 | <trans-unit id="ngb.pagination.next" datatype="html"> |
91 | <source>»</source> | 91 | <source>»</source> |
92 | <target state="new">»</target> | 92 | <target state="translated">»</target> |
93 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group> | 93 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group> |
94 | </trans-unit> | 94 | </trans-unit> |
95 | <trans-unit id="ngb.pagination.last" datatype="html"> | 95 | <trans-unit id="ngb.pagination.last" datatype="html"> |
96 | <source>»»</source> | 96 | <source>»»</source> |
97 | <target state="new">»»</target> | 97 | <target state="translated">»»</target> |
98 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group> | 98 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group> |
99 | </trans-unit> | 99 | </trans-unit> |
100 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 100 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
101 | <source>First</source> | 101 | <source>First</source> |
102 | <target state="new">First</target> | 102 | <target state="translated">Ensimmäinen</target> |
103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group> | 103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group> |
104 | </trans-unit> | 104 | </trans-unit> |
105 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 105 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
106 | <source>Previous</source> | 106 | <source>Previous</source> |
107 | <target state="new">Previous</target> | 107 | <target state="translated">Edellinen</target> |
108 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group> | 108 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group> |
109 | </trans-unit> | 109 | </trans-unit> |
110 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 110 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
111 | <source>Next</source> | 111 | <source>Next</source> |
112 | <target state="new">Next</target> | 112 | <target state="translated">Seuraava</target> |
113 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group> | 113 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group> |
114 | </trans-unit> | 114 | </trans-unit> |
115 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 115 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
116 | <source>Last</source> | 116 | <source>Last</source> |
117 | <target state="new">Last</target> | 117 | <target state="translated">Viimeinen</target> |
118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group> | 118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group> |
119 | </trans-unit> | 119 | </trans-unit> |
120 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 120 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
@@ -190,7 +190,7 @@ | |||
190 | </trans-unit> | 190 | </trans-unit> |
191 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 191 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
192 | <source><x id="INTERPOLATION"/></source> | 192 | <source><x id="INTERPOLATION"/></source> |
193 | <target state="new"><x id="INTERPOLATION"/></target> | 193 | <target state="translated"><x id="INTERPOLATION"/></target> |
194 | <context-group purpose="location"> | 194 | <context-group purpose="location"> |
195 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> | 195 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> |
196 | <context context-type="linenumber">295</context> | 196 | <context context-type="linenumber">295</context> |
@@ -198,7 +198,7 @@ | |||
198 | </trans-unit> | 198 | </trans-unit> |
199 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 199 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
200 | <source><x id="INTERPOLATION"/></source> | 200 | <source><x id="INTERPOLATION"/></source> |
201 | <target state="new"><x id="INTERPOLATION"/></target> | 201 | <target state="translated"><x id="INTERPOLATION"/></target> |
202 | <context-group purpose="location"> | 202 | <context-group purpose="location"> |
203 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> | 203 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> |
204 | <context context-type="linenumber">295</context> | 204 | <context context-type="linenumber">295</context> |
@@ -206,7 +206,7 @@ | |||
206 | </trans-unit> | 206 | </trans-unit> |
207 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 207 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
208 | <source>Close</source> | 208 | <source>Close</source> |
209 | <target state="new">Close</target> | 209 | <target state="translated">Sulje</target> |
210 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group> | 210 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group> |
211 | </trans-unit> | 211 | </trans-unit> |
212 | <trans-unit id="219462505467671767" datatype="html"> | 212 | <trans-unit id="219462505467671767" datatype="html"> |
@@ -226,131 +226,62 @@ | |||
226 | </trans-unit> | 226 | </trans-unit> |
227 | <trans-unit id="3780281836273462589" datatype="html"> | 227 | <trans-unit id="3780281836273462589" datatype="html"> |
228 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 228 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
229 | <target state="new"> | 229 | <target state="needs-translation"><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></target> |
230 | <x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> published a new video: | ||
231 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
232 | <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> | ||
233 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
234 | </target> | ||
235 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group> | 230 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group> |
236 | </trans-unit> | 231 | </trans-unit> |
237 | <trans-unit id="3861380964267994829" datatype="html"> | 232 | <trans-unit id="3861380964267994829" datatype="html"> |
238 | <source>The notification concerns a video now unavailable</source> | 233 | <source>The notification concerns a video now unavailable</source> |
239 | <target state="new"> | 234 | <target state="translated">Ilmoitus koskee videota, jota ei ole enää saatavilla</target> |
240 | The notification concerns a video now unavailable | ||
241 | </target> | ||
242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">23</context></context-group> | 235 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">23</context></context-group> |
243 | </trans-unit> | 236 | </trans-unit> |
244 | <trans-unit id="5067946665521007036" datatype="html"> | 237 | <trans-unit id="5067946665521007036" datatype="html"> |
245 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> | 238 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> |
246 | <target state="new"> | 239 | <target state="needs-translation">Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </target> |
247 | Your video | ||
248 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
249 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | ||
250 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been unblocked | ||
251 | |||
252 | </target> | ||
253 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">32</context></context-group> | 240 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">32</context></context-group> |
254 | </trans-unit> | 241 | </trans-unit> |
255 | <trans-unit id="7127745751169269971" datatype="html"> | 242 | <trans-unit id="7127745751169269971" datatype="html"> |
256 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> | 243 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> |
257 | <target state="new"> | 244 | <target state="translated">Videosi <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> on estetty </target> |
258 | Your video | ||
259 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
260 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> | ||
261 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been blocked | ||
262 | |||
263 | </target> | ||
264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">40</context></context-group> | 245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">40</context></context-group> |
265 | </trans-unit> | 246 | </trans-unit> |
266 | <trans-unit id="506794214492992969" datatype="html"> | 247 | <trans-unit id="506794214492992969" datatype="html"> |
267 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 248 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
268 | <target state="new"> | 249 | <target state="needs-translation"><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> |
269 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new video abuse | ||
270 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | ||
271 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
272 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.video.name }}"/> | ||
273 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
274 | </target> | ||
275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group> | 250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group> |
276 | </trans-unit> | 251 | </trans-unit> |
277 | <trans-unit id="3487882822536102372" datatype="html"> | 252 | <trans-unit id="3487882822536102372" datatype="html"> |
278 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 253 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
279 | <target state="new"> | 254 | <target state="needs-translation"><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> |
280 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new comment abuse | ||
281 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | ||
282 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
283 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.comment.video.name }}"/> | ||
284 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
285 | </target> | ||
286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group> | 255 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group> |
287 | </trans-unit> | 256 | </trans-unit> |
288 | <trans-unit id="7885094785640544496" datatype="html"> | 257 | <trans-unit id="7885094785640544496" datatype="html"> |
289 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 258 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
290 | <target state="new"> | 259 | <target state="needs-translation"><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> |
291 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new account abuse | ||
292 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on account | ||
293 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
294 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.account.displayName }}"/> | ||
295 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
296 | </target> | ||
297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group> | 260 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group> |
298 | </trans-unit> | 261 | </trans-unit> |
299 | <trans-unit id="2008776855594205860" datatype="html"> | 262 | <trans-unit id="2008776855594205860" datatype="html"> |
300 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> | 263 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> |
301 | <target state="new"> | 264 | <target state="needs-translation"><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </target> |
302 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new abuse | ||
303 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created | ||
304 | |||
305 | </target> | ||
306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group> | 265 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group> |
307 | </trans-unit> | 266 | </trans-unit> |
308 | <trans-unit id="8816959058080937679" datatype="html"> | 267 | <trans-unit id="8816959058080937679" datatype="html"> |
309 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 268 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
310 | <target state="new"> | 269 | <target state="needs-translation"><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
311 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your abuse | ||
312 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | ||
313 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | ||
314 | |||
315 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>accepted | ||
316 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
317 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>rejected | ||
318 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
319 | </target> | ||
320 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group> | 270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group> |
321 | </trans-unit> | 271 | </trans-unit> |
322 | <trans-unit id="6464941273929604379" datatype="html"> | 272 | <trans-unit id="6464941273929604379" datatype="html"> |
323 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> | 273 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> |
324 | <target state="new"> | 274 | <target state="needs-translation"><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </target> |
325 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Abuse | ||
326 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | ||
327 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has a new message | ||
328 | |||
329 | </target> | ||
330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group> | 275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group> |
331 | </trans-unit> | 276 | </trans-unit> |
332 | <trans-unit id="420488506127153204" datatype="html"> | 277 | <trans-unit id="420488506127153204" datatype="html"> |
333 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> | 278 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> |
334 | <target state="new"> | 279 | <target state="needs-translation">The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></target> |
335 | The recently added video | ||
336 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
337 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> | ||
338 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | ||
339 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked | ||
340 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
341 | </target> | ||
342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">87</context></context-group> | 280 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">87</context></context-group> |
343 | </trans-unit> | 281 | </trans-unit> |
344 | <trans-unit id="2740435661398285769" datatype="html"> | 282 | <trans-unit id="2740435661398285769" datatype="html"> |
345 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 283 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
346 | <target state="new"> | 284 | <target state="needs-translation"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></target> |
347 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
348 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> | ||
349 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> commented your video | ||
350 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
351 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> | ||
352 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
353 | </target> | ||
354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">99</context></context-group> | 285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">99</context></context-group> |
355 | </trans-unit> | 286 | </trans-unit> |
356 | <trans-unit id="2020563642195933477" datatype="html"> | 287 | <trans-unit id="2020563642195933477" datatype="html"> |
@@ -363,65 +294,32 @@ | |||
363 | </trans-unit> | 294 | </trans-unit> |
364 | <trans-unit id="2436106664506839309" datatype="html"> | 295 | <trans-unit id="2436106664506839309" datatype="html"> |
365 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> | 296 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> |
366 | <target state="new"> | 297 | <target state="translated">Videosi <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> on julkaistu </target> |
367 | Your video | ||
368 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
369 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | ||
370 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been published | ||
371 | |||
372 | </target> | ||
373 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">115</context></context-group> | 298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">115</context></context-group> |
374 | </trans-unit> | 299 | </trans-unit> |
375 | <trans-unit id="7130219900907848048" datatype="html"> | 300 | <trans-unit id="7130219900907848048" datatype="html"> |
376 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> | 301 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> |
377 | <target state="new"> | 302 | <target state="needs-translation"><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </target> |
378 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import | ||
379 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
380 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> succeeded | ||
381 | |||
382 | </target> | ||
383 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">124</context></context-group> | 303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">124</context></context-group> |
384 | </trans-unit> | 304 | </trans-unit> |
385 | <trans-unit id="2099623308096969132" datatype="html"> | 305 | <trans-unit id="2099623308096969132" datatype="html"> |
386 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> | 306 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> |
387 | <target state="new"> | 307 | <target state="needs-translation"><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </target> |
388 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import | ||
389 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
390 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> failed | ||
391 | |||
392 | </target> | ||
393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">132</context></context-group> | 308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">132</context></context-group> |
394 | </trans-unit> | 309 | </trans-unit> |
395 | <trans-unit id="3371351937331192777" datatype="html"> | 310 | <trans-unit id="3371351937331192777" datatype="html"> |
396 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> | 311 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> |
397 | <target state="new"> | 312 | <target state="translated">Käyttäjä <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> rekisteröityi instanssillesi </target> |
398 | User | ||
399 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
400 | <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> | ||
401 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> registered on your instance | ||
402 | |||
403 | </target> | ||
404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">139</context></context-group> | 313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">139</context></context-group> |
405 | </trans-unit> | 314 | </trans-unit> |
406 | <trans-unit id="4404295482394146814" datatype="html"> | 315 | <trans-unit id="4404295482394146814" datatype="html"> |
407 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 316 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
408 | <target state="new"> | 317 | <target state="needs-translation"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
409 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
410 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> | ||
411 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is following | ||
412 | |||
413 | |||
414 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>your channel | ||
415 | <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> | ||
416 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
417 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>your account | ||
418 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
419 | </target> | ||
420 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> | 318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> |
421 | </trans-unit> | 319 | </trans-unit> |
422 | <trans-unit id="5504059606863599420" datatype="html"> | 320 | <trans-unit id="5504059606863599420" datatype="html"> |
423 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 321 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
424 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 322 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
425 | <context-group purpose="location"> | 323 | <context-group purpose="location"> |
426 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 324 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
427 | <context context-type="linenumber">164</context> | 325 | <context context-type="linenumber">164</context> |
@@ -429,38 +327,25 @@ | |||
429 | </trans-unit> | 327 | </trans-unit> |
430 | <trans-unit id="5354239156470982824" datatype="html"> | 328 | <trans-unit id="5354239156470982824" datatype="html"> |
431 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 329 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
432 | <target state="new"> | 330 | <target state="needs-translation">Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
433 | Your instance has | ||
434 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>a new follower | ||
435 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( | ||
436 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) | ||
437 | |||
438 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> awaiting your approval | ||
439 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
440 | </target> | ||
441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">180</context></context-group> | 331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">180</context></context-group> |
442 | </trans-unit> | 332 | </trans-unit> |
443 | <trans-unit id="325842756252267394" datatype="html"> | 333 | <trans-unit id="325842756252267394" datatype="html"> |
444 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 334 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
445 | <target state="new"> | 335 | <target state="needs-translation">Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> |
446 | Your instance automatically followed | ||
447 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
448 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> | ||
449 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
450 | </target> | ||
451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> | 336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> |
452 | </trans-unit> | 337 | </trans-unit> |
453 | <trans-unit id="363592786729553688" datatype="html"> | 338 | <trans-unit id="363592786729553688" datatype="html"> |
454 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> | 339 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> |
455 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> | 340 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> |
456 | <context-group purpose="location"> | 341 | <context-group purpose="location"> |
457 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 342 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
458 | <context context-type="linenumber">198,199</context> | 343 | <context context-type="linenumber">198,199</context> |
459 | </context-group> | 344 | </context-group> |
460 | </trans-unit> | 345 | </trans-unit> |
461 | <trans-unit id="5055099158245592648" datatype="html"> | 346 | <trans-unit id="5055099158245592648" datatype="html"> |
462 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> | 347 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> |
463 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> | 348 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> |
464 | <context-group purpose="location"> | 349 | <context-group purpose="location"> |
465 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 350 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
466 | <context context-type="linenumber">206,207</context> | 351 | <context context-type="linenumber">206,207</context> |
@@ -519,14 +404,7 @@ | |||
519 | </trans-unit> | 404 | </trans-unit> |
520 | <trans-unit id="2816407313459209541" datatype="html"> | 405 | <trans-unit id="2816407313459209541" datatype="html"> |
521 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 406 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
522 | <target state="new"> | 407 | <target state="needs-translation">Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </target> |
523 | Your report will be sent to moderators of | ||
524 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | ||
525 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the video origin ( | ||
526 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | ||
527 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | ||
528 | |||
529 | </target> | ||
530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">72</context></context-group> | 408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">72</context></context-group> |
531 | </trans-unit> | 409 | </trans-unit> |
532 | <trans-unit id="6990204431018013063" datatype="html"> | 410 | <trans-unit id="6990204431018013063" datatype="html"> |
@@ -558,9 +436,8 @@ | |||
558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | 436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> |
559 | </trans-unit> | 437 | </trans-unit> |
560 | <trans-unit id="2193037168694505715" datatype="html"> | 438 | <trans-unit id="2193037168694505715" datatype="html"> |
561 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> | 439 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> |
562 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> | 440 | <target state="new">Short text to tell people how they can support the channel (membership platform...).<br /><br /> |
563 | <target state="new">Short text to tell people how they can support the channel (membership platform...).<br /><br /> | ||
564 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</target> | 441 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</target> |
565 | <context-group purpose="location"> | 442 | <context-group purpose="location"> |
566 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> | 443 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> |
@@ -672,9 +549,7 @@ | |||
672 | </trans-unit> | 549 | </trans-unit> |
673 | <trans-unit id="5108124319304980502" datatype="html"> | 550 | <trans-unit id="5108124319304980502" datatype="html"> |
674 | <source>Report video "<x id="INTERPOLATION"/>"</source> | 551 | <source>Report video "<x id="INTERPOLATION"/>"</source> |
675 | <target state="new">Report video " | 552 | <target state="translated">Raportoi video "<x id="INTERPOLATION"/>"</target> |
676 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | ||
677 | </target> | ||
678 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">3</context></context-group> | 553 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">3</context></context-group> |
679 | </trans-unit> | 554 | </trans-unit> |
680 | <trans-unit id="5471125870639393916" datatype="html"> | 555 | <trans-unit id="5471125870639393916" datatype="html"> |
@@ -704,14 +579,12 @@ | |||
704 | </trans-unit> | 579 | </trans-unit> |
705 | <trans-unit id="7688104409544625220" datatype="html"> | 580 | <trans-unit id="7688104409544625220" datatype="html"> |
706 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 581 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
707 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { | 582 | <target state="translated">{VAR_PLURAL, plural, =1 {1 näyttökerta} other {<x id="INTERPOLATION"/> näyttökertaa}}</target> |
708 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | ||
709 | </target> | ||
710 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> | 583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> |
711 | </trans-unit> | 584 | </trans-unit> |
712 | <trans-unit id="8562063050145802350" datatype="html"> | 585 | <trans-unit id="8562063050145802350" datatype="html"> |
713 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> | 586 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> |
714 | <target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> | 587 | <target state="translated">{VAR_PLURAL, plural, =1 {1 katselija} other {<x id="INTERPOLATION"/> katselijaa}}</target> |
715 | <context-group purpose="location"> | 588 | <context-group purpose="location"> |
716 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 589 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
717 | <context context-type="linenumber">7</context> | 590 | <context context-type="linenumber">7</context> |
@@ -767,7 +640,7 @@ | |||
767 | </trans-unit> | 640 | </trans-unit> |
768 | <trans-unit id="1571742433738679426" datatype="html"> | 641 | <trans-unit id="1571742433738679426" datatype="html"> |
769 | <source>Files were removed.</source> | 642 | <source>Files were removed.</source> |
770 | <target state="new">Files were removed.</target> | 643 | <target state="translated">Tiedotot poistettiin.</target> |
771 | <context-group purpose="location"> | 644 | <context-group purpose="location"> |
772 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 645 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
773 | <context context-type="linenumber">235</context> | 646 | <context context-type="linenumber">235</context> |
@@ -797,9 +670,7 @@ | |||
797 | </trans-unit> | 670 | </trans-unit> |
798 | <trans-unit id="3044142083883783523"> | 671 | <trans-unit id="3044142083883783523"> |
799 | <source>Updated <x id="INTERPOLATION"/></source> | 672 | <source>Updated <x id="INTERPOLATION"/></source> |
800 | <target>Päivitettiin | 673 | <target>Päivitettiin <x id="INTERPOLATION"/></target> |
801 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/> | ||
802 | </target> | ||
803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">32</context></context-group> | 674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">32</context></context-group> |
804 | </trans-unit> | 675 | </trans-unit> |
805 | <trans-unit id="5643561794785412000" datatype="html"> | 676 | <trans-unit id="5643561794785412000" datatype="html"> |
@@ -828,9 +699,7 @@ | |||
828 | </trans-unit> | 699 | </trans-unit> |
829 | <trans-unit id="8890926675057871150"> | 700 | <trans-unit id="8890926675057871150"> |
830 | <source>Delete from <x id="INTERPOLATION"/></source> | 701 | <source>Delete from <x id="INTERPOLATION"/></source> |
831 | <target>Poista kanavalta | 702 | <target>Poista kanavalta <x id="INTERPOLATION"/></target> |
832 | <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/> | ||
833 | </target> | ||
834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">100</context></context-group> | 703 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">100</context></context-group> |
835 | </trans-unit> | 704 | </trans-unit> |
836 | <trans-unit id="834805431202576194"> | 705 | <trans-unit id="834805431202576194"> |
@@ -874,8 +743,8 @@ | |||
874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> | 743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> |
875 | </trans-unit> | 744 | </trans-unit> |
876 | <trans-unit id="8644431249513874405" datatype="html"> | 745 | <trans-unit id="8644431249513874405" datatype="html"> |
877 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 746 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
878 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 747 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
879 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
880 | </trans-unit> | 749 | </trans-unit> |
881 | <trans-unit id="146235964740293376" datatype="html"> | 750 | <trans-unit id="146235964740293376" datatype="html"> |
@@ -890,7 +759,7 @@ | |||
890 | </trans-unit> | 759 | </trans-unit> |
891 | <trans-unit id="3372646000533908418" datatype="html"> | 760 | <trans-unit id="3372646000533908418" datatype="html"> |
892 | <source>Subscribe with a remote account:</source> | 761 | <source>Subscribe with a remote account:</source> |
893 | <target state="new">Subscribe with a remote account:</target> | 762 | <target state="translated">Tilaa etätilillä:</target> |
894 | <context-group purpose="location"> | 763 | <context-group purpose="location"> |
895 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 764 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
896 | <context context-type="linenumber">62</context> | 765 | <context context-type="linenumber">62</context> |
@@ -898,7 +767,7 @@ | |||
898 | </trans-unit> | 767 | </trans-unit> |
899 | <trans-unit id="6691897331062834756" datatype="html"> | 768 | <trans-unit id="6691897331062834756" datatype="html"> |
900 | <source>Subscribe with an account on this instance</source> | 769 | <source>Subscribe with an account on this instance</source> |
901 | <target state="new">Subscribe with an account on this instance</target> | 770 | <target state="translated">Tilaa tämän instanssin tilillä</target> |
902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">57</context></context-group> | 771 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">57</context></context-group> |
903 | </trans-unit> | 772 | </trans-unit> |
904 | <trans-unit id="1740917574463702967"> | 773 | <trans-unit id="1740917574463702967"> |
@@ -918,17 +787,17 @@ | |||
918 | </trans-unit> | 787 | </trans-unit> |
919 | <trans-unit id="4140366911638662173" datatype="html"> | 788 | <trans-unit id="4140366911638662173" datatype="html"> |
920 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> | 789 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> |
921 | <target state="new">Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</target> | 790 | <target state="translated">Haluatko varmasti poistaa "<x id="PH" equiv-text="this.video.name"/>" tiedostot?</target> |
922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | 791 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> |
923 | </trans-unit> | 792 | </trans-unit> |
924 | <trans-unit id="2955645766721124100" datatype="html"> | 793 | <trans-unit id="2955645766721124100" datatype="html"> |
925 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> | 794 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> |
926 | <target state="new">Remove "<x id="PH" equiv-text="this.video.name"/>" files</target> | 795 | <target state="translated">Poista "<x id="PH" equiv-text="this.video.name"/>" tiedostot</target> |
927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | 796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> |
928 | </trans-unit> | 797 | </trans-unit> |
929 | <trans-unit id="7758350391886784213" datatype="html"> | 798 | <trans-unit id="7758350391886784213" datatype="html"> |
930 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> | 799 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> |
931 | <target state="new">Removed files of <x id="PH" equiv-text="video.name"/>.</target> | 800 | <target state="translated">Tiedostot poistettu kohteelta <x id="PH" equiv-text="video.name"/>.</target> |
932 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> | 801 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> |
933 | </trans-unit> | 802 | </trans-unit> |
934 | <trans-unit id="6279087330074580345" datatype="html"> | 803 | <trans-unit id="6279087330074580345" datatype="html"> |
@@ -953,17 +822,12 @@ | |||
953 | </trans-unit> | 822 | </trans-unit> |
954 | <trans-unit id="855178133027341271"> | 823 | <trans-unit id="855178133027341271"> |
955 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 824 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
956 | <target> | 825 | <target><x id="START_TAG_SPAN"/>Etätilaus<x id="CLOSE_TAG_SPAN"/> <x id="START_TAG_SPAN_1"/>Etäkäyttö<x id="CLOSE_TAG_SPAN"/></target> |
957 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Etätilaus | ||
958 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | ||
959 | <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Etäkäyttö | ||
960 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | ||
961 | </target> | ||
962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> | 826 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> |
963 | </trans-unit> | 827 | </trans-unit> |
964 | <trans-unit id="6462281745850371027" datatype="html"> | 828 | <trans-unit id="6462281745850371027" datatype="html"> |
965 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 829 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
966 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 830 | <target state="translated">Voit tilata kanavaa millä tahansa ActivityPub-yhteensopivalla fediverse instanssilla (esimerkiksi PeerTube, Mastodon tai Pleroma).</target> |
967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">17</context></context-group> | 831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">17</context></context-group> |
968 | </trans-unit> | 832 | </trans-unit> |
969 | <trans-unit id="20374890400263257" datatype="html"> | 833 | <trans-unit id="20374890400263257" datatype="html"> |
@@ -973,12 +837,12 @@ | |||
973 | </trans-unit> | 837 | </trans-unit> |
974 | <trans-unit id="6751395526297887552" datatype="html"> | 838 | <trans-unit id="6751395526297887552" datatype="html"> |
975 | <source>PeerTube version</source> | 839 | <source>PeerTube version</source> |
976 | <target state="new">PeerTube version</target> | 840 | <target state="translated">PeerTube versio</target> |
977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">6</context></context-group> | 841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">6</context></context-group> |
978 | </trans-unit> | 842 | </trans-unit> |
979 | <trans-unit id="5975923297757530070" datatype="html"> | 843 | <trans-unit id="5975923297757530070" datatype="html"> |
980 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> | 844 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> |
981 | <target state="new"/> | 845 | <target state="translated"><x id="START_TAG_DIV"/>NSFW/arkaluonteisten videoiden oletuskäytäntö<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>voi käyttäjät määritellä uudelleen<x id="CLOSE_TAG_DIV"/></target> |
982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group> | 846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group> |
983 | </trans-unit> | 847 | </trans-unit> |
984 | <trans-unit id="3386631781603205915"> | 848 | <trans-unit id="3386631781603205915"> |
@@ -1024,7 +888,7 @@ | |||
1024 | </trans-unit> | 888 | </trans-unit> |
1025 | <trans-unit id="3584756669036615394" datatype="html"> | 889 | <trans-unit id="3584756669036615394" datatype="html"> |
1026 | <source>Automatically published</source> | 890 | <source>Automatically published</source> |
1027 | <target state="new">Automatically published</target> | 891 | <target state="translated">Automaattisesti julkaistu</target> |
1028 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group> | 892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group> |
1029 | </trans-unit> | 893 | </trans-unit> |
1030 | <trans-unit id="2602586221576511475"> | 894 | <trans-unit id="2602586221576511475"> |
@@ -1037,12 +901,7 @@ | |||
1037 | </trans-unit> | 901 | </trans-unit> |
1038 | <trans-unit id="1502595455339510144"> | 902 | <trans-unit id="1502595455339510144"> |
1039 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 903 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
1040 | <target> | 904 | <target>Rajoittamaton <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> päivässä)<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
1041 | Rajoittamaton | ||
1042 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( | ||
1043 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> päivässä) | ||
1044 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
1045 | </target> | ||
1046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">60</context></context-group> | 905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">60</context></context-group> |
1047 | </trans-unit> | 906 | </trans-unit> |
1048 | <trans-unit id="1071721880474488785"> | 907 | <trans-unit id="1071721880474488785"> |
@@ -1200,9 +1059,7 @@ | |||
1200 | </trans-unit> | 1059 | </trans-unit> |
1201 | <trans-unit id="4526499522377118108" datatype="html"> | 1060 | <trans-unit id="4526499522377118108" datatype="html"> |
1202 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 1061 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
1203 | <target state="new">Block video " | 1062 | <target state="translated">Estä video "<x id="INTERPOLATION"/>"</target> |
1204 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | ||
1205 | </target> | ||
1206 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">8</context></context-group> | 1063 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">8</context></context-group> |
1207 | </trans-unit> | 1064 | </trans-unit> |
1208 | <trans-unit id="2992313729068029516" datatype="html"> | 1065 | <trans-unit id="2992313729068029516" datatype="html"> |
@@ -1225,7 +1082,7 @@ | |||
1225 | </trans-unit> | 1082 | </trans-unit> |
1226 | <trans-unit id="7312374115603954471" datatype="html"> | 1083 | <trans-unit id="7312374115603954471" datatype="html"> |
1227 | <source>This will ask remote instances to delete local videos</source> | 1084 | <source>This will ask remote instances to delete local videos</source> |
1228 | <target state="new">This will ask remote instances to delete local videos</target> | 1085 | <target state="translated">Tämä pyytää ulkoisien instanssien poistamaan paikalliset videot</target> |
1229 | <context-group purpose="location"> | 1086 | <context-group purpose="location"> |
1230 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1087 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1231 | <context context-type="linenumber">34</context> | 1088 | <context context-type="linenumber">34</context> |
@@ -1233,7 +1090,7 @@ | |||
1233 | </trans-unit> | 1090 | </trans-unit> |
1234 | <trans-unit id="2728722206183105047" datatype="html"> | 1091 | <trans-unit id="2728722206183105047" datatype="html"> |
1235 | <source>This will ask remote instances to delete this video</source> | 1092 | <source>This will ask remote instances to delete this video</source> |
1236 | <target state="new">This will ask remote instances to delete this video</target> | 1093 | <target state="translated">Tämä pyytää ulkoisien instanssien poistamaan tämän videon</target> |
1237 | <context-group purpose="location"> | 1094 | <context-group purpose="location"> |
1238 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1095 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1239 | <context context-type="linenumber">35</context> | 1096 | <context context-type="linenumber">35</context> |
@@ -1241,7 +1098,7 @@ | |||
1241 | </trans-unit> | 1098 | </trans-unit> |
1242 | <trans-unit id="3849007546028672808" datatype="html"> | 1099 | <trans-unit id="3849007546028672808" datatype="html"> |
1243 | <source>Blocking a live will automatically terminate the live stream.</source> | 1100 | <source>Blocking a live will automatically terminate the live stream.</source> |
1244 | <target state="new"> Blocking a live will automatically terminate the live stream. </target> | 1101 | <target state="translated">Livestriimin estäminen automaattisesti sulkee livestriimin.</target> |
1245 | <context-group purpose="location"> | 1102 | <context-group purpose="location"> |
1246 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1103 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1247 | <context context-type="linenumber">40,42</context> | 1104 | <context context-type="linenumber">40,42</context> |
@@ -1249,7 +1106,7 @@ | |||
1249 | </trans-unit> | 1106 | </trans-unit> |
1250 | <trans-unit id="4195458579645833046" datatype="html"> | 1107 | <trans-unit id="4195458579645833046" datatype="html"> |
1251 | <source>Blocked <x id="PH" equiv-text="this.videos.length"/> videos.</source> | 1108 | <source>Blocked <x id="PH" equiv-text="this.videos.length"/> videos.</source> |
1252 | <target state="new">Blocked <x id="PH" equiv-text="this.videos.length"/> videos.</target> | 1109 | <target state="translated">Estetty <x id="PH" equiv-text="this.videos.length"/> videota.</target> |
1253 | <context-group purpose="location"> | 1110 | <context-group purpose="location"> |
1254 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> | 1111 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> |
1255 | <context context-type="linenumber">84</context> | 1112 | <context context-type="linenumber">84</context> |
@@ -1257,7 +1114,7 @@ | |||
1257 | </trans-unit> | 1114 | </trans-unit> |
1258 | <trans-unit id="8507506914483467943" datatype="html"> | 1115 | <trans-unit id="8507506914483467943" datatype="html"> |
1259 | <source>Blocked <x id="PH" equiv-text="this.getSingleVideo().name"/></source> | 1116 | <source>Blocked <x id="PH" equiv-text="this.getSingleVideo().name"/></source> |
1260 | <target state="new">Blocked <x id="PH" equiv-text="this.getSingleVideo().name"/></target> | 1117 | <target state="translated">Estetty <x id="PH" equiv-text="this.getSingleVideo().name"/></target> |
1261 | <context-group purpose="location"> | 1118 | <context-group purpose="location"> |
1262 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> | 1119 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> |
1263 | <context context-type="linenumber">85</context> | 1120 | <context context-type="linenumber">85</context> |
@@ -1288,12 +1145,7 @@ | |||
1288 | </trans-unit> | 1145 | </trans-unit> |
1289 | <trans-unit id="1909492071130899005" datatype="html"> | 1146 | <trans-unit id="1909492071130899005" datatype="html"> |
1290 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> | 1147 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> |
1291 | <target state="new"> | 1148 | <target state="needs-translation">Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </target> |
1292 | Sorry but there was an issue with the external login process. Please | ||
1293 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator | ||
1294 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | ||
1295 | |||
1296 | </target> | ||
1297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">6</context></context-group> | 1149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">6</context></context-group> |
1298 | </trans-unit> | 1150 | </trans-unit> |
1299 | <trans-unit id="8390073108781420493"> | 1151 | <trans-unit id="8390073108781420493"> |
@@ -1303,13 +1155,13 @@ | |||
1303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | 1155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
1304 | </trans-unit> | 1156 | </trans-unit> |
1305 | <trans-unit id="7252854992688790751" datatype="html"> | 1157 | <trans-unit id="7252854992688790751" datatype="html"> |
1306 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1158 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1307 | <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1159 | <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | 1160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> |
1309 | </trans-unit> | 1161 | </trans-unit> |
1310 | <trans-unit id="7215649348148521605" datatype="html"> | 1162 | <trans-unit id="7215649348148521605" datatype="html"> |
1311 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1163 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1312 | <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1164 | <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | 1165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> |
1314 | </trans-unit> | 1166 | </trans-unit> |
1315 | <trans-unit id="2392488717875840729"> | 1167 | <trans-unit id="2392488717875840729"> |
@@ -1343,7 +1195,7 @@ | |||
1343 | </trans-unit> | 1195 | </trans-unit> |
1344 | <trans-unit id="8715156686857791956" datatype="html"> | 1196 | <trans-unit id="8715156686857791956" datatype="html"> |
1345 | <source>Click here to reset your password</source> | 1197 | <source>Click here to reset your password</source> |
1346 | <target state="new">Click here to reset your password</target> | 1198 | <target state="translated">Paina tästä palauttaaksesi salasanasi</target> |
1347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | 1199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> |
1348 | </trans-unit> | 1200 | </trans-unit> |
1349 | <trans-unit id="892063502898494584" datatype="html"> | 1201 | <trans-unit id="892063502898494584" datatype="html"> |
@@ -1363,7 +1215,7 @@ | |||
1363 | </trans-unit> | 1215 | </trans-unit> |
1364 | <trans-unit id="3238209155172574367"> | 1216 | <trans-unit id="3238209155172574367"> |
1365 | <source>Forgot your password</source> | 1217 | <source>Forgot your password</source> |
1366 | <target>Unohda salasanasi</target> | 1218 | <target>Unohditko salasanasi</target> |
1367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group> | 1219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group> |
1368 | </trans-unit> | 1220 | </trans-unit> |
1369 | <trans-unit id="87327320394367488" datatype="html"> | 1221 | <trans-unit id="87327320394367488" datatype="html"> |
@@ -1373,14 +1225,12 @@ | |||
1373 | </trans-unit> | 1225 | </trans-unit> |
1374 | <trans-unit id="3188014010833256853" datatype="html"> | 1226 | <trans-unit id="3188014010833256853" datatype="html"> |
1375 | <source>Enter your email address and we will send you a link to reset your password.</source> | 1227 | <source>Enter your email address and we will send you a link to reset your password.</source> |
1376 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1228 | <target state="translated">Syötä sähköpostiosoitteesi ja lähetämme sinulle linkin, josta voit palauttaa salasanasi.</target> |
1377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> | 1229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> |
1378 | </trans-unit> | 1230 | </trans-unit> |
1379 | <trans-unit id="1190256911880544559" datatype="html"> | 1231 | <trans-unit id="1190256911880544559" datatype="html"> |
1380 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1232 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. The link will expire within 1 hour.</source> |
1381 | The link will expire within 1 hour.</source> | 1233 | <target state="translated">Ohjeet salasanan palautukseen lähetetään osoitteeseen <x id="PH" equiv-text="this.forgotPasswordEmail"/>. Linkki on voimassa 1 tunnin.</target> |
1382 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. | ||
1383 | The link will expire within 1 hour.</target> | ||
1384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> | 1234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> |
1385 | </trans-unit> | 1235 | </trans-unit> |
1386 | <trans-unit id="4768749765465246664"> | 1236 | <trans-unit id="4768749765465246664"> |
@@ -1403,7 +1253,7 @@ The link will expire within 1 hour.</target> | |||
1403 | </trans-unit> | 1253 | </trans-unit> |
1404 | <trans-unit id="7808756054397155068" datatype="html"> | 1254 | <trans-unit id="7808756054397155068" datatype="html"> |
1405 | <source>Reset</source> | 1255 | <source>Reset</source> |
1406 | <target state="new">Reset</target> | 1256 | <target state="translated">Palauta</target> |
1407 | <note priority="1" from="description">Password reset button</note> | 1257 | <note priority="1" from="description">Password reset button</note> |
1408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">130</context></context-group> | 1258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">130</context></context-group> |
1409 | </trans-unit> | 1259 | </trans-unit> |
@@ -1418,8 +1268,8 @@ The link will expire within 1 hour.</target> | |||
1418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | 1268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> |
1419 | </trans-unit> | 1269 | </trans-unit> |
1420 | <trans-unit id="8434369348784683733" datatype="html"> | 1270 | <trans-unit id="8434369348784683733" datatype="html"> |
1421 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 1271 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
1422 | <target state="new">for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 1272 | <target state="new">for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
1423 | <context-group purpose="location"> | 1273 | <context-group purpose="location"> |
1424 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1274 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1425 | <context context-type="linenumber">10</context> | 1275 | <context context-type="linenumber">10</context> |
@@ -1427,9 +1277,7 @@ The link will expire within 1 hour.</target> | |||
1427 | </trans-unit> | 1277 | </trans-unit> |
1428 | <trans-unit id="107448797428840891"> | 1278 | <trans-unit id="107448797428840891"> |
1429 | <source>Reset my password</source> | 1279 | <source>Reset my password</source> |
1430 | <target> | 1280 | <target>Nollaa salasanani</target> |
1431 | Alusta salasanani | ||
1432 | </target> | ||
1433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">2</context></context-group> | 1281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">2</context></context-group> |
1434 | </trans-unit> | 1282 | </trans-unit> |
1435 | <trans-unit id="3782563238994348625"> | 1283 | <trans-unit id="3782563238994348625"> |
@@ -1467,20 +1315,12 @@ The link will expire within 1 hour.</target> | |||
1467 | </trans-unit> | 1315 | </trans-unit> |
1468 | <trans-unit id="5340005218109333045"> | 1316 | <trans-unit id="5340005218109333045"> |
1469 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1317 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1470 | <target> | 1318 | <target>Suodata <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> |
1471 | Suodata | ||
1472 | |||
1473 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | ||
1474 | <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> | ||
1475 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | ||
1476 | </target> | ||
1477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">18</context></context-group> | 1319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">18</context></context-group> |
1478 | </trans-unit> | 1320 | </trans-unit> |
1479 | <trans-unit id="2236371857137398396"> | 1321 | <trans-unit id="2236371857137398396"> |
1480 | <source>No results found</source> | 1322 | <source>No results found</source> |
1481 | <target> | 1323 | <target>Ei löytynyt yhtään tulosta</target> |
1482 | Ei löytynyt yhtään tulosta, joka sisältäisi kaikki hakutermisi. | ||
1483 | </target> | ||
1484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">32</context></context-group> | 1324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">32</context></context-group> |
1485 | </trans-unit> | 1325 | </trans-unit> |
1486 | <trans-unit id="1516969129397662377" datatype="html"> | 1326 | <trans-unit id="1516969129397662377" datatype="html"> |
@@ -1490,17 +1330,17 @@ The link will expire within 1 hour.</target> | |||
1490 | </trans-unit> | 1330 | </trans-unit> |
1491 | <trans-unit id="807030720531713957" datatype="html"> | 1331 | <trans-unit id="807030720531713957" datatype="html"> |
1492 | <source>CLI documentation</source> | 1332 | <source>CLI documentation</source> |
1493 | <target state="new"/> | 1333 | <target state="translated">CLI dokumentaatio</target> |
1494 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group> | 1334 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group> |
1495 | </trans-unit> | 1335 | </trans-unit> |
1496 | <trans-unit id="199127249622290422" datatype="html"> | 1336 | <trans-unit id="199127249622290422" datatype="html"> |
1497 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1337 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1498 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1338 | <target state="translated">Lataa tai tuo videoita, katsele lokeja, karsi tiedostohakemistoja, nollaa käyttäjien salasanoja...</target> |
1499 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group> | 1339 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group> |
1500 | </trans-unit> | 1340 | </trans-unit> |
1501 | <trans-unit id="249453844439446209" datatype="html"> | 1341 | <trans-unit id="249453844439446209" datatype="html"> |
1502 | <source>Administer documentation</source> | 1342 | <source>Administer documentation</source> |
1503 | <target state="new"/> | 1343 | <target state="translated">Järjestelmänvalvojan dokumentaatio</target> |
1504 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group> | 1344 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group> |
1505 | </trans-unit> | 1345 | </trans-unit> |
1506 | <trans-unit id="5910950876330656326" datatype="html"> | 1346 | <trans-unit id="5910950876330656326" datatype="html"> |
@@ -1510,7 +1350,7 @@ The link will expire within 1 hour.</target> | |||
1510 | </trans-unit> | 1350 | </trans-unit> |
1511 | <trans-unit id="879127294610588497" datatype="html"> | 1351 | <trans-unit id="879127294610588497" datatype="html"> |
1512 | <source>Use documentation</source> | 1352 | <source>Use documentation</source> |
1513 | <target state="new"/> | 1353 | <target state="translated">Käyttödokumentaatio</target> |
1514 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group> | 1354 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group> |
1515 | </trans-unit> | 1355 | </trans-unit> |
1516 | <trans-unit id="3848077896245199337" datatype="html"> | 1356 | <trans-unit id="3848077896245199337" datatype="html"> |
@@ -1525,18 +1365,12 @@ The link will expire within 1 hour.</target> | |||
1525 | </trans-unit> | 1365 | </trans-unit> |
1526 | <trans-unit id="5170617864166788170" datatype="html"> | 1366 | <trans-unit id="5170617864166788170" datatype="html"> |
1527 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1367 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1528 | <target state="new">Official PeerTube website (news, support, contribute...): | 1368 | <target state="needs-translation">Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> |
1529 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org | ||
1530 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
1531 | </target> | ||
1532 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group> | 1369 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group> |
1533 | </trans-unit> | 1370 | </trans-unit> |
1534 | <trans-unit id="4614992717645869756" datatype="html"> | 1371 | <trans-unit id="4614992717645869756" datatype="html"> |
1535 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1372 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1536 | <target state="new">Put your instance on the public PeerTube index: | 1373 | <target state="needs-translation">Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
1537 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances | ||
1538 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
1539 | </target> | ||
1540 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group> | 1374 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group> |
1541 | </trans-unit> | 1375 | </trans-unit> |
1542 | <trans-unit id="2081626998027585315" datatype="html"> | 1376 | <trans-unit id="2081626998027585315" datatype="html"> |
@@ -1546,7 +1380,7 @@ The link will expire within 1 hour.</target> | |||
1546 | </trans-unit> | 1380 | </trans-unit> |
1547 | <trans-unit id="5083058563861587027" datatype="html"> | 1381 | <trans-unit id="5083058563861587027" datatype="html"> |
1548 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> | 1382 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> |
1549 | <target state="new"/> | 1383 | <target state="translated">Palvelimen <x id="START_TAG_STRONG"/>nimen valitseminen<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>kuvauksen asettaminen<x id="CLOSE_TAG_STRONG"/>, kertomalla <x id="START_TAG_STRONG"/>kuka olet<x id="CLOSE_TAG_STRONG"/>, sekä miksi <x id="START_TAG_STRONG"/>loit oman palvelimen<x id="CLOSE_TAG_STRONG"/> ja <x id="START_TAG_STRONG"/>miten kauaksi aikaa<x id="CLOSE_TAG_STRONG"/> suunnittelet <x id="START_TAG_STRONG"/>ylläpitoa<x id="CLOSE_TAG_STRONG"/> ovat tärkeitä tietoja kävijöille, jotta he tietävät millaisella palvelimella ovat. </target> |
1550 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">57</context></context-group> | 1384 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">57</context></context-group> |
1551 | </trans-unit> | 1385 | </trans-unit> |
1552 | <trans-unit id="5329436244765769292" datatype="html"> | 1386 | <trans-unit id="5329436244765769292" datatype="html"> |
@@ -1619,13 +1453,13 @@ The link will expire within 1 hour.</target> | |||
1619 | </trans-unit> | 1453 | </trans-unit> |
1620 | <trans-unit id="4116024528500133384" datatype="html"> | 1454 | <trans-unit id="4116024528500133384" datatype="html"> |
1621 | <source>My settings</source> | 1455 | <source>My settings</source> |
1622 | <target state="new">My settings</target> | 1456 | <target state="translated">Asetukset</target> |
1623 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group> | 1457 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group> |
1624 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">3</context></context-group> | 1458 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
1625 | </trans-unit> | 1459 | </trans-unit> |
1626 | <trans-unit id="1420294365005204590" datatype="html"> | 1460 | <trans-unit id="1420294365005204590" datatype="html"> |
1627 | <source>These settings apply only to your session on this instance.</source> | 1461 | <source>These settings apply only to your session on this instance.</source> |
1628 | <target state="new">These settings apply only to your session on this instance.</target> | 1462 | <target state="translated">Nämä asetukset pätevät ainoastaan istuntoosi tällä instanssilla.</target> |
1629 | <context-group purpose="location"> | 1463 | <context-group purpose="location"> |
1630 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1464 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1631 | <context context-type="linenumber">8</context> | 1465 | <context context-type="linenumber">8</context> |
@@ -1633,15 +1467,7 @@ The link will expire within 1 hour.</target> | |||
1633 | </trans-unit> | 1467 | </trans-unit> |
1634 | <trans-unit id="5330788940795142335" datatype="html"> | 1468 | <trans-unit id="5330788940795142335" datatype="html"> |
1635 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> | 1469 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> |
1636 | <target state="new"> | 1470 | <target state="needs-translation">Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </target> |
1637 | Please consider configuring these fields to help people to choose | ||
1638 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance | ||
1639 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. | ||
1640 | Without them, your instance may not be referenced on the | ||
1641 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website | ||
1642 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | ||
1643 | |||
1644 | </target> | ||
1645 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">24</context></context-group> | 1471 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">24</context></context-group> |
1646 | </trans-unit> | 1472 | </trans-unit> |
1647 | <trans-unit id="2728623642717111613" datatype="html"> | 1473 | <trans-unit id="2728623642717111613" datatype="html"> |
@@ -1687,7 +1513,7 @@ The link will expire within 1 hour.</target> | |||
1687 | </trans-unit> | 1513 | </trans-unit> |
1688 | <trans-unit id="7773271640656013365" datatype="html"> | 1514 | <trans-unit id="7773271640656013365" datatype="html"> |
1689 | <source>Interface:</source> | 1515 | <source>Interface:</source> |
1690 | <target state="new">Interface:</target> | 1516 | <target state="translated">Käyttöliittymä:</target> |
1691 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group> | 1517 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group> |
1692 | </trans-unit> | 1518 | </trans-unit> |
1693 | <trans-unit id="1674139713929545659" datatype="html"> | 1519 | <trans-unit id="1674139713929545659" datatype="html"> |
@@ -1702,7 +1528,7 @@ The link will expire within 1 hour.</target> | |||
1702 | </trans-unit> | 1528 | </trans-unit> |
1703 | <trans-unit id="3430483831942247060" datatype="html"> | 1529 | <trans-unit id="3430483831942247060" datatype="html"> |
1704 | <source>Help share videos</source> | 1530 | <source>Help share videos</source> |
1705 | <target state="new">Help share videos</target> | 1531 | <target state="translated">Auta jakamaan videoita</target> |
1706 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group> | 1532 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group> |
1707 | </trans-unit> | 1533 | </trans-unit> |
1708 | <trans-unit id="7005745151564974365" datatype="html"> | 1534 | <trans-unit id="7005745151564974365" datatype="html"> |
@@ -1764,7 +1590,7 @@ The link will expire within 1 hour.</target> | |||
1764 | </trans-unit> | 1590 | </trans-unit> |
1765 | <trans-unit id="2689878465089314112" datatype="html"> | 1591 | <trans-unit id="2689878465089314112" datatype="html"> |
1766 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1592 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1767 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1593 | <target state="translated">Käyttöliittymä: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
1768 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | 1594 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> |
1769 | </trans-unit> | 1595 | </trans-unit> |
1770 | <trans-unit id="667372110624203230" datatype="html"> | 1596 | <trans-unit id="667372110624203230" datatype="html"> |
@@ -1789,8 +1615,8 @@ The link will expire within 1 hour.</target> | |||
1789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> | 1615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> |
1790 | </trans-unit> | 1616 | </trans-unit> |
1791 | <trans-unit id="2095604754338363597" datatype="html"> | 1617 | <trans-unit id="2095604754338363597" datatype="html"> |
1792 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> | 1618 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> |
1793 | <target state="new">âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</target> | 1619 | <target state="translated">âš ï¸ Jos käytössä, suosittelemme <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>HTTP-välityspalvelimen<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> käyttöä estääksesi PeerTube-palvelimeltasi tapahtuvien yksityisten URL-osoitteiden vierailua</target> |
1794 | <context-group purpose="location"> | 1620 | <context-group purpose="location"> |
1795 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 1621 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
1796 | <context context-type="linenumber">272</context> | 1622 | <context context-type="linenumber">272</context> |
@@ -1854,18 +1680,18 @@ The link will expire within 1 hour.</target> | |||
1854 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> | 1680 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
1855 | </trans-unit> | 1681 | </trans-unit> |
1856 | <trans-unit id="7239874680342223476" datatype="html"> | 1682 | <trans-unit id="7239874680342223476" datatype="html"> |
1857 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> | 1683 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> |
1858 | <target state="new">Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</target> | 1684 | <target state="new">Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</target> |
1859 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> | 1685 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> |
1860 | </trans-unit> | 1686 | </trans-unit> |
1861 | <trans-unit id="5856432243446401016" datatype="html"> | 1687 | <trans-unit id="5856432243446401016" datatype="html"> |
1862 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 1688 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
1863 | <target state="new">Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1689 | <target state="new">Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1864 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> | 1690 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> |
1865 | </trans-unit> | 1691 | </trans-unit> |
1866 | <trans-unit id="3221645359464920754" datatype="html"> | 1692 | <trans-unit id="3221645359464920754" datatype="html"> |
1867 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 1693 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
1868 | <target state="new">Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1694 | <target state="new">Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1869 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | 1695 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> |
1870 | </trans-unit> | 1696 | </trans-unit> |
1871 | <trans-unit id="2218100934178971211" datatype="html"> | 1697 | <trans-unit id="2218100934178971211" datatype="html"> |
@@ -1982,9 +1808,7 @@ The link will expire within 1 hour.</target> | |||
1982 | </trans-unit> | 1808 | </trans-unit> |
1983 | <trans-unit id="1843010981261389722" datatype="html"> | 1809 | <trans-unit id="1843010981261389722" datatype="html"> |
1984 | <source>using <x id="INTERPOLATION"/></source> | 1810 | <source>using <x id="INTERPOLATION"/></source> |
1985 | <target state="new">using | 1811 | <target state="needs-translation">using <x id="INTERPOLATION"/></target> |
1986 | <x id="INTERPOLATION" equiv-text="{{ serverConfig.search.searchIndex.url }}"/> | ||
1987 | </target> | ||
1988 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">28</context></context-group> | 1812 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">28</context></context-group> |
1989 | </trans-unit> | 1813 | </trans-unit> |
1990 | <trans-unit id="4070041848101291003" datatype="html"> | 1814 | <trans-unit id="4070041848101291003" datatype="html"> |
@@ -2002,7 +1826,7 @@ The link will expire within 1 hour.</target> | |||
2002 | </trans-unit> | 1826 | </trans-unit> |
2003 | <trans-unit id="3801957940570333397" datatype="html"> | 1827 | <trans-unit id="3801957940570333397" datatype="html"> |
2004 | <source>ADVANCED SEARCH</source> | 1828 | <source>ADVANCED SEARCH</source> |
2005 | <target state="new">ADVANCED SEARCH</target> | 1829 | <target state="translated">TARKENNETTU HAKU</target> |
2006 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">39</context></context-group> | 1830 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">39</context></context-group> |
2007 | </trans-unit> | 1831 | </trans-unit> |
2008 | <trans-unit id="3416071273413341159" datatype="html"> | 1832 | <trans-unit id="3416071273413341159" datatype="html"> |
@@ -2033,7 +1857,7 @@ The link will expire within 1 hour.</target> | |||
2033 | </trans-unit> | 1857 | </trans-unit> |
2034 | <trans-unit id="8854094932942190741"> | 1858 | <trans-unit id="8854094932942190741"> |
2035 | <source>Search...</source> | 1859 | <source>Search...</source> |
2036 | <target>Haku</target> | 1860 | <target>Haku...</target> |
2037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group> | 1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group> |
2038 | </trans-unit> | 1862 | </trans-unit> |
2039 | <trans-unit id="2468689683507870964" datatype="html"> | 1863 | <trans-unit id="2468689683507870964" datatype="html"> |
@@ -2109,7 +1933,7 @@ The link will expire within 1 hour.</target> | |||
2109 | </trans-unit> | 1933 | </trans-unit> |
2110 | <trans-unit id="2199290266269383925" datatype="html"> | 1934 | <trans-unit id="2199290266269383925" datatype="html"> |
2111 | <source>Display all categories</source> | 1935 | <source>Display all categories</source> |
2112 | <target state="new">Display all categories</target> | 1936 | <target state="translated">Näytä kaikki kategoriat</target> |
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">127</context></context-group> | 1937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">127</context></context-group> |
2114 | </trans-unit> | 1938 | </trans-unit> |
2115 | <trans-unit id="9065795501872450602"> | 1939 | <trans-unit id="9065795501872450602"> |
@@ -2175,9 +1999,7 @@ The link will expire within 1 hour.</target> | |||
2175 | </trans-unit> | 1999 | </trans-unit> |
2176 | <trans-unit id="5478121364779850827" datatype="html"> | 2000 | <trans-unit id="5478121364779850827" datatype="html"> |
2177 | <source>Reset</source> | 2001 | <source>Reset</source> |
2178 | <target state="new"> | 2002 | <target state="translated">Palauta</target> |
2179 | Reset | ||
2180 | </target> | ||
2181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">8</context></context-group> | 2003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">8</context></context-group> |
2182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">22</context></context-group> | 2004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">22</context></context-group> |
2183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">41</context></context-group> | 2005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">41</context></context-group> |
@@ -2261,16 +2083,7 @@ The link will expire within 1 hour.</target> | |||
2261 | </trans-unit> | 2083 | </trans-unit> |
2262 | <trans-unit id="354332809647287722" datatype="html"> | 2084 | <trans-unit id="354332809647287722" datatype="html"> |
2263 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> | 2085 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> |
2264 | <target state="new"> | 2086 | <target state="needs-translation">Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </target> |
2265 | Tags could be used to suggest relevant recommendations. | ||
2266 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
2267 | There is a maximum of 5 tags. | ||
2268 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
2269 | Press | ||
2270 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter | ||
2271 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. | ||
2272 | |||
2273 | </target> | ||
2274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">29</context></context-group> | 2087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">29</context></context-group> |
2275 | </trans-unit> | 2088 | </trans-unit> |
2276 | <trans-unit id="3265632123453688399"> | 2089 | <trans-unit id="3265632123453688399"> |
@@ -2321,8 +2134,8 @@ The link will expire within 1 hour.</target> | |||
2321 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> | 2134 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> |
2322 | </trans-unit> | 2135 | </trans-unit> |
2323 | <trans-unit id="1358902062258458923" datatype="html"> | 2136 | <trans-unit id="1358902062258458923" datatype="html"> |
2324 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 2137 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
2325 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2138 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
2326 | <context-group purpose="location"> | 2139 | <context-group purpose="location"> |
2327 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> | 2140 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> |
2328 | <context context-type="linenumber">2</context> | 2141 | <context context-type="linenumber">2</context> |
@@ -2330,7 +2143,7 @@ The link will expire within 1 hour.</target> | |||
2330 | </trans-unit> | 2143 | </trans-unit> |
2331 | <trans-unit id="7976591803735140601" datatype="html"> | 2144 | <trans-unit id="7976591803735140601" datatype="html"> |
2332 | <source>Latest published video</source> | 2145 | <source>Latest published video</source> |
2333 | <target state="new">Latest published video</target> | 2146 | <target state="translated">Viimeisin julkaistu video</target> |
2334 | <context-group purpose="location"> | 2147 | <context-group purpose="location"> |
2335 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 2148 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
2336 | <context context-type="linenumber">24</context> | 2149 | <context context-type="linenumber">24</context> |
@@ -2397,8 +2210,8 @@ The link will expire within 1 hour.</target> | |||
2397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> | 2210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> |
2398 | </trans-unit> | 2211 | </trans-unit> |
2399 | <trans-unit id="2090254132451149776" datatype="html"> | 2212 | <trans-unit id="2090254132451149776" datatype="html"> |
2400 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> | 2213 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> |
2401 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </target> | 2214 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </target> |
2402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> | 2215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> |
2403 | </trans-unit> | 2216 | </trans-unit> |
2404 | <trans-unit id="5462361983940693567"> | 2217 | <trans-unit id="5462361983940693567"> |
@@ -2435,14 +2248,12 @@ The link will expire within 1 hour.</target> | |||
2435 | </trans-unit> | 2248 | </trans-unit> |
2436 | <trans-unit id="9012879216268259096"> | 2249 | <trans-unit id="9012879216268259096"> |
2437 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 2250 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
2438 | <target>Ajoita julkaisu ( | 2251 | <target>Ajoita julkaisu (<x id="INTERPOLATION"/>)</target> |
2439 | <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>) | ||
2440 | </target> | ||
2441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">123</context></context-group> | 2252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">123</context></context-group> |
2442 | </trans-unit> | 2253 | </trans-unit> |
2443 | <trans-unit id="9155449485123349070" datatype="html"> | 2254 | <trans-unit id="9155449485123349070" datatype="html"> |
2444 | <source>Contains sensitive content</source> | 2255 | <source>Contains sensitive content</source> |
2445 | <target state="new">Contains sensitive content</target> | 2256 | <target state="translated">Sisältää arkaluonteista sisältöä</target> |
2446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">137</context></context-group> | 2257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">137</context></context-group> |
2447 | </trans-unit> | 2258 | </trans-unit> |
2448 | <trans-unit id="4850841867094321899" datatype="html"> | 2259 | <trans-unit id="4850841867094321899" datatype="html"> |
@@ -2476,7 +2287,7 @@ The link will expire within 1 hour.</target> | |||
2476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> | 2287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> |
2477 | </trans-unit> | 2288 | </trans-unit> |
2478 | <trans-unit id="5600963353867835532"> | 2289 | <trans-unit id="5600963353867835532"> |
2479 | <source>Already uploaded ✔</source> | 2290 | <source>Already uploaded ✔</source> |
2480 | <target>On jo ladattu ✔</target> | 2291 | <target>On jo ladattu ✔</target> |
2481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> | 2292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> |
2482 | </trans-unit> | 2293 | </trans-unit> |
@@ -2500,7 +2311,7 @@ The link will expire within 1 hour.</target> | |||
2500 | </trans-unit> | 2311 | </trans-unit> |
2501 | <trans-unit id="4013233634947488312" datatype="html"> | 2312 | <trans-unit id="4013233634947488312" datatype="html"> |
2502 | <source>Cancel edition</source> | 2313 | <source>Cancel edition</source> |
2503 | <target state="new">Cancel edition</target> | 2314 | <target state="translated">Peruuta muokkaus</target> |
2504 | <context-group purpose="location"> | 2315 | <context-group purpose="location"> |
2505 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2316 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2506 | <context context-type="linenumber">206</context> | 2317 | <context context-type="linenumber">206</context> |
@@ -2646,9 +2457,7 @@ The link will expire within 1 hour.</target> | |||
2646 | </trans-unit> | 2457 | </trans-unit> |
2647 | <trans-unit id="5359075917564707730" datatype="html"> | 2458 | <trans-unit id="5359075917564707730" datatype="html"> |
2648 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> | 2459 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> |
2649 | <target state="new">Congratulations, the video behind | 2460 | <target state="needs-translation">Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </target> |
2650 | <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video. | ||
2651 | </target> | ||
2652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group> | 2461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group> |
2653 | </trans-unit> | 2462 | </trans-unit> |
2654 | <trans-unit id="6722765664648523978"> | 2463 | <trans-unit id="6722765664648523978"> |
@@ -2690,7 +2499,7 @@ The link will expire within 1 hour.</target> | |||
2690 | </trans-unit> | 2499 | </trans-unit> |
2691 | <trans-unit id="7099631707196015765" datatype="html"> | 2500 | <trans-unit id="7099631707196015765" datatype="html"> |
2692 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> | 2501 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> |
2693 | <target state="new"/> | 2502 | <target state="translated">Kuva joka tullaan yhdistämään audiotiedostoosi. <x id="LINE_BREAK"/> Valittu kuva on lopullinen, eikä sitä voi muuttaa. </target> |
2694 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">36</context></context-group> | 2503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">36</context></context-group> |
2695 | </trans-unit> | 2504 | </trans-unit> |
2696 | <trans-unit id="4626927731329688072" datatype="html"> | 2505 | <trans-unit id="4626927731329688072" datatype="html"> |
@@ -2848,31 +2657,17 @@ The link will expire within 1 hour.</target> | |||
2848 | </trans-unit> | 2657 | </trans-unit> |
2849 | <trans-unit id="2993949426196989262" datatype="html"> | 2658 | <trans-unit id="2993949426196989262" datatype="html"> |
2850 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> | 2659 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> |
2851 | <target state="new"> | 2660 | <target state="needs-translation">We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </target> |
2852 | We recommend you to not use the | ||
2853 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root | ||
2854 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. | ||
2855 | |||
2856 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
2857 | Instead, | ||
2858 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account | ||
2859 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. | ||
2860 | |||
2861 | </target> | ||
2862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">33</context></context-group> | 2661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">33</context></context-group> |
2863 | </trans-unit> | 2662 | </trans-unit> |
2864 | <trans-unit id="293476877021544115"> | 2663 | <trans-unit id="293476877021544115"> |
2865 | <source>Import <x id="INTERPOLATION"/></source> | 2664 | <source>Import <x id="INTERPOLATION"/></source> |
2866 | <target>Tuo | 2665 | <target>Tuo <x id="INTERPOLATION"/></target> |
2867 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | ||
2868 | </target> | ||
2869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">44</context></context-group> | 2666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">44</context></context-group> |
2870 | </trans-unit> | 2667 | </trans-unit> |
2871 | <trans-unit id="4766833966971572147"> | 2668 | <trans-unit id="4766833966971572147"> |
2872 | <source>Upload <x id="INTERPOLATION"/></source> | 2669 | <source>Upload <x id="INTERPOLATION"/></source> |
2873 | <target>Lataa | 2670 | <target>Lataa <x id="INTERPOLATION"/></target> |
2874 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | ||
2875 | </target> | ||
2876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">45</context></context-group> | 2671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">45</context></context-group> |
2877 | </trans-unit> | 2672 | </trans-unit> |
2878 | <trans-unit id="7003826819757856838"> | 2673 | <trans-unit id="7003826819757856838"> |
@@ -2941,7 +2736,7 @@ The link will expire within 1 hour.</target> | |||
2941 | </trans-unit> | 2736 | </trans-unit> |
2942 | <trans-unit id="5806907163449517166" datatype="html"> | 2737 | <trans-unit id="5806907163449517166" datatype="html"> |
2943 | <source>Update playlist privacy</source> | 2738 | <source>Update playlist privacy</source> |
2944 | <target state="new"> Update playlist privacy </target> | 2739 | <target state="translated">Päivitä soittolistan yksityisyys</target> |
2945 | <context-group purpose="location"> | 2740 | <context-group purpose="location"> |
2946 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2741 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2947 | <context context-type="linenumber">16,18</context> | 2742 | <context context-type="linenumber">16,18</context> |
@@ -2967,7 +2762,7 @@ The link will expire within 1 hour.</target> | |||
2967 | </trans-unit> | 2762 | </trans-unit> |
2968 | <trans-unit id="3201319007886576629" datatype="html"> | 2763 | <trans-unit id="3201319007886576629" datatype="html"> |
2969 | <source>Update video privacy</source> | 2764 | <source>Update video privacy</source> |
2970 | <target state="new"> Update video privacy </target> | 2765 | <target state="translated">Päivitä videon yksityisyys</target> |
2971 | <context-group purpose="location"> | 2766 | <context-group purpose="location"> |
2972 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2767 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2973 | <context context-type="linenumber">84,86</context> | 2768 | <context context-type="linenumber">84,86</context> |
@@ -3000,16 +2795,12 @@ The link will expire within 1 hour.</target> | |||
3000 | </trans-unit> | 2795 | </trans-unit> |
3001 | <trans-unit id="2353402732767789211" datatype="html"> | 2796 | <trans-unit id="2353402732767789211" datatype="html"> |
3002 | <source>More customization</source> | 2797 | <source>More customization</source> |
3003 | <target state="new"> | 2798 | <target state="translated">Lisää</target> |
3004 | More customization | ||
3005 | </target> | ||
3006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">255</context></context-group> | 2799 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">255</context></context-group> |
3007 | </trans-unit> | 2800 | </trans-unit> |
3008 | <trans-unit id="1284179134768564307" datatype="html"> | 2801 | <trans-unit id="1284179134768564307" datatype="html"> |
3009 | <source>Less customization</source> | 2802 | <source>Less customization</source> |
3010 | <target state="new"> | 2803 | <target state="translated">Vähemmän</target> |
3011 | Less customization | ||
3012 | </target> | ||
3013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">263</context></context-group> | 2804 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">263</context></context-group> |
3014 | </trans-unit> | 2805 | </trans-unit> |
3015 | <trans-unit id="1290987288288099212" datatype="html"> | 2806 | <trans-unit id="1290987288288099212" datatype="html"> |
@@ -3022,7 +2813,7 @@ The link will expire within 1 hour.</target> | |||
3022 | </trans-unit> | 2813 | </trans-unit> |
3023 | <trans-unit id="2454050363478003966" datatype="html"> | 2814 | <trans-unit id="2454050363478003966" datatype="html"> |
3024 | <source>Login</source> | 2815 | <source>Login</source> |
3025 | <target state="new">Login</target> | 2816 | <target state="translated">Kirjaudu</target> |
3026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | 2817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> |
3027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> | 2818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> |
3028 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group> | 2819 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group> |
@@ -3035,7 +2826,7 @@ The link will expire within 1 hour.</target> | |||
3035 | </trans-unit> | 2826 | </trans-unit> |
3036 | <trans-unit id="5336944753883027145" datatype="html"> | 2827 | <trans-unit id="5336944753883027145" datatype="html"> |
3037 | <source>Maybe later</source> | 2828 | <source>Maybe later</source> |
3038 | <target state="new">Maybe later</target> | 2829 | <target state="translated">Ehkä myöhemmin</target> |
3039 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context><context context-type="linenumber">11</context></context-group> | 2830 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context><context context-type="linenumber">11</context></context-group> |
3040 | </trans-unit> | 2831 | </trans-unit> |
3041 | <trans-unit id="3959826834147169200"> | 2832 | <trans-unit id="3959826834147169200"> |
@@ -3062,7 +2853,7 @@ The link will expire within 1 hour.</target> | |||
3062 | </trans-unit> | 2853 | </trans-unit> |
3063 | <trans-unit id="7482217084177855485" datatype="html"> | 2854 | <trans-unit id="7482217084177855485" datatype="html"> |
3064 | <source>P2P</source> | 2855 | <source>P2P</source> |
3065 | <target state="new">P2P</target> | 2856 | <target state="translated">P2P</target> |
3066 | <context-group purpose="location"> | 2857 | <context-group purpose="location"> |
3067 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2858 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
3068 | <context context-type="linenumber">222</context> | 2859 | <context context-type="linenumber">222</context> |
@@ -3080,7 +2871,7 @@ The link will expire within 1 hour.</target> | |||
3080 | </trans-unit> | 2871 | </trans-unit> |
3081 | <trans-unit id="805456636864344681" datatype="html"> | 2872 | <trans-unit id="805456636864344681" datatype="html"> |
3082 | <source>Display PeerTube button link</source> | 2873 | <source>Display PeerTube button link</source> |
3083 | <target state="new">Display PeerTube button link</target> | 2874 | <target state="translated">Näytä PeerTube linkki</target> |
3084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">243</context></context-group> | 2875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">243</context></context-group> |
3085 | </trans-unit> | 2876 | </trans-unit> |
3086 | <trans-unit id="8928816882866356838"> | 2877 | <trans-unit id="8928816882866356838"> |
@@ -3095,7 +2886,7 @@ The link will expire within 1 hour.</target> | |||
3095 | </trans-unit> | 2886 | </trans-unit> |
3096 | <trans-unit id="2482137713226830428" datatype="html"> | 2887 | <trans-unit id="2482137713226830428" datatype="html"> |
3097 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2888 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
3098 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2889 | <target state="translated">Julkaistu <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
3099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group> | 2890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group> |
3100 | </trans-unit> | 2891 | </trans-unit> |
3101 | <trans-unit id="1813238393038053050" datatype="html"> | 2892 | <trans-unit id="1813238393038053050" datatype="html"> |
@@ -3135,19 +2926,17 @@ The link will expire within 1 hour.</target> | |||
3135 | </trans-unit> | 2926 | </trans-unit> |
3136 | <trans-unit id="687548610091961489"> | 2927 | <trans-unit id="687548610091961489"> |
3137 | <source>By <x id="INTERPOLATION"/></source> | 2928 | <source>By <x id="INTERPOLATION"/></source> |
3138 | <target> | 2929 | <target><x id="INTERPOLATION"/></target> |
3139 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | ||
3140 | </target> | ||
3141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group> | 2930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group> |
3142 | </trans-unit> | 2931 | </trans-unit> |
3143 | <trans-unit id="1144407473317535723" datatype="html"> | 2932 | <trans-unit id="1144407473317535723" datatype="html"> |
3144 | <source>Subscribe</source> | 2933 | <source>Subscribe</source> |
3145 | <target state="new">Subscribe</target> | 2934 | <target state="translated">Tilaa</target> |
3146 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">9</context></context-group> | 2935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">9</context></context-group> |
3147 | </trans-unit> | 2936 | </trans-unit> |
3148 | <trans-unit id="5432070253720498105" datatype="html"> | 2937 | <trans-unit id="5432070253720498105" datatype="html"> |
3149 | <source>Subscribe to all channels</source> | 2938 | <source>Subscribe to all channels</source> |
3150 | <target state="new">Subscribe to all channels</target> | 2939 | <target state="translated">Tilaa kaikki kanavat</target> |
3151 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group> | 2940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group> |
3152 | </trans-unit> | 2941 | </trans-unit> |
3153 | <trans-unit id="7542242186854344789" datatype="html"> | 2942 | <trans-unit id="7542242186854344789" datatype="html"> |
@@ -3190,14 +2979,12 @@ The link will expire within 1 hour.</target> | |||
3190 | </trans-unit> | 2979 | </trans-unit> |
3191 | <trans-unit id="6402393085909200998" datatype="html"> | 2980 | <trans-unit id="6402393085909200998" datatype="html"> |
3192 | <source>Friendly Reminder:</source> | 2981 | <source>Friendly Reminder:</source> |
3193 | <target state="new">Friendly Reminder: </target> | 2982 | <target state="translated">Ystävällinen muistutus:</target> |
3194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">4</context></context-group> | 2983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">4</context></context-group> |
3195 | </trans-unit> | 2984 | </trans-unit> |
3196 | <trans-unit id="2935783216050341269" datatype="html"> | 2985 | <trans-unit id="2935783216050341269" datatype="html"> |
3197 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> | 2986 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> |
3198 | <target state="new"> | 2987 | <target state="translated">tällä videolla käytössä oleva jakojärjestelmä edellyttää, että tiettyjä teknisiä tietoja järjestelmästäsi (kuten julkinen IP-osoitteesi) voidaan lähettää toisille käyttäjille.</target> |
3199 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. | ||
3200 | </target> | ||
3201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">5</context></context-group> | 2988 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">5</context></context-group> |
3202 | </trans-unit> | 2989 | </trans-unit> |
3203 | <trans-unit id="4619188387782427495"> | 2990 | <trans-unit id="4619188387782427495"> |
@@ -3239,8 +3026,7 @@ The link will expire within 1 hour.</target> | |||
3239 | </trans-unit> | 3026 | </trans-unit> |
3240 | <trans-unit id="6355398227384499371" datatype="html"> | 3027 | <trans-unit id="6355398227384499371" datatype="html"> |
3241 | <source>Move to external storage failed, this video may not work properly.</source> | 3028 | <source>Move to external storage failed, this video may not work properly.</source> |
3242 | <target state="new"> Move to external storage failed, this video may not work properly. | 3029 | <target state="translated">Siirto ulkoiseen tallennustilaan epäonnistui, tämä video ei välttämättä toimi oikein.</target> |
3243 | </target> | ||
3244 | <context-group purpose="location"> | 3030 | <context-group purpose="location"> |
3245 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3031 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3246 | <context context-type="linenumber">5,7</context> | 3032 | <context context-type="linenumber">5,7</context> |
@@ -3293,9 +3079,7 @@ The link will expire within 1 hour.</target> | |||
3293 | </trans-unit> | 3079 | </trans-unit> |
3294 | <trans-unit id="8518611938109939710" datatype="html"> | 3080 | <trans-unit id="8518611938109939710" datatype="html"> |
3295 | <source>SORT BY</source> | 3081 | <source>SORT BY</source> |
3296 | <target state="new"> | 3082 | <target state="translated">JÄRJESTÄ</target> |
3297 | SORT BY | ||
3298 | </target> | ||
3299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">10</context></context-group> | 3083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">10</context></context-group> |
3300 | </trans-unit> | 3084 | </trans-unit> |
3301 | <trans-unit id="6448160249466325288" datatype="html"> | 3085 | <trans-unit id="6448160249466325288" datatype="html"> |
@@ -3315,24 +3099,24 @@ The link will expire within 1 hour.</target> | |||
3315 | </trans-unit> | 3099 | </trans-unit> |
3316 | <trans-unit id="6390009909920475335" datatype="html"> | 3100 | <trans-unit id="6390009909920475335" datatype="html"> |
3317 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </source> | 3101 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </source> |
3318 | <target state="new"> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </target> | 3102 | <target state="needs-translation">View <x id="ICU" xid="2084023438878610739" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </target> |
3319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">73</context></context-group> | 3103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">73</context></context-group> |
3320 | </trans-unit> | 3104 | </trans-unit> |
3321 | <trans-unit id="4036338619293319383" datatype="html"> | 3105 | <trans-unit id="4036338619293319383" datatype="html"> |
3322 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | 3106 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> |
3323 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> | 3107 | <target state="translated">{VAR_PLURAL, plural, =1 {1 vastaus} other {<x id="INTERPOLATION"/> vastausta}}</target> |
3324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">74</context></context-group> | 3108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">74</context></context-group> |
3325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">77</context></context-group> | 3109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">77</context></context-group> |
3326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group> | 3110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group> |
3327 | </trans-unit> | 3111 | </trans-unit> |
3328 | <trans-unit id="127329338495775339" datatype="html"> | 3112 | <trans-unit id="127329338495775339" datatype="html"> |
3329 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </source> | 3113 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </source> |
3330 | <target state="new"> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> | 3114 | <target state="translated">Katso <x id="ICU" xid="2084023438878610739" equiv-text="{comment.totalReplies, plural, =1 {1 vastaus} other {{{ comment.totalReplies }} vastausta}}"/> käyttäjältä <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> |
3331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">76</context></context-group> | 3115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">76</context></context-group> |
3332 | </trans-unit> | 3116 | </trans-unit> |
3333 | <trans-unit id="5535545444690528619" datatype="html"> | 3117 | <trans-unit id="5535545444690528619" datatype="html"> |
3334 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/></source> | 3118 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/></source> |
3335 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 3119 | <target state="translated">Katso <x id="ICU" xid="2084023438878610739" equiv-text="{comment.totalReplies, plural, =1 {1 vastaus} other {{{ comment.totalReplies }} vastausta}}"/></target> |
3336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group> | 3120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group> |
3337 | </trans-unit> | 3121 | </trans-unit> |
3338 | <trans-unit id="1055254162789146714"> | 3122 | <trans-unit id="1055254162789146714"> |
@@ -3440,14 +3224,7 @@ The link will expire within 1 hour.</target> | |||
3440 | </trans-unit> | 3224 | </trans-unit> |
3441 | <trans-unit id="7651712714082200084" datatype="html"> | 3225 | <trans-unit id="7651712714082200084" datatype="html"> |
3442 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 3226 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
3443 | <target state="new"> | 3227 | <target state="needs-translation">Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </target> |
3444 | Your report will be sent to moderators of | ||
3445 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | ||
3446 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( | ||
3447 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | ||
3448 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | ||
3449 | |||
3450 | </target> | ||
3451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> | 3228 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> |
3452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> | 3229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> |
3453 | </trans-unit> | 3230 | </trans-unit> |
@@ -3536,10 +3313,7 @@ The link will expire within 1 hour.</target> | |||
3536 | </trans-unit> | 3313 | </trans-unit> |
3537 | <trans-unit id="2092225601747599163"> | 3314 | <trans-unit id="2092225601747599163"> |
3538 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3315 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3539 | <target>Luotiin | 3316 | <target>Luotiin <x id="START_TAG_P-SORTICON"/> <x id="CLOSE_TAG_P-SORTICON"/></target> |
3540 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
3541 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
3542 | </target> | ||
3543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">27</context></context-group> | 3317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">27</context></context-group> |
3544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">33</context></context-group> | 3318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">33</context></context-group> |
3545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group> | 3319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group> |
@@ -3588,19 +3362,12 @@ The link will expire within 1 hour.</target> | |||
3588 | </trans-unit> | 3362 | </trans-unit> |
3589 | <trans-unit id="2845798909207198924" datatype="html"> | 3363 | <trans-unit id="2845798909207198924" datatype="html"> |
3590 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> | 3364 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> |
3591 | <target state="new">Showing | 3365 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</target> |
3592 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
3593 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
3594 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers | ||
3595 | </target> | ||
3596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">11</context></context-group> | 3366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">11</context></context-group> |
3597 | </trans-unit> | 3367 | </trans-unit> |
3598 | <trans-unit id="6571718060636962350" datatype="html"> | 3368 | <trans-unit id="6571718060636962350" datatype="html"> |
3599 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3369 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3600 | <target state="new">Redundancy allowed | 3370 | <target state="needs-translation">Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
3601 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
3602 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
3603 | </target> | ||
3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">34</context></context-group> | 3371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">34</context></context-group> |
3605 | </trans-unit> | 3372 | </trans-unit> |
3606 | <trans-unit id="8246779176913476983" datatype="html"> | 3373 | <trans-unit id="8246779176913476983" datatype="html"> |
@@ -3622,11 +3389,7 @@ The link will expire within 1 hour.</target> | |||
3622 | </trans-unit> | 3389 | </trans-unit> |
3623 | <trans-unit id="4774348799569692380" datatype="html"> | 3390 | <trans-unit id="4774348799569692380" datatype="html"> |
3624 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3391 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
3625 | <target state="new">Showing | 3392 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</target> |
3626 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
3627 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
3628 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts | ||
3629 | </target> | ||
3630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">11</context></context-group> | 3393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">11</context></context-group> |
3631 | </trans-unit> | 3394 | </trans-unit> |
3632 | <trans-unit id="9216117865911519658" datatype="html"> | 3395 | <trans-unit id="9216117865911519658" datatype="html"> |
@@ -3713,15 +3476,7 @@ The link will expire within 1 hour.</target> | |||
3713 | </trans-unit> | 3476 | </trans-unit> |
3714 | <trans-unit id="7046347992315328430" datatype="html"> | 3477 | <trans-unit id="7046347992315328430" datatype="html"> |
3715 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> | 3478 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> |
3716 | <target state="new"> | 3479 | <target state="needs-translation">Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </target> |
3717 | Transcoding is enabled. The video quota only takes into account | ||
3718 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original | ||
3719 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. | ||
3720 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | ||
3721 | At most, this user could upload ~ | ||
3722 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. | ||
3723 | |||
3724 | </target> | ||
3725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | 3480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> |
3726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | 3481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> |
3727 | </trans-unit> | 3482 | </trans-unit> |
@@ -3815,7 +3570,7 @@ The link will expire within 1 hour.</target> | |||
3815 | </trans-unit> | 3570 | </trans-unit> |
3816 | <trans-unit id="3254358851993549668"> | 3571 | <trans-unit id="3254358851993549668"> |
3817 | <source>User's email must be verified to login</source> | 3572 | <source>User's email must be verified to login</source> |
3818 | <target>Käyttäjän sähköpostiosoite pitää olla vahvistettu, jotta hän voi kirjautua.</target> | 3573 | <target>Käyttäjän sähköpostiosoite täytyy olla vahvistettu kirjautuaksesi</target> |
3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group> | 3574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group> |
3820 | </trans-unit> | 3575 | </trans-unit> |
3821 | <trans-unit id="3939342579126794385"> | 3576 | <trans-unit id="3939342579126794385"> |
@@ -3840,11 +3595,7 @@ The link will expire within 1 hour.</target> | |||
3840 | </trans-unit> | 3595 | </trans-unit> |
3841 | <trans-unit id="5642198289374753866" datatype="html"> | 3596 | <trans-unit id="5642198289374753866" datatype="html"> |
3842 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 3597 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
3843 | <target state="new">Showing | 3598 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</target> |
3844 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
3845 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
3846 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users | ||
3847 | </target> | ||
3848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">11</context></context-group> | 3599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">11</context></context-group> |
3849 | </trans-unit> | 3600 | </trans-unit> |
3850 | <trans-unit id="2049290282534091182"> | 3601 | <trans-unit id="2049290282534091182"> |
@@ -3881,10 +3632,7 @@ The link will expire within 1 hour.</target> | |||
3881 | </trans-unit> | 3632 | </trans-unit> |
3882 | <trans-unit id="2343069726009080052" datatype="html"> | 3633 | <trans-unit id="2343069726009080052" datatype="html"> |
3883 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3634 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3884 | <target state="new">Video | 3635 | <target state="needs-translation">Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
3885 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
3886 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
3887 | </target> | ||
3888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group> | 3636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group> |
3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">26</context></context-group> | 3637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">26</context></context-group> |
3890 | </trans-unit> | 3638 | </trans-unit> |
@@ -3922,7 +3670,7 @@ The link will expire within 1 hour.</target> | |||
3922 | </trans-unit> | 3670 | </trans-unit> |
3923 | <trans-unit id="4824046935922837124" datatype="html"> | 3671 | <trans-unit id="4824046935922837124" datatype="html"> |
3924 | <source>Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</source> | 3672 | <source>Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</source> |
3925 | <target state="new">Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</target> | 3673 | <target state="translated">Käytetty (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</target> |
3926 | <context-group purpose="location"> | 3674 | <context-group purpose="location"> |
3927 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | 3675 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
3928 | <context context-type="linenumber">99</context> | 3676 | <context context-type="linenumber">99</context> |
@@ -3930,7 +3678,7 @@ The link will expire within 1 hour.</target> | |||
3930 | </trans-unit> | 3678 | </trans-unit> |
3931 | <trans-unit id="5874809640561431793" datatype="html"> | 3679 | <trans-unit id="5874809640561431793" datatype="html"> |
3932 | <source>Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</source> | 3680 | <source>Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</source> |
3933 | <target state="new">Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</target> | 3681 | <target state="translated">Saatavilla (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</target> |
3934 | <context-group purpose="location"> | 3682 | <context-group purpose="location"> |
3935 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | 3683 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
3936 | <context context-type="linenumber">105</context> | 3684 | <context context-type="linenumber">105</context> |
@@ -3949,10 +3697,7 @@ The link will expire within 1 hour.</target> | |||
3949 | </trans-unit> | 3697 | </trans-unit> |
3950 | <trans-unit id="7692347838587821095"> | 3698 | <trans-unit id="7692347838587821095"> |
3951 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3699 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3952 | <target>Päivämäärä | 3700 | <target>Päivämäärä <x id="START_TAG_P-SORTICON"/> <x id="CLOSE_TAG_P-SORTICON"/></target> |
3953 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
3954 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
3955 | </target> | ||
3956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> |
3957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> | 3702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> |
3958 | </trans-unit> | 3703 | </trans-unit> |
@@ -4072,11 +3817,7 @@ The link will expire within 1 hour.</target> | |||
4072 | </trans-unit> | 3817 | </trans-unit> |
4073 | <trans-unit id="2143435845912984377" datatype="html"> | 3818 | <trans-unit id="2143435845912984377" datatype="html"> |
4074 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 3819 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
4075 | <target state="new">Showing | 3820 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</target> |
4076 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
4077 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
4078 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos | ||
4079 | </target> | ||
4080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">11</context></context-group> | 3821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">11</context></context-group> |
4081 | </trans-unit> | 3822 | </trans-unit> |
4082 | <trans-unit id="1868606282505332204" datatype="html"> | 3823 | <trans-unit id="1868606282505332204" datatype="html"> |
@@ -4137,10 +3878,7 @@ The link will expire within 1 hour.</target> | |||
4137 | </trans-unit> | 3878 | </trans-unit> |
4138 | <trans-unit id="5021295327106206941" datatype="html"> | 3879 | <trans-unit id="5021295327106206941" datatype="html"> |
4139 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | 3880 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> |
4140 | <target state="new">by | 3881 | <target state="needs-translation">by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </target> |
4141 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on | ||
4142 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> | ||
4143 | </target> | ||
4144 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">85</context></context-group> | 3882 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">85</context></context-group> |
4145 | </trans-unit> | 3883 | </trans-unit> |
4146 | <trans-unit id="1443698606045744844" datatype="html"> | 3884 | <trans-unit id="1443698606045744844" datatype="html"> |
@@ -4162,10 +3900,7 @@ The link will expire within 1 hour.</target> | |||
4162 | </trans-unit> | 3900 | </trans-unit> |
4163 | <trans-unit id="3301856295120048857"> | 3901 | <trans-unit id="3301856295120048857"> |
4164 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3902 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
4165 | <target>Tila | 3903 | <target>Tila <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
4166 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
4167 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
4168 | </target> | ||
4169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">25</context></context-group> | 3904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">25</context></context-group> |
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">32</context></context-group> | 3905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">32</context></context-group> |
4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">24</context></context-group> | 3906 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">24</context></context-group> |
@@ -4182,19 +3917,12 @@ The link will expire within 1 hour.</target> | |||
4182 | </trans-unit> | 3917 | </trans-unit> |
4183 | <trans-unit id="7418735164633152705" datatype="html"> | 3918 | <trans-unit id="7418735164633152705" datatype="html"> |
4184 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3919 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
4185 | <target state="new">Score | 3920 | <target state="needs-translation">Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
4186 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
4187 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
4188 | </target> | ||
4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">26</context></context-group> | 3921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">26</context></context-group> |
4190 | </trans-unit> | 3922 | </trans-unit> |
4191 | <trans-unit id="9173448803033928792" datatype="html"> | 3923 | <trans-unit id="9173448803033928792" datatype="html"> |
4192 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | 3924 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> |
4193 | <target state="new">Showing | 3925 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</target> |
4194 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
4195 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
4196 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports | ||
4197 | </target> | ||
4198 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">6</context></context-group> | 3926 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">6</context></context-group> |
4199 | </trans-unit> | 3927 | </trans-unit> |
4200 | <trans-unit id="3109314382334906782" datatype="html"> | 3928 | <trans-unit id="3109314382334906782" datatype="html"> |
@@ -4203,20 +3931,14 @@ The link will expire within 1 hour.</target> | |||
4203 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> | 3931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> |
4204 | </trans-unit> | 3932 | </trans-unit> |
4205 | <trans-unit id="1258618443362430782" datatype="html"> | 3933 | <trans-unit id="1258618443362430782" datatype="html"> |
4206 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> | 3934 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> |
4207 | <target state="new"> | 3935 | <target state="translated"><x id="ICU" xid="1879828604800763221" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 raportointi} other {{{ abuse.countReportsForReporter }} raportointia}}"/><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>"/></target> |
4208 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> | ||
4209 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | ||
4210 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | ||
4211 | </target> | ||
4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> | 3936 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> |
4213 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> | 3937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> |
4214 | </trans-unit> | 3938 | </trans-unit> |
4215 | <trans-unit id="6540177673229220400" datatype="html"> | 3939 | <trans-unit id="6540177673229220400" datatype="html"> |
4216 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3940 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
4217 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { | 3941 | <target state="translated">{VAR_PLURAL, plural, =1 {1 raportointi} other {<x id="INTERPOLATION"/> raportointia}}</target> |
4218 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } | ||
4219 | </target> | ||
4220 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">22</context></context-group> | 3942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">22</context></context-group> |
4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">42</context></context-group> | 3943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">42</context></context-group> |
4222 | </trans-unit> | 3944 | </trans-unit> |
@@ -4241,10 +3963,7 @@ The link will expire within 1 hour.</target> | |||
4241 | </trans-unit> | 3963 | </trans-unit> |
4242 | <trans-unit id="1300704815627663264"> | 3964 | <trans-unit id="1300704815627663264"> |
4243 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3965 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
4244 | <target>Mykistetty kohdassa | 3966 | <target>Mykistetty kohdassa <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
4245 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
4246 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
4247 | </target> | ||
4248 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group> | 3967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group> |
4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group> | 3968 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group> |
4250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">32</context></context-group> | 3969 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">32</context></context-group> |
@@ -4272,11 +3991,7 @@ The link will expire within 1 hour.</target> | |||
4272 | </trans-unit> | 3991 | </trans-unit> |
4273 | <trans-unit id="6250599179731937899" datatype="html"> | 3992 | <trans-unit id="6250599179731937899" datatype="html"> |
4274 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> | 3993 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> |
4275 | <target state="new">Showing | 3994 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</target> |
4276 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
4277 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
4278 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances | ||
4279 | </target> | ||
4280 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group> | 3995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group> |
4281 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group> | 3996 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group> |
4282 | </trans-unit> | 3997 | </trans-unit> |
@@ -4329,11 +4044,7 @@ The link will expire within 1 hour.</target> | |||
4329 | </trans-unit> | 4044 | </trans-unit> |
4330 | <trans-unit id="602667807232759122" datatype="html"> | 4045 | <trans-unit id="602667807232759122" datatype="html"> |
4331 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 4046 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
4332 | <target state="new">Showing | 4047 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</target> |
4333 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
4334 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
4335 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted accounts | ||
4336 | </target> | ||
4337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | 4048 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> |
4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | 4049 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> |
4339 | </trans-unit> | 4050 | </trans-unit> |
@@ -4350,7 +4061,7 @@ The link will expire within 1 hour.</target> | |||
4350 | </trans-unit> | 4061 | </trans-unit> |
4351 | <trans-unit id="6185935497147252048" datatype="html"> | 4062 | <trans-unit id="6185935497147252048" datatype="html"> |
4352 | <source>This plugin is developed by Framasoft</source> | 4063 | <source>This plugin is developed by Framasoft</source> |
4353 | <target state="new">This plugin is developed by Framasoft</target> | 4064 | <target state="translated">Tämä lisäosa on Framasoftin kehittämä</target> |
4354 | <context-group purpose="location"> | 4065 | <context-group purpose="location"> |
4355 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4066 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4356 | <context context-type="linenumber">37</context> | 4067 | <context context-type="linenumber">37</context> |
@@ -4358,7 +4069,7 @@ The link will expire within 1 hour.</target> | |||
4358 | </trans-unit> | 4069 | </trans-unit> |
4359 | <trans-unit id="8336721444092720377" datatype="html"> | 4070 | <trans-unit id="8336721444092720377" datatype="html"> |
4360 | <source>Official</source> | 4071 | <source>Official</source> |
4361 | <target state="new"> Official </target> | 4072 | <target state="translated">Virallinen</target> |
4362 | <context-group purpose="location"> | 4073 | <context-group purpose="location"> |
4363 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4074 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4364 | <context context-type="linenumber">37,39</context> | 4075 | <context context-type="linenumber">37,39</context> |
@@ -4385,7 +4096,7 @@ The link will expire within 1 hour.</target> | |||
4385 | </trans-unit> | 4096 | </trans-unit> |
4386 | <trans-unit id="3300472325769888962" datatype="html"> | 4097 | <trans-unit id="3300472325769888962" datatype="html"> |
4387 | <source>Plugins & Themes</source> | 4098 | <source>Plugins & Themes</source> |
4388 | <target state="new">Plugins & Themes</target> | 4099 | <target state="translated">Lisäosat ja teemat</target> |
4389 | <context-group purpose="location"> | 4100 | <context-group purpose="location"> |
4390 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 4101 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
4391 | <context context-type="linenumber">133</context> | 4102 | <context context-type="linenumber">133</context> |
@@ -4415,7 +4126,7 @@ The link will expire within 1 hour.</target> | |||
4415 | </trans-unit> | 4126 | </trans-unit> |
4416 | <trans-unit id="4786000816576841850" datatype="html"> | 4127 | <trans-unit id="4786000816576841850" datatype="html"> |
4417 | <source>Display settings</source> | 4128 | <source>Display settings</source> |
4418 | <target state="new">Display settings</target> | 4129 | <target state="translated">Näyttöasetukset</target> |
4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group> | 4130 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
4420 | </trans-unit> | 4131 | </trans-unit> |
4421 | <trans-unit id="2144158274184161635" datatype="html"> | 4132 | <trans-unit id="2144158274184161635" datatype="html"> |
@@ -4450,7 +4161,7 @@ The link will expire within 1 hour.</target> | |||
4450 | </trans-unit> | 4161 | </trans-unit> |
4451 | <trans-unit id="7577430199525157466" datatype="html"> | 4162 | <trans-unit id="7577430199525157466" datatype="html"> |
4452 | <source>Popular plugins</source> | 4163 | <source>Popular plugins</source> |
4453 | <target state="new">Popular plugins</target> | 4164 | <target state="translated">Suositut lisäosat</target> |
4454 | <context-group purpose="location"> | 4165 | <context-group purpose="location"> |
4455 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4166 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4456 | <context context-type="linenumber">10</context> | 4167 | <context context-type="linenumber">10</context> |
@@ -4458,7 +4169,7 @@ The link will expire within 1 hour.</target> | |||
4458 | </trans-unit> | 4169 | </trans-unit> |
4459 | <trans-unit id="830877982972543118" datatype="html"> | 4170 | <trans-unit id="830877982972543118" datatype="html"> |
4460 | <source>Popular themes</source> | 4171 | <source>Popular themes</source> |
4461 | <target state="new">Popular themes</target> | 4172 | <target state="translated">Suositut teemat</target> |
4462 | <context-group purpose="location"> | 4173 | <context-group purpose="location"> |
4463 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4174 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4464 | <context context-type="linenumber">11</context> | 4175 | <context context-type="linenumber">11</context> |
@@ -4466,12 +4177,12 @@ The link will expire within 1 hour.</target> | |||
4466 | </trans-unit> | 4177 | </trans-unit> |
4467 | <trans-unit id="1780056719120519633" datatype="html"> | 4178 | <trans-unit id="1780056719120519633" datatype="html"> |
4468 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> | 4179 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> |
4469 | <target state="new"> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target> | 4180 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" xid="3148804384763272950" equiv-text="{pagination.totalItems, plural, =1 {tulos} other {tulosta}}"/> haulle "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target> |
4470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">17</context></context-group> | 4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">17</context></context-group> |
4471 | </trans-unit> | 4182 | </trans-unit> |
4472 | <trans-unit id="3148804384763272950"> | 4183 | <trans-unit id="3148804384763272950"> |
4473 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> | 4184 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> |
4474 | <target>{VAR_PLURAL, plural, =1 {result} other {results} }</target> | 4185 | <target>{VAR_PLURAL, plural, =1 {tulos} other {tulosta} }</target> |
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">18</context></context-group> | 4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">18</context></context-group> |
4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> | 4187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> |
4477 | </trans-unit> | 4188 | </trans-unit> |
@@ -4484,9 +4195,7 @@ The link will expire within 1 hour.</target> | |||
4484 | </trans-unit> | 4195 | </trans-unit> |
4485 | <trans-unit id="2601639465696257054" datatype="html"> | 4196 | <trans-unit id="2601639465696257054" datatype="html"> |
4486 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> | 4197 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> |
4487 | <target state="new">This | 4198 | <target state="needs-translation">This <x id="INTERPOLATION"/> does not have settings. </target> |
4488 | <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings. | ||
4489 | </target> | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context><context context-type="linenumber">16</context></context-group> | 4199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context><context context-type="linenumber">16</context></context-group> |
4491 | </trans-unit> | 4200 | </trans-unit> |
4492 | <trans-unit id="29832309535656200"> | 4201 | <trans-unit id="29832309535656200"> |
@@ -4584,8 +4293,8 @@ The link will expire within 1 hour.</target> | |||
4584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> | 4293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> |
4585 | </trans-unit> | 4294 | </trans-unit> |
4586 | <trans-unit id="3901868627411944813" datatype="html"> | 4295 | <trans-unit id="3901868627411944813" datatype="html"> |
4587 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> | 4296 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> |
4588 | <target state="new">Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> | 4297 | <target state="new">Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> |
4589 | <context-group purpose="location"> | 4298 | <context-group purpose="location"> |
4590 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4299 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4591 | <context context-type="linenumber">47</context> | 4300 | <context context-type="linenumber">47</context> |
@@ -4605,8 +4314,8 @@ The link will expire within 1 hour.</target> | |||
4605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> | 4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> |
4606 | </trans-unit> | 4315 | </trans-unit> |
4607 | <trans-unit id="2713421326605345655" datatype="html"> | 4316 | <trans-unit id="2713421326605345655" datatype="html"> |
4608 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | 4317 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> |
4609 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | 4318 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> |
4610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> | 4319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> |
4611 | </trans-unit> | 4320 | </trans-unit> |
4612 | <trans-unit id="2384897339170501794" datatype="html"> | 4321 | <trans-unit id="2384897339170501794" datatype="html"> |
@@ -4654,10 +4363,8 @@ The link will expire within 1 hour.</target> | |||
4654 | </context-group> | 4363 | </context-group> |
4655 | </trans-unit> | 4364 | </trans-unit> |
4656 | <trans-unit id="2232767208623640457" datatype="html"> | 4365 | <trans-unit id="2232767208623640457" datatype="html"> |
4657 | <source>By <x id="INTERPOLATION"/> -></source> | 4366 | <source>By <x id="INTERPOLATION"/> -></source> |
4658 | <target state="new">By | 4367 | <target state="needs-translation">By <x id="INTERPOLATION"/> -></target> |
4659 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> | ||
4660 | </target> | ||
4661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> | 4368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> |
4662 | </trans-unit> | 4369 | </trans-unit> |
4663 | <trans-unit id="7396175500300709096" datatype="html"> | 4370 | <trans-unit id="7396175500300709096" datatype="html"> |
@@ -4690,35 +4397,32 @@ The link will expire within 1 hour.</target> | |||
4690 | </trans-unit> | 4397 | </trans-unit> |
4691 | <trans-unit id="8953934448427251062" datatype="html"> | 4398 | <trans-unit id="8953934448427251062" datatype="html"> |
4692 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> | 4399 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> |
4693 | <target state="new">The | 4400 | <target state="translated"><x id="START_LINK"/>Jakojärjestelmä<x id="CLOSE_LINK"/> edellyttää, että tiettyjä teknisiä tietoja järjestelmästäsi (kuten julkinen IP-osoitteesi) voidaan lähettää toisille käyttäjille, mutta tämä auttaa suuresti vähentämään palvelimen kuormituksen määrää.</target> |
4694 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system | ||
4695 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. | ||
4696 | </target> | ||
4697 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">45</context></context-group> | 4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">45</context></context-group> |
4698 | </trans-unit> | 4402 | </trans-unit> |
4699 | <trans-unit id="34094919610906740" datatype="html"> | 4403 | <trans-unit id="34094919610906740" datatype="html"> |
4700 | <source>Help share videos being played</source> | 4404 | <source>Help share videos being played</source> |
4701 | <target state="new">Help share videos being played</target> | 4405 | <target state="translated">Auta jakamaan toistossa olevia videoita</target> |
4702 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">42</context></context-group> | 4406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">42</context></context-group> |
4703 | </trans-unit> | 4407 | </trans-unit> |
4704 | <trans-unit id="6236140336967052987" datatype="html"> | 4408 | <trans-unit id="6236140336967052987" datatype="html"> |
4705 | <source>When on a video page, directly start playing the video.</source> | 4409 | <source>When on a video page, directly start playing the video.</source> |
4706 | <target state="new">When on a video page, directly start playing the video.</target> | 4410 | <target state="translated">Aloita videon toistaminen automaattisesti kun siirytään videosivulle.</target> |
4707 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">56</context></context-group> | 4411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">56</context></context-group> |
4708 | </trans-unit> | 4412 | </trans-unit> |
4709 | <trans-unit id="9135112681389493865" datatype="html"> | 4413 | <trans-unit id="9135112681389493865" datatype="html"> |
4710 | <source>Automatically play videos</source> | 4414 | <source>Automatically play videos</source> |
4711 | <target state="new">Automatically play videos</target> | 4415 | <target state="translated">Toista videoita automaattisesti</target> |
4712 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">53</context></context-group> | 4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">53</context></context-group> |
4713 | </trans-unit> | 4417 | </trans-unit> |
4714 | <trans-unit id="575474399125992547" datatype="html"> | 4418 | <trans-unit id="575474399125992547" datatype="html"> |
4715 | <source>When a video ends, follow up with the next suggested video.</source> | 4419 | <source>When a video ends, follow up with the next suggested video.</source> |
4716 | <target state="new">When a video ends, follow up with the next suggested video.</target> | 4420 | <target state="translated">Aloita seuraavan videon toistaminen automaattisesti kun katseltavana oleva video loppuu.</target> |
4717 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">67</context></context-group> | 4421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">67</context></context-group> |
4718 | </trans-unit> | 4422 | </trans-unit> |
4719 | <trans-unit id="2701970773087072815" datatype="html"> | 4423 | <trans-unit id="2701970773087072815" datatype="html"> |
4720 | <source>Automatically start playing the next video</source> | 4424 | <source>Automatically start playing the next video</source> |
4721 | <target state="new">Automatically start playing the next video</target> | 4425 | <target state="translated">Aloita seuraavan videon toistaminen automaattisesti</target> |
4722 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">64</context></context-group> | 4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">64</context></context-group> |
4723 | </trans-unit> | 4427 | </trans-unit> |
4724 | <trans-unit id="5983800192187691457" datatype="html"> | 4428 | <trans-unit id="5983800192187691457" datatype="html"> |
@@ -4732,23 +4436,23 @@ The link will expire within 1 hour.</target> | |||
4732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> | 4436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> |
4733 | </trans-unit> | 4437 | </trans-unit> |
4734 | <trans-unit id="4423835119021329687" datatype="html"> | 4438 | <trans-unit id="4423835119021329687" datatype="html"> |
4735 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> | 4439 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> |
4736 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </target> | 4440 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </target> |
4737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> | 4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> |
4738 | </trans-unit> | 4442 | </trans-unit> |
4739 | <trans-unit id="7030031694783481217" datatype="html"> | 4443 | <trans-unit id="7030031694783481217" datatype="html"> |
4740 | <source>This instance is dedicated to sensitive or NSFW content</source> | 4444 | <source>This instance is dedicated to sensitive or NSFW content</source> |
4741 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> | 4445 | <target state="translated">Tämä instanssi on omistettu arkaluonteiselle tai NSFW sisällölle</target> |
4742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> | 4446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> |
4743 | </trans-unit> | 4447 | </trans-unit> |
4744 | <trans-unit id="4620493570088713907" datatype="html"> | 4448 | <trans-unit id="4620493570088713907" datatype="html"> |
4745 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> | 4449 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> |
4746 | <target state="new"> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> | 4450 | <target state="new"> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> |
4747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> | 4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> |
4748 | </trans-unit> | 4452 | </trans-unit> |
4749 | <trans-unit id="7497677457560701935"> | 4453 | <trans-unit id="7497677457560701935"> |
4750 | <source>Policy on videos containing sensitive content</source> | 4454 | <source>Policy on videos containing sensitive content</source> |
4751 | <target>Herkän sisällön sisältävien videoiden käytäntö</target> | 4455 | <target>Arkaluonteista sisältöä sisältävien videoiden käytäntö</target> |
4752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">106</context></context-group> | 4456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">106</context></context-group> |
4753 | </trans-unit> | 4457 | </trans-unit> |
4754 | <trans-unit id="8930852890861583005"> | 4458 | <trans-unit id="8930852890861583005"> |
@@ -4862,8 +4566,8 @@ The link will expire within 1 hour.</target> | |||
4862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> | 4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> |
4863 | </trans-unit> | 4567 | </trans-unit> |
4864 | <trans-unit id="2107098695989136934" datatype="html"> | 4568 | <trans-unit id="2107098695989136934" datatype="html"> |
4865 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4569 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4866 | <target state="new"> Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4570 | <target state="new"> Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> | 4571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> |
4868 | </trans-unit> | 4572 | </trans-unit> |
4869 | <trans-unit id="6855462350544488601"> | 4573 | <trans-unit id="6855462350544488601"> |
@@ -4919,7 +4623,7 @@ The link will expire within 1 hour.</target> | |||
4919 | </trans-unit> | 4623 | </trans-unit> |
4920 | <trans-unit id="2138469194506455231" datatype="html"> | 4624 | <trans-unit id="2138469194506455231" datatype="html"> |
4921 | <source>âš ï¸ You don't have any external auth plugin enabled.</source> | 4625 | <source>âš ï¸ You don't have any external auth plugin enabled.</source> |
4922 | <target state="new">âš ï¸ You don't have any external auth plugin enabled.</target> | 4626 | <target state="translated">âš ï¸ Ei ole yhtään ulkoista tunnistautumislisäosaa käytössä.</target> |
4923 | <context-group purpose="location"> | 4627 | <context-group purpose="location"> |
4924 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4628 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4925 | <context context-type="linenumber">80</context> | 4629 | <context context-type="linenumber">80</context> |
@@ -4927,7 +4631,7 @@ The link will expire within 1 hour.</target> | |||
4927 | </trans-unit> | 4631 | </trans-unit> |
4928 | <trans-unit id="6608125149782412086" datatype="html"> | 4632 | <trans-unit id="6608125149782412086" datatype="html"> |
4929 | <source>âš ï¸ You have multiple external auth plugins enabled.</source> | 4633 | <source>âš ï¸ You have multiple external auth plugins enabled.</source> |
4930 | <target state="new">âš ï¸ You have multiple external auth plugins enabled.</target> | 4634 | <target state="translated">âš ï¸ Useampia ulkoisia tunnistautumislisäosia käytössä.</target> |
4931 | <context-group purpose="location"> | 4635 | <context-group purpose="location"> |
4932 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4636 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4933 | <context context-type="linenumber">81</context> | 4637 | <context context-type="linenumber">81</context> |
@@ -4969,8 +4673,8 @@ The link will expire within 1 hour.</target> | |||
4969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> | 4673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> |
4970 | </trans-unit> | 4674 | </trans-unit> |
4971 | <trans-unit id="2669509104300979449" datatype="html"> | 4675 | <trans-unit id="2669509104300979449" datatype="html"> |
4972 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> | 4676 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> |
4973 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </target> | 4677 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </target> |
4974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> | 4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> |
4975 | </trans-unit> | 4679 | </trans-unit> |
4976 | <trans-unit id="4497115134891299867"> | 4680 | <trans-unit id="4497115134891299867"> |
@@ -4985,7 +4689,7 @@ The link will expire within 1 hour.</target> | |||
4985 | </trans-unit> | 4689 | </trans-unit> |
4986 | <trans-unit id="8497774075394617130" datatype="html"> | 4690 | <trans-unit id="8497774075394617130" datatype="html"> |
4987 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> | 4691 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> |
4988 | <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | 4692 | <target state="translated">{VAR_PLURAL, plural, =1 {käyttäjä} other {käyttäjää}}</target> |
4989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">184</context></context-group> | 4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">184</context></context-group> |
4990 | </trans-unit> | 4694 | </trans-unit> |
4991 | <trans-unit id="5620049714977547431" datatype="html"> | 4695 | <trans-unit id="5620049714977547431" datatype="html"> |
@@ -5000,7 +4704,7 @@ The link will expire within 1 hour.</target> | |||
5000 | </trans-unit> | 4704 | </trans-unit> |
5001 | <trans-unit id="8342879272354516454" datatype="html"> | 4705 | <trans-unit id="8342879272354516454" datatype="html"> |
5002 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source> | 4706 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source> |
5003 | <target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> | 4707 | <target state="translated">{VAR_PLURAL, plural, =1 {vuoden vanha} other {vuotta vanha}}</target> |
5004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">200</context></context-group> | 4708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">200</context></context-group> |
5005 | </trans-unit> | 4709 | </trans-unit> |
5006 | <trans-unit id="7456307533995141215" datatype="html"> | 4710 | <trans-unit id="7456307533995141215" datatype="html"> |
@@ -5018,7 +4722,7 @@ The link will expire within 1 hour.</target> | |||
5018 | </trans-unit> | 4722 | </trans-unit> |
5019 | <trans-unit id="3807699453257291879" datatype="html"> | 4723 | <trans-unit id="3807699453257291879" datatype="html"> |
5020 | <source>Comments</source> | 4724 | <source>Comments</source> |
5021 | <target state="new">Comments</target> | 4725 | <target state="translated">Kommentit</target> |
5022 | <context-group purpose="location"> | 4726 | <context-group purpose="location"> |
5023 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 4727 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
5024 | <context context-type="linenumber">57</context> | 4728 | <context context-type="linenumber">57</context> |
@@ -5026,19 +4730,19 @@ The link will expire within 1 hour.</target> | |||
5026 | </trans-unit> | 4730 | </trans-unit> |
5027 | <trans-unit id="8147229944654164397" datatype="html"> | 4731 | <trans-unit id="8147229944654164397" datatype="html"> |
5028 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> | 4732 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> |
5029 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> | 4733 | <target state="translated">{VAR_PLURAL, plural, =1 {video} other {videota} }</target> |
5030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | 4734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> |
5031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | 4735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> |
5032 | </trans-unit> | 4736 | </trans-unit> |
5033 | <trans-unit id="2068564237394270744" datatype="html"> | 4737 | <trans-unit id="2068564237394270744" datatype="html"> |
5034 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> | 4738 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> |
5035 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> | 4739 | <target state="translated">{VAR_PLURAL, plural, =1 {kanava} other {kanavaa} }</target> |
5036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | 4740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> |
5037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | 4741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> |
5038 | </trans-unit> | 4742 | </trans-unit> |
5039 | <trans-unit id="407487463718398437" datatype="html"> | 4743 | <trans-unit id="407487463718398437" datatype="html"> |
5040 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> | 4744 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> |
5041 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> | 4745 | <target state="translated">{VAR_PLURAL, plural, =1 {tilaaja} other {tilaajaa} }</target> |
5042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | 4746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> |
5043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | 4747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> |
5044 | </trans-unit> | 4748 | </trans-unit> |
@@ -5056,7 +4760,7 @@ The link will expire within 1 hour.</target> | |||
5056 | </trans-unit> | 4760 | </trans-unit> |
5057 | <trans-unit id="3094586852616580737" datatype="html"> | 4761 | <trans-unit id="3094586852616580737" datatype="html"> |
5058 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> | 4762 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> |
5059 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> | 4763 | <target state="translated">{VAR_PLURAL, plural, =1 {kommentti} other {kommenttia} }</target> |
5060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | 4764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> |
5061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | 4765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> |
5062 | </trans-unit> | 4766 | </trans-unit> |
@@ -5099,7 +4803,7 @@ The link will expire within 1 hour.</target> | |||
5099 | </trans-unit> | 4803 | </trans-unit> |
5100 | <trans-unit id="6801844913630625451" datatype="html"> | 4804 | <trans-unit id="6801844913630625451" datatype="html"> |
5101 | <source>âš ï¸ We don't recommend to enable this feature if you don't trust your users</source> | 4805 | <source>âš ï¸ We don't recommend to enable this feature if you don't trust your users</source> |
5102 | <target state="new">âš ï¸ We don't recommend to enable this feature if you don't trust your users</target> | 4806 | <target state="translated">âš ï¸ Emme suosittele ominaisuuden käyttöönottoa mikäli et luota käyttäjiisi</target> |
5103 | <context-group purpose="location"> | 4807 | <context-group purpose="location"> |
5104 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4808 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
5105 | <context context-type="linenumber">283</context> | 4809 | <context context-type="linenumber">283</context> |
@@ -5122,7 +4826,7 @@ The link will expire within 1 hour.</target> | |||
5122 | </trans-unit> | 4826 | </trans-unit> |
5123 | <trans-unit id="3840267063842708224" datatype="html"> | 4827 | <trans-unit id="3840267063842708224" datatype="html"> |
5124 | <source>{VAR_PLURAL, plural, =1 {channel} other {channels}}</source> | 4828 | <source>{VAR_PLURAL, plural, =1 {channel} other {channels}}</source> |
5125 | <target state="new">{VAR_PLURAL, plural, =1 {channel} other {channels}}</target> | 4829 | <target state="translated">{VAR_PLURAL, plural, =1 {kanava} other {kanavaa}}</target> |
5126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">327</context></context-group> | 4830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">327</context></context-group> |
5127 | </trans-unit> | 4831 | </trans-unit> |
5128 | <trans-unit id="3428986951244800347" datatype="html"> | 4832 | <trans-unit id="3428986951244800347" datatype="html"> |
@@ -5161,8 +4865,8 @@ The link will expire within 1 hour.</target> | |||
5161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> | 4865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> |
5162 | </trans-unit> | 4866 | </trans-unit> |
5163 | <trans-unit id="1886227550697837417" datatype="html"> | 4867 | <trans-unit id="1886227550697837417" datatype="html"> |
5164 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4868 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
5165 | <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4869 | <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
5166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> | 4870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> |
5167 | </trans-unit> | 4871 | </trans-unit> |
5168 | <trans-unit id="2331464426553277323" datatype="html"> | 4872 | <trans-unit id="2331464426553277323" datatype="html"> |
@@ -5196,8 +4900,8 @@ The link will expire within 1 hour.</target> | |||
5196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> | 4900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> |
5197 | </trans-unit> | 4901 | </trans-unit> |
5198 | <trans-unit id="252719899360434356" datatype="html"> | 4902 | <trans-unit id="252719899360434356" datatype="html"> |
5199 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> | 4903 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> |
5200 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </target> | 4904 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </target> |
5201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> | 4905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> |
5202 | </trans-unit> | 4906 | </trans-unit> |
5203 | <trans-unit id="9119248927271669654" datatype="html"> | 4907 | <trans-unit id="9119248927271669654" datatype="html"> |
@@ -5233,8 +4937,8 @@ The link will expire within 1 hour.</target> | |||
5233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> | 4937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> |
5234 | </trans-unit> | 4938 | </trans-unit> |
5235 | <trans-unit id="9076632742417302918" datatype="html"> | 4939 | <trans-unit id="9076632742417302918" datatype="html"> |
5236 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> | 4940 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> |
5237 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </target> | 4941 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </target> |
5238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> | 4942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> |
5239 | </trans-unit> | 4943 | </trans-unit> |
5240 | <trans-unit id="3946988229617310200" datatype="html"> | 4944 | <trans-unit id="3946988229617310200" datatype="html"> |
@@ -5283,8 +4987,8 @@ The link will expire within 1 hour.</target> | |||
5283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> | 4987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> |
5284 | </trans-unit> | 4988 | </trans-unit> |
5285 | <trans-unit id="2076338542820061819" datatype="html"> | 4989 | <trans-unit id="2076338542820061819" datatype="html"> |
5286 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> | 4990 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> |
5287 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </target> | 4991 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </target> |
5288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> | 4992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> |
5289 | </trans-unit> | 4993 | </trans-unit> |
5290 | <trans-unit id="493135676263039396" datatype="html"> | 4994 | <trans-unit id="493135676263039396" datatype="html"> |
@@ -5322,18 +5026,18 @@ The link will expire within 1 hour.</target> | |||
5322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> | 5026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> |
5323 | </trans-unit> | 5027 | </trans-unit> |
5324 | <trans-unit id="4420104899393268652" datatype="html"> | 5028 | <trans-unit id="4420104899393268652" datatype="html"> |
5325 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5029 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
5326 | <target state="new"> Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5030 | <target state="new"> Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
5327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> | 5031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> |
5328 | </trans-unit> | 5032 | </trans-unit> |
5329 | <trans-unit id="7210210728441530221" datatype="html"> | 5033 | <trans-unit id="7210210728441530221" datatype="html"> |
5330 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5034 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
5331 | <target state="new"> Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5035 | <target state="new"> Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
5332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> | 5036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> |
5333 | </trans-unit> | 5037 | </trans-unit> |
5334 | <trans-unit id="6830777508073747241" datatype="html"> | 5038 | <trans-unit id="6830777508073747241" datatype="html"> |
5335 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 5039 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
5336 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 5040 | <target state="translated">{VAR_PLURAL, plural, =1 {live} other {liveä}}</target> |
5337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">46</context></context-group> | 5041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">46</context></context-group> |
5338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">59</context></context-group> | 5042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">59</context></context-group> |
5339 | </trans-unit> | 5043 | </trans-unit> |
@@ -5472,8 +5176,8 @@ The link will expire within 1 hour.</target> | |||
5472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> | 5176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> |
5473 | </trans-unit> | 5177 | </trans-unit> |
5474 | <trans-unit id="7334484418359079994" datatype="html"> | 5178 | <trans-unit id="7334484418359079994" datatype="html"> |
5475 | <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 plain WebTorrent:<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 especially 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> | 5179 | <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 plain WebTorrent:<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 especially 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> |
5476 | <target state="new"><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 plain WebTorrent:<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 especially 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> | 5180 | <target state="new"><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 plain WebTorrent:<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 especially 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> |
5477 | <context-group purpose="location"> | 5181 | <context-group purpose="location"> |
5478 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5182 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5479 | <context context-type="linenumber">99,108</context> | 5183 | <context context-type="linenumber">99,108</context> |
@@ -5585,7 +5289,7 @@ The link will expire within 1 hour.</target> | |||
5585 | </trans-unit> | 5289 | </trans-unit> |
5586 | <trans-unit id="3710881484246327863" datatype="html"> | 5290 | <trans-unit id="3710881484246327863" datatype="html"> |
5587 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | 5291 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> |
5588 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 5292 | <target state="translated">{VAR_PLURAL, plural, =1 {välimuistissa oleva kuva} other {välimuistissa olevia kuvia}}</target> |
5589 | <context-group purpose="location"> | 5293 | <context-group purpose="location"> |
5590 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5294 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
5591 | <context context-type="linenumber">22</context> | 5295 | <context context-type="linenumber">22</context> |
@@ -5636,25 +5340,19 @@ The link will expire within 1 hour.</target> | |||
5636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> | 5340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> |
5637 | </trans-unit> | 5341 | </trans-unit> |
5638 | <trans-unit id="4067880101082150743" datatype="html"> | 5342 | <trans-unit id="4067880101082150743" datatype="html"> |
5639 | <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> | 5343 | <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> |
5640 | <target state="new"> 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> | 5344 | <target state="new"> 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> |
5641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> | 5345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> |
5642 | </trans-unit> | 5346 | </trans-unit> |
5643 | <trans-unit id="5464209657969421100" datatype="html"> | 5347 | <trans-unit id="5464209657969421100" datatype="html"> |
5644 | <source> 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="{{ '{' }}"/> | 5348 | <source>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>"/></source> |
5645 | color: red; | 5349 | <target state="new"> 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=" {{ '{' }"/> |
5646 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | ||
5647 | <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="{{ '{' }}"/> | ||
5648 | color: red; | ||
5649 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | ||
5650 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | ||
5651 | <target state="new"> 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=" {{ '{' }"/> | ||
5652 | color: red; | 5350 | color: red; |
5653 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | 5351 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
5654 | <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=" {{ '{' }"/> | 5352 | <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=" {{ '{' }"/> |
5655 | color: red; | 5353 | color: red; |
5656 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | 5354 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
5657 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | 5355 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
5658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> | 5356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> |
5659 | </trans-unit> | 5357 | </trans-unit> |
5660 | <trans-unit id="283725429207896837" datatype="html"> | 5358 | <trans-unit id="283725429207896837" datatype="html"> |
@@ -5671,8 +5369,8 @@ color: red; | |||
5671 | </context-group> | 5369 | </context-group> |
5672 | </trans-unit> | 5370 | </trans-unit> |
5673 | <trans-unit id="8167543029214637769" datatype="html"> | 5371 | <trans-unit id="8167543029214637769" datatype="html"> |
5674 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> | 5372 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> |
5675 | <target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> | 5373 | <target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> |
5676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> | 5374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> |
5677 | </trans-unit> | 5375 | </trans-unit> |
5678 | <trans-unit id="1445676851449000175"> | 5376 | <trans-unit id="1445676851449000175"> |
@@ -5692,7 +5390,7 @@ color: red; | |||
5692 | </trans-unit> | 5390 | </trans-unit> |
5693 | <trans-unit id="9138757724802460941" datatype="html"> | 5391 | <trans-unit id="9138757724802460941" datatype="html"> |
5694 | <source>INTERFACE</source> | 5392 | <source>INTERFACE</source> |
5695 | <target state="new">INTERFACE</target> | 5393 | <target state="translated">KÄYTTÖLIITTYMÄ</target> |
5696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">25</context></context-group> | 5394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">25</context></context-group> |
5697 | </trans-unit> | 5395 | </trans-unit> |
5698 | <trans-unit id="7789395291034300662" datatype="html"> | 5396 | <trans-unit id="7789395291034300662" datatype="html"> |
@@ -5748,13 +5446,13 @@ color: red; | |||
5748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> | 5446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> |
5749 | </trans-unit> | 5447 | </trans-unit> |
5750 | <trans-unit id="6317170736181476800" datatype="html"> | 5448 | <trans-unit id="6317170736181476800" datatype="html"> |
5751 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> | 5449 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> |
5752 | <target state="new"> Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> | 5450 | <target state="new"> Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> |
5753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> | 5451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> |
5754 | </trans-unit> | 5452 | </trans-unit> |
5755 | <trans-unit id="1405600824334286337" datatype="html"> | 5453 | <trans-unit id="1405600824334286337" datatype="html"> |
5756 | <source>More filters</source> | 5454 | <source>More filters</source> |
5757 | <target state="new">More filters</target> | 5455 | <target state="translated">Lisää suodattimia</target> |
5758 | <context-group purpose="location"> | 5456 | <context-group purpose="location"> |
5759 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5457 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5760 | <context context-type="linenumber">20</context> | 5458 | <context context-type="linenumber">20</context> |
@@ -5762,47 +5460,47 @@ color: red; | |||
5762 | </trans-unit> | 5460 | </trans-unit> |
5763 | <trans-unit id="5797835178123017550" datatype="html"> | 5461 | <trans-unit id="5797835178123017550" datatype="html"> |
5764 | <source>Hide filters</source> | 5462 | <source>Hide filters</source> |
5765 | <target state="new">Hide filters</target> | 5463 | <target state="translated">Piilota suodattimet</target> |
5766 | <context-group purpose="location"> | 5464 | <context-group purpose="location"> |
5767 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5465 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5768 | <context context-type="linenumber">21</context> | 5466 | <context context-type="linenumber">21</context> |
5769 | </context-group> | 5467 | </context-group> |
5770 | </trans-unit> | 5468 | </trans-unit> |
5771 | <trans-unit id="7028708681117573961" datatype="html"> | 5469 | <trans-unit id="7028708681117573961" datatype="html"> |
5772 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5470 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5773 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5471 | <target state="translated">Järjestä <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Viimeksi lisätty"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5774 | <context-group purpose="location"> | 5472 | <context-group purpose="location"> |
5775 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5473 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5776 | <context context-type="linenumber">46</context> | 5474 | <context context-type="linenumber">46</context> |
5777 | </context-group> | 5475 | </context-group> |
5778 | </trans-unit> | 5476 | </trans-unit> |
5779 | <trans-unit id="8190023086228606960" datatype="html"> | 5477 | <trans-unit id="8190023086228606960" datatype="html"> |
5780 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5478 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5781 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5479 | <target state="translated">Järjestä <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Viimeksi katseltu"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5782 | <context-group purpose="location"> | 5480 | <context-group purpose="location"> |
5783 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5481 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5784 | <context context-type="linenumber">48</context> | 5482 | <context context-type="linenumber">48</context> |
5785 | </context-group> | 5483 | </context-group> |
5786 | </trans-unit> | 5484 | </trans-unit> |
5787 | <trans-unit id="3224510615614621760" datatype="html"> | 5485 | <trans-unit id="3224510615614621760" datatype="html"> |
5788 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5486 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5789 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5487 | <target state="translated">Järjestä <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Suosittu"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5790 | <context-group purpose="location"> | 5488 | <context-group purpose="location"> |
5791 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5489 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5792 | <context context-type="linenumber">49</context> | 5490 | <context context-type="linenumber">49</context> |
5793 | </context-group> | 5491 | </context-group> |
5794 | </trans-unit> | 5492 | </trans-unit> |
5795 | <trans-unit id="3082811226222076503" datatype="html"> | 5493 | <trans-unit id="3082811226222076503" datatype="html"> |
5796 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5494 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5797 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5495 | <target state="translated">Järjestä <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Paras"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5798 | <context-group purpose="location"> | 5496 | <context-group purpose="location"> |
5799 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5497 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5800 | <context context-type="linenumber">50</context> | 5498 | <context context-type="linenumber">50</context> |
5801 | </context-group> | 5499 | </context-group> |
5802 | </trans-unit> | 5500 | </trans-unit> |
5803 | <trans-unit id="4322133526902910662" datatype="html"> | 5501 | <trans-unit id="4322133526902910662" datatype="html"> |
5804 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5502 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5805 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5503 | <target state="translated">Järjestä <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Tykkäykset"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5806 | <context-group purpose="location"> | 5504 | <context-group purpose="location"> |
5807 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5505 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5808 | <context context-type="linenumber">51</context> | 5506 | <context context-type="linenumber">51</context> |
@@ -5810,7 +5508,7 @@ color: red; | |||
5810 | </trans-unit> | 5508 | </trans-unit> |
5811 | <trans-unit id="2343321245279384373" datatype="html"> | 5509 | <trans-unit id="2343321245279384373" datatype="html"> |
5812 | <source>Languages:</source> | 5510 | <source>Languages:</source> |
5813 | <target state="new">Languages:</target> | 5511 | <target state="translated">Kielet:</target> |
5814 | <context-group purpose="location"> | 5512 | <context-group purpose="location"> |
5815 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5513 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5816 | <context context-type="linenumber">59</context> | 5514 | <context context-type="linenumber">59</context> |
@@ -5818,7 +5516,7 @@ color: red; | |||
5818 | </trans-unit> | 5516 | </trans-unit> |
5819 | <trans-unit id="5063779773341398537" datatype="html"> | 5517 | <trans-unit id="5063779773341398537" datatype="html"> |
5820 | <source>Sensitive content:</source> | 5518 | <source>Sensitive content:</source> |
5821 | <target state="new">Sensitive content:</target> | 5519 | <target state="translated">Arkaluonteinen sisältö:</target> |
5822 | <context-group purpose="location"> | 5520 | <context-group purpose="location"> |
5823 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5521 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5824 | <context context-type="linenumber">66</context> | 5522 | <context context-type="linenumber">66</context> |
@@ -5826,7 +5524,7 @@ color: red; | |||
5826 | </trans-unit> | 5524 | </trans-unit> |
5827 | <trans-unit id="5723033003381016192" datatype="html"> | 5525 | <trans-unit id="5723033003381016192" datatype="html"> |
5828 | <source>Scope:</source> | 5526 | <source>Scope:</source> |
5829 | <target state="new">Scope:</target> | 5527 | <target state="translated">Laajuus:</target> |
5830 | <context-group purpose="location"> | 5528 | <context-group purpose="location"> |
5831 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5529 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5832 | <context context-type="linenumber">81</context> | 5530 | <context context-type="linenumber">81</context> |
@@ -5834,7 +5532,7 @@ color: red; | |||
5834 | </trans-unit> | 5532 | </trans-unit> |
5835 | <trans-unit id="8481241275509347668" datatype="html"> | 5533 | <trans-unit id="8481241275509347668" datatype="html"> |
5836 | <source>Local videos (this instance)</source> | 5534 | <source>Local videos (this instance)</source> |
5837 | <target state="new">Local videos (this instance)</target> | 5535 | <target state="translated">Paikalliset videot (tämä instanssi)</target> |
5838 | <context-group purpose="location"> | 5536 | <context-group purpose="location"> |
5839 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5537 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5840 | <context context-type="linenumber">85</context> | 5538 | <context context-type="linenumber">85</context> |
@@ -5842,7 +5540,7 @@ color: red; | |||
5842 | </trans-unit> | 5540 | </trans-unit> |
5843 | <trans-unit id="8383401711408398806" datatype="html"> | 5541 | <trans-unit id="8383401711408398806" datatype="html"> |
5844 | <source>Federated videos (this instance + followed instances)</source> | 5542 | <source>Federated videos (this instance + followed instances)</source> |
5845 | <target state="new">Federated videos (this instance + followed instances)</target> | 5543 | <target state="translated">Federoidut videot (tämä ja seuratut instanssit)</target> |
5846 | <context-group purpose="location"> | 5544 | <context-group purpose="location"> |
5847 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5545 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5848 | <context context-type="linenumber">90</context> | 5546 | <context context-type="linenumber">90</context> |
@@ -5850,7 +5548,7 @@ color: red; | |||
5850 | </trans-unit> | 5548 | </trans-unit> |
5851 | <trans-unit id="2736556170366900089" datatype="html"> | 5549 | <trans-unit id="2736556170366900089" datatype="html"> |
5852 | <source>Type:</source> | 5550 | <source>Type:</source> |
5853 | <target state="new">Type:</target> | 5551 | <target state="translated">Tyyppi:</target> |
5854 | <context-group purpose="location"> | 5552 | <context-group purpose="location"> |
5855 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5553 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5856 | <context context-type="linenumber">95</context> | 5554 | <context context-type="linenumber">95</context> |
@@ -5858,7 +5556,7 @@ color: red; | |||
5858 | </trans-unit> | 5556 | </trans-unit> |
5859 | <trans-unit id="1744425032255703211" datatype="html"> | 5557 | <trans-unit id="1744425032255703211" datatype="html"> |
5860 | <source>VOD & Live videos</source> | 5558 | <source>VOD & Live videos</source> |
5861 | <target state="new">VOD & Live videos</target> | 5559 | <target state="translated">VOD ja live-videot</target> |
5862 | <context-group purpose="location"> | 5560 | <context-group purpose="location"> |
5863 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5561 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5864 | <context context-type="linenumber">99</context> | 5562 | <context context-type="linenumber">99</context> |
@@ -5866,7 +5564,7 @@ color: red; | |||
5866 | </trans-unit> | 5564 | </trans-unit> |
5867 | <trans-unit id="1370537846415473089" datatype="html"> | 5565 | <trans-unit id="1370537846415473089" datatype="html"> |
5868 | <source>Categories:</source> | 5566 | <source>Categories:</source> |
5869 | <target state="new">Categories:</target> | 5567 | <target state="translated">Kategoriat:</target> |
5870 | <context-group purpose="location"> | 5568 | <context-group purpose="location"> |
5871 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5569 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5872 | <context context-type="linenumber">114</context> | 5570 | <context context-type="linenumber">114</context> |
@@ -5887,7 +5585,7 @@ color: red; | |||
5887 | </trans-unit> | 5585 | </trans-unit> |
5888 | <trans-unit id="1288210794011686132" datatype="html"> | 5586 | <trans-unit id="1288210794011686132" datatype="html"> |
5889 | <source>Interface settings</source> | 5587 | <source>Interface settings</source> |
5890 | <target state="new">Interface settings</target> | 5588 | <target state="translated">Käyttöliittymäasetukset</target> |
5891 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">22</context></context-group> | 5589 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">22</context></context-group> |
5892 | </trans-unit> | 5590 | </trans-unit> |
5893 | <trans-unit id="6309828574111583895"> | 5591 | <trans-unit id="6309828574111583895"> |
@@ -5914,12 +5612,12 @@ color: red; | |||
5914 | </trans-unit> | 5612 | </trans-unit> |
5915 | <trans-unit id="7377817702119089263"> | 5613 | <trans-unit id="7377817702119089263"> |
5916 | <source>Default policy on videos containing sensitive content</source> | 5614 | <source>Default policy on videos containing sensitive content</source> |
5917 | <target>Oletussäädäntö videoista, jotka sisältävät aikuisille tarkoitettua sisältöä</target> | 5615 | <target>Oletuskäytäntö videoille, jotka sisältävät arkaluonteista sisältöä</target> |
5918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> | 5616 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> |
5919 | </trans-unit> | 5617 | </trans-unit> |
5920 | <trans-unit id="7350483582490037954" datatype="html"> | 5618 | <trans-unit id="7350483582490037954" datatype="html"> |
5921 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> | 5619 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> |
5922 | <target state="new"> With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </target> | 5620 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Piilota<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> tai <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Sumenna pikkukuva<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> vaihtoehdoilla ennen videota pyydetään vahvistusta. </target> |
5923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> | 5621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> |
5924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> | 5622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> |
5925 | </trans-unit> | 5623 | </trans-unit> |
@@ -5947,12 +5645,7 @@ color: red; | |||
5947 | </trans-unit> | 5645 | </trans-unit> |
5948 | <trans-unit id="1530331428384894781"> | 5646 | <trans-unit id="1530331428384894781"> |
5949 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5647 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5950 | <target> | 5648 | <target><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> odottaa sähköpostin hyväksyntää </target> |
5951 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | ||
5952 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> | ||
5953 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> odottaa sähköpostin hyväksyntää | ||
5954 | |||
5955 | </target> | ||
5956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> | 5649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> |
5957 | </trans-unit> | 5650 | </trans-unit> |
5958 | <trans-unit id="264068562357780835"> | 5651 | <trans-unit id="264068562357780835"> |
@@ -6033,12 +5726,7 @@ color: red; | |||
6033 | </trans-unit> | 5726 | </trans-unit> |
6034 | <trans-unit id="3963749584812225989"> | 5727 | <trans-unit id="3963749584812225989"> |
6035 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 5728 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
6036 | <target> | 5729 | <target>Luotiin <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
6037 | Luotiin | ||
6038 | |||
6039 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
6040 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
6041 | </target> | ||
6042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">21</context></context-group> | 5730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">21</context></context-group> |
6043 | </trans-unit> | 5731 | </trans-unit> |
6044 | <trans-unit id="5611592591303869712"> | 5732 | <trans-unit id="5611592591303869712"> |
@@ -6097,7 +5785,7 @@ color: red; | |||
6097 | </trans-unit> | 5785 | </trans-unit> |
6098 | <trans-unit id="5013100494982905528" datatype="html"> | 5786 | <trans-unit id="5013100494982905528" datatype="html"> |
6099 | <source>Banner image of the channel</source> | 5787 | <source>Banner image of the channel</source> |
6100 | <target state="new">Banner image of the channel</target> | 5788 | <target state="translated">Kanavan kansikuva</target> |
6101 | <context-group purpose="location"> | 5789 | <context-group purpose="location"> |
6102 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> | 5790 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> |
6103 | <context context-type="linenumber">13</context> | 5791 | <context context-type="linenumber">13</context> |
@@ -6140,11 +5828,7 @@ color: red; | |||
6140 | </trans-unit> | 5828 | </trans-unit> |
6141 | <trans-unit id="6924803931258995553" datatype="html"> | 5829 | <trans-unit id="6924803931258995553" datatype="html"> |
6142 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> | 5830 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> |
6143 | <target state="new">Showing | 5831 | <target state="needs-translation">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</target> |
6144 | <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to | ||
6145 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | ||
6146 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> imports | ||
6147 | </target> | ||
6148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">10</context></context-group> | 5832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">10</context></context-group> |
6149 | </trans-unit> | 5833 | </trans-unit> |
6150 | <trans-unit id="8173902679178787744" datatype="html"> | 5834 | <trans-unit id="8173902679178787744" datatype="html"> |
@@ -6161,9 +5845,7 @@ color: red; | |||
6161 | </trans-unit> | 5845 | </trans-unit> |
6162 | <trans-unit id="9131836378905533756"> | 5846 | <trans-unit id="9131836378905533756"> |
6163 | <source>Created by <x id="INTERPOLATION"/></source> | 5847 | <source>Created by <x id="INTERPOLATION"/></source> |
6164 | <target>Luonut | 5848 | <target>Luonut <x id="INTERPOLATION"/></target> |
6165 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> | ||
6166 | </target> | ||
6167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">28</context></context-group> | 5849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">28</context></context-group> |
6168 | </trans-unit> | 5850 | </trans-unit> |
6169 | <trans-unit id="228548407872312756" datatype="html"> | 5851 | <trans-unit id="228548407872312756" datatype="html"> |
@@ -6178,7 +5860,7 @@ color: red; | |||
6178 | </trans-unit> | 5860 | </trans-unit> |
6179 | <trans-unit id="989169929300254768" datatype="html"> | 5861 | <trans-unit id="989169929300254768" datatype="html"> |
6180 | <source>Delete from history</source> | 5862 | <source>Delete from history</source> |
6181 | <target state="new">Delete from history</target> | 5863 | <target state="translated">Poista historiasta</target> |
6182 | <context-group purpose="location"> | 5864 | <context-group purpose="location"> |
6183 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 5865 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
6184 | <context context-type="linenumber">36</context> | 5866 | <context context-type="linenumber">36</context> |
@@ -6197,8 +5879,8 @@ color: red; | |||
6197 | </context-group> | 5879 | </context-group> |
6198 | </trans-unit> | 5880 | </trans-unit> |
6199 | <trans-unit id="5511928240200239994" datatype="html"> | 5881 | <trans-unit id="5511928240200239994" datatype="html"> |
6200 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | 5882 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> |
6201 | <target state="new">Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 5883 | <target state="new">Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
6202 | <context-group purpose="location"> | 5884 | <context-group purpose="location"> |
6203 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5885 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
6204 | <context context-type="linenumber">5</context> | 5886 | <context context-type="linenumber">5</context> |
@@ -6214,12 +5896,7 @@ color: red; | |||
6214 | </trans-unit> | 5896 | </trans-unit> |
6215 | <trans-unit id="2726946550255780479"> | 5897 | <trans-unit id="2726946550255780479"> |
6216 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> | 5898 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> |
6217 | <target> | 5899 | <target><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Ilmoitusasetukset </target> |
6218 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> | ||
6219 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> | ||
6220 | Ilmoitusasetukset | ||
6221 | |||
6222 | </target> | ||
6223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">4</context></context-group> | 5900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">4</context></context-group> |
6224 | </trans-unit> | 5901 | </trans-unit> |
6225 | <trans-unit id="2317673285989169654" datatype="html"> | 5902 | <trans-unit id="2317673285989169654" datatype="html"> |
@@ -6300,12 +5977,7 @@ color: red; | |||
6300 | </trans-unit> | 5977 | </trans-unit> |
6301 | <trans-unit id="8901774330683812267" datatype="html"> | 5978 | <trans-unit id="8901774330683812267" datatype="html"> |
6302 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> | 5979 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> |
6303 | <target state="new"> | 5980 | <target state="needs-translation">See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </target> |
6304 | See the | ||
6305 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | ||
6306 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. | ||
6307 | |||
6308 | </target> | ||
6309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">31</context></context-group> | 5981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">31</context></context-group> |
6310 | </trans-unit> | 5982 | </trans-unit> |
6311 | <trans-unit id="5904811038805050477" datatype="html"> | 5983 | <trans-unit id="5904811038805050477" datatype="html"> |
@@ -6315,25 +5987,22 @@ color: red; | |||
6315 | </trans-unit> | 5987 | </trans-unit> |
6316 | <trans-unit id="3461985498881453026" datatype="html"> | 5988 | <trans-unit id="3461985498881453026" datatype="html"> |
6317 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> | 5989 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> |
6318 | <target state="new">If you need help to use PeerTube, you can have a look at the | 5990 | <target state="needs-translation">If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </target> |
6319 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | ||
6320 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | ||
6321 | </target> | ||
6322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> | 5991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> |
6323 | </trans-unit> | 5992 | </trans-unit> |
6324 | <trans-unit id="8844610145426272276" datatype="html"> | 5993 | <trans-unit id="8844610145426272276" datatype="html"> |
6325 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> | 5994 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> |
6326 | <target state="new"> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> | 5995 | <target state="new"> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> |
6327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> | 5996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> |
6328 | </trans-unit> | 5997 | </trans-unit> |
6329 | <trans-unit id="3030338154442300172" datatype="html"> | 5998 | <trans-unit id="3030338154442300172" datatype="html"> |
6330 | <source>Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}" xid="498463490165953744"/> </source> | 5999 | <source>Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}" xid="498463490165953744"/> </source> |
6331 | <target state="new"> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </target> | 6000 | <target state="translated">Luotiin <x id="ICU" xid="498463490165953744" equiv-text="{pagination.totalItems, plural, =1 {1 soittolista} other {{{ pagination.totalItems }} soittolistaa}}"/> </target> |
6332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group> | 6001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group> |
6333 | </trans-unit> | 6002 | </trans-unit> |
6334 | <trans-unit id="3505845886770923767" datatype="html"> | 6003 | <trans-unit id="3505845886770923767" datatype="html"> |
6335 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source> | 6004 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source> |
6336 | <target state="new">{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</target> | 6005 | <target state="translated">{VAR_PLURAL, plural, =1 {1 soittolista} other {<x id="INTERPOLATION"/> soittolistaa}}</target> |
6337 | <context-group purpose="location"> | 6006 | <context-group purpose="location"> |
6338 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 6007 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
6339 | <context context-type="linenumber">3</context> | 6008 | <context context-type="linenumber">3</context> |
@@ -6380,7 +6049,7 @@ color: red; | |||
6380 | </trans-unit> | 6049 | </trans-unit> |
6381 | <trans-unit id="4027779086550572813"> | 6050 | <trans-unit id="4027779086550572813"> |
6382 | <source>Send verification email</source> | 6051 | <source>Send verification email</source> |
6383 | <target>Lähetä vahvistus-sähköpostiviesti.</target> | 6052 | <target>Lähetä vahvistussähköpostiviesti</target> |
6384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">17</context></context-group> | 6053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">17</context></context-group> |
6385 | </trans-unit> | 6054 | </trans-unit> |
6386 | <trans-unit id="8610022770999239699"> | 6055 | <trans-unit id="8610022770999239699"> |
@@ -6458,9 +6127,7 @@ color: red; | |||
6458 | </trans-unit> | 6127 | </trans-unit> |
6459 | <trans-unit id="403587185492002456" datatype="html"> | 6128 | <trans-unit id="403587185492002456" datatype="html"> |
6460 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6129 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6461 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { | 6130 | <target state="translated">{VAR_PLURAL, plural, =1 {1 tilaaja} other {<x id="INTERPOLATION"/> tilaajaa}}</target> |
6462 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } | ||
6463 | </target> | ||
6464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group> | 6131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group> |
6465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> | 6132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> |
6466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group> | 6133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group> |
@@ -6469,7 +6136,7 @@ color: red; | |||
6469 | </trans-unit> | 6136 | </trans-unit> |
6470 | <trans-unit id="3068011377000255023" datatype="html"> | 6137 | <trans-unit id="3068011377000255023" datatype="html"> |
6471 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6138 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6472 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 6139 | <target state="translated">{VAR_PLURAL, plural, =1 {1 video} other {<x id="INTERPOLATION"/> videota}}</target> |
6473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> | 6140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> |
6474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group> | 6141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group> |
6475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group> | 6142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group> |
@@ -6477,7 +6144,7 @@ color: red; | |||
6477 | </trans-unit> | 6144 | </trans-unit> |
6478 | <trans-unit id="8856905278208146821" datatype="html"> | 6145 | <trans-unit id="8856905278208146821" datatype="html"> |
6479 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> | 6146 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> |
6480 | <target state="new"> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </target> | 6147 | <target state="translated"><x id="ICU" xid="8553183884518584864" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 video} other {{{ getTotalVideosOf(videoChannel) }} videota}}"/> </target> |
6481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group> | 6148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group> |
6482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | 6149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> |
6483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group> | 6150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group> |
@@ -6493,19 +6160,13 @@ color: red; | |||
6493 | </trans-unit> | 6160 | </trans-unit> |
6494 | <trans-unit id="7766488542631150871" datatype="html"> | 6161 | <trans-unit id="7766488542631150871" datatype="html"> |
6495 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 6162 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
6496 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 6163 | <target state="translated">{VAR_PLURAL, plural, =0 {Ei videoita} =1 {1 video} other {<x id="INTERPOLATION"/> videoita}}</target> |
6497 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } | ||
6498 | </target> | ||
6499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | 6164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> |
6500 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> | 6165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> |
6501 | </trans-unit> | 6166 | </trans-unit> |
6502 | <trans-unit id="7152797255397280410" datatype="html"> | 6167 | <trans-unit id="7152797255397280410" datatype="html"> |
6503 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 6168 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
6504 | It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another | 6169 | <target state="needs-translation">Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> |
6505 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | ||
6506 | <target state="new">Do you really want to delete <x id="PH"/>? | ||
6507 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | ||
6508 | channel with the same name (<x id="PH_2"/>)!</target> | ||
6509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> | 6170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> |
6510 | </trans-unit> | 6171 | </trans-unit> |
6511 | <trans-unit id="4433306639366959484" datatype="html"> | 6172 | <trans-unit id="4433306639366959484" datatype="html"> |
@@ -6536,8 +6197,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group> | 6197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group> |
6537 | </trans-unit> | 6198 | </trans-unit> |
6538 | <trans-unit id="2705478076887104088" datatype="html"> | 6199 | <trans-unit id="2705478076887104088" datatype="html"> |
6539 | <source>SHOW THIS CHANNEL ></source> | 6200 | <source>SHOW THIS CHANNEL ></source> |
6540 | <target state="new">SHOW THIS CHANNEL ></target> | 6201 | <target state="new">SHOW THIS CHANNEL ></target> |
6541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group> | 6202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group> |
6542 | </trans-unit> | 6203 | </trans-unit> |
6543 | <trans-unit id="4088311569349098646"> | 6204 | <trans-unit id="4088311569349098646"> |
@@ -6604,9 +6265,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6604 | </trans-unit> | 6265 | </trans-unit> |
6605 | <trans-unit id="3174354408404578867" datatype="html"> | 6266 | <trans-unit id="3174354408404578867" datatype="html"> |
6606 | <source>About <x id="INTERPOLATION"/></source> | 6267 | <source>About <x id="INTERPOLATION"/></source> |
6607 | <target state="new">About | 6268 | <target state="needs-translation">About <x id="INTERPOLATION"/></target> |
6608 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> | ||
6609 | </target> | ||
6610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group> | 6269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group> |
6611 | </trans-unit> | 6270 | </trans-unit> |
6612 | <trans-unit id="8525213662266893834" datatype="html"> | 6271 | <trans-unit id="8525213662266893834" datatype="html"> |
@@ -6623,7 +6282,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6623 | </trans-unit> | 6282 | </trans-unit> |
6624 | <trans-unit id="19872047295276660" datatype="html"> | 6283 | <trans-unit id="19872047295276660" datatype="html"> |
6625 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6284 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
6626 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> | 6285 | <target state="translated">Tämä instanssi on omistettu arkaluonteiselle/NSFW sisällölle.</target> |
6627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">19</context></context-group> | 6286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">19</context></context-group> |
6628 | </trans-unit> | 6287 | </trans-unit> |
6629 | <trans-unit id="1970848297295860531" datatype="html"> | 6288 | <trans-unit id="1970848297295860531" datatype="html"> |
@@ -6713,12 +6372,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6713 | </trans-unit> | 6372 | </trans-unit> |
6714 | <trans-unit id="7257048945916143687" datatype="html"> | 6373 | <trans-unit id="7257048945916143687" datatype="html"> |
6715 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> | 6374 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> |
6716 | <target state="new"> | 6375 | <target state="needs-translation">For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </target> |
6717 | For more information, please visit | ||
6718 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org | ||
6719 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | ||
6720 | |||
6721 | </target> | ||
6722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">18</context></context-group> | 6376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">18</context></context-group> |
6723 | </trans-unit> | 6377 | </trans-unit> |
6724 | <trans-unit id="8205344394429673413" datatype="html"> | 6378 | <trans-unit id="8205344394429673413" datatype="html"> |
@@ -6832,8 +6486,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> | 6486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> |
6833 | </trans-unit> | 6487 | </trans-unit> |
6834 | <trans-unit id="1120376809358109718" datatype="html"> | 6488 | <trans-unit id="1120376809358109718" datatype="html"> |
6835 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 6489 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
6836 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | 6490 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> |
6837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> | 6491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> |
6838 | </trans-unit> | 6492 | </trans-unit> |
6839 | <trans-unit id="7812408733559506009" datatype="html"> | 6493 | <trans-unit id="7812408733559506009" datatype="html"> |
@@ -6952,8 +6606,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> | 6606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> |
6953 | </trans-unit> | 6607 | </trans-unit> |
6954 | <trans-unit id="4807161697338135032" datatype="html"> | 6608 | <trans-unit id="4807161697338135032" datatype="html"> |
6955 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | 6609 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
6956 | <target state="new">Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 6610 | <target state="new">Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
6957 | <context-group purpose="location"> | 6611 | <context-group purpose="location"> |
6958 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6612 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6959 | <context context-type="linenumber">3</context> | 6613 | <context context-type="linenumber">3</context> |
@@ -7016,7 +6670,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7016 | </trans-unit> | 6670 | </trans-unit> |
7017 | <trans-unit id="4665274432258993920" datatype="html"> | 6671 | <trans-unit id="4665274432258993920" datatype="html"> |
7018 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> | 6672 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> |
7019 | <target state="new"/> | 6673 | <target state="needs-translation">A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </target> |
7020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">4</context></context-group> | 6674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">4</context></context-group> |
7021 | </trans-unit> | 6675 | </trans-unit> |
7022 | <trans-unit id="2254156021453506528" datatype="html"> | 6676 | <trans-unit id="2254156021453506528" datatype="html"> |
@@ -7060,8 +6714,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> | 6714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> |
7061 | </trans-unit> | 6715 | </trans-unit> |
7062 | <trans-unit id="7440807341905682986" datatype="html"> | 6716 | <trans-unit id="7440807341905682986" datatype="html"> |
7063 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> | 6717 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> |
7064 | <target state="new"> I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </target> | 6718 | <target state="new"> I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </target> |
7065 | <context-group purpose="location"> | 6719 | <context-group purpose="location"> |
7066 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 6720 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
7067 | <context context-type="linenumber">5,10</context> | 6721 | <context context-type="linenumber">5,10</context> |
@@ -7076,7 +6730,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7076 | </trans-unit> | 6730 | </trans-unit> |
7077 | <trans-unit id="2770947245861951784" datatype="html"> | 6731 | <trans-unit id="2770947245861951784" datatype="html"> |
7078 | <source>Signup is not enabled on this instance.</source> | 6732 | <source>Signup is not enabled on this instance.</source> |
7079 | <target state="new">Signup is not enabled on this instance.</target> | 6733 | <target state="translated">Rekisteröityminen ei ole käytössä tällä instanssilla.</target> |
7080 | <context-group purpose="location"> | 6734 | <context-group purpose="location"> |
7081 | <context context-type="sourcefile">src/app/+signup/+register/register.component.html</context> | 6735 | <context context-type="sourcefile">src/app/+signup/+register/register.component.html</context> |
7082 | <context context-type="linenumber">4</context> | 6736 | <context context-type="linenumber">4</context> |
@@ -7099,7 +6753,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7099 | </trans-unit> | 6753 | </trans-unit> |
7100 | <trans-unit id="2072135752262464360"> | 6754 | <trans-unit id="2072135752262464360"> |
7101 | <source>You already sent this form recently</source> | 6755 | <source>You already sent this form recently</source> |
7102 | <target>Lähetit jo tämän lomakkeen vasta.</target> | 6756 | <target>Olet äskettäin lähettänyt tämän lomakkeen</target> |
7103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">94</context></context-group> | 6757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">94</context></context-group> |
7104 | </trans-unit> | 6758 | </trans-unit> |
7105 | <trans-unit id="1097932116708163073" datatype="html"> | 6759 | <trans-unit id="1097932116708163073" datatype="html"> |
@@ -7140,12 +6794,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7140 | </trans-unit> | 6794 | </trans-unit> |
7141 | <trans-unit id="5254305728396198887" datatype="html"> | 6795 | <trans-unit id="5254305728396198887" datatype="html"> |
7142 | <source>Sensitive content</source> | 6796 | <source>Sensitive content</source> |
7143 | <target state="new">Sensitive content</target> | 6797 | <target state="translated">Arkaluonteinen sisältö</target> |
7144 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">116</context></context-group> | 6798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">116</context></context-group> |
7145 | </trans-unit> | 6799 | </trans-unit> |
7146 | <trans-unit id="5590086849807274701" datatype="html"> | 6800 | <trans-unit id="5590086849807274701" datatype="html"> |
7147 | <source>Scope</source> | 6801 | <source>Scope</source> |
7148 | <target state="new">Scope</target> | 6802 | <target state="translated">Laajuus</target> |
7149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">123</context></context-group> | 6803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">123</context></context-group> |
7150 | </trans-unit> | 6804 | </trans-unit> |
7151 | <trans-unit id="5019568087038659501" datatype="html"> | 6805 | <trans-unit id="5019568087038659501" datatype="html"> |
@@ -7160,7 +6814,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7160 | </trans-unit> | 6814 | </trans-unit> |
7161 | <trans-unit id="1902100407096396858" datatype="html"> | 6815 | <trans-unit id="1902100407096396858" datatype="html"> |
7162 | <source>Categories</source> | 6816 | <source>Categories</source> |
7163 | <target state="new">Categories</target> | 6817 | <target state="translated">Kategoriat</target> |
7164 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">142</context></context-group> | 6818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">142</context></context-group> |
7165 | </trans-unit> | 6819 | </trans-unit> |
7166 | <trans-unit id="3599150758014724057" datatype="html"> | 6820 | <trans-unit id="3599150758014724057" datatype="html"> |
@@ -7175,7 +6829,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7175 | </trans-unit> | 6829 | </trans-unit> |
7176 | <trans-unit id="7054829409324166420" datatype="html"> | 6830 | <trans-unit id="7054829409324166420" datatype="html"> |
7177 | <source>hidden</source> | 6831 | <source>hidden</source> |
7178 | <target state="new">hidden</target> | 6832 | <target state="translated">piilotettu</target> |
7179 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">237</context></context-group> | 6833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">237</context></context-group> |
7180 | </trans-unit> | 6834 | </trans-unit> |
7181 | <trans-unit id="5766954855630346873" datatype="html"> | 6835 | <trans-unit id="5766954855630346873" datatype="html"> |
@@ -7202,7 +6856,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7202 | </trans-unit> | 6856 | </trans-unit> |
7203 | <trans-unit id="2614607010577950577" datatype="html"> | 6857 | <trans-unit id="2614607010577950577" datatype="html"> |
7204 | <source>Overview</source> | 6858 | <source>Overview</source> |
7205 | <target state="new">Overview</target> | 6859 | <target state="translated">Yleiskatsaus</target> |
7206 | <context-group purpose="location"> | 6860 | <context-group purpose="location"> |
7207 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 6861 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
7208 | <context context-type="linenumber">35</context> | 6862 | <context context-type="linenumber">35</context> |
@@ -7237,13 +6891,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> | 6891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> |
7238 | </trans-unit> | 6892 | </trans-unit> |
7239 | <trans-unit id="8011855989482474311" datatype="html"> | 6893 | <trans-unit id="8011855989482474311" datatype="html"> |
7240 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 6894 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
7241 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> | 6895 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> |
7242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> | 6896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> |
7243 | </trans-unit> | 6897 | </trans-unit> |
7244 | <trans-unit id="7756250490108954499" datatype="html"> | 6898 | <trans-unit id="7756250490108954499" datatype="html"> |
7245 | <source>144p</source> | 6899 | <source>144p</source> |
7246 | <target state="new">144p</target> | 6900 | <target state="translated">144p</target> |
7247 | <context-group purpose="location"> | 6901 | <context-group purpose="location"> |
7248 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context> | 6902 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context> |
7249 | <context context-type="linenumber">22</context> | 6903 | <context context-type="linenumber">22</context> |
@@ -7677,9 +7331,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7677 | </trans-unit> | 7331 | </trans-unit> |
7678 | <trans-unit id="4245720728052819482" datatype="html"> | 7332 | <trans-unit id="4245720728052819482" datatype="html"> |
7679 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 7333 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
7680 | <target state="new">Do you really want to unfollow | 7334 | <target state="translated">Haluatko varmasti lopettaa <x id="PH"/> seuraamisen?</target> |
7681 | <x id="PH"/>? | ||
7682 | </target> | ||
7683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">46</context></context-group> | 7335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">46</context></context-group> |
7684 | </trans-unit> | 7336 | </trans-unit> |
7685 | <trans-unit id="9160510009013134726"> | 7337 | <trans-unit id="9160510009013134726"> |
@@ -7689,9 +7341,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7689 | </trans-unit> | 7341 | </trans-unit> |
7690 | <trans-unit id="3935234189109112926"> | 7342 | <trans-unit id="3935234189109112926"> |
7691 | <source>You are not following <x id="PH"/> anymore.</source> | 7343 | <source>You are not following <x id="PH"/> anymore.</source> |
7692 | <target>Et seuraa | 7344 | <target>Et seuraa <x id="PH"/> enää.</target> |
7693 | <x id="PH"/> enään. | ||
7694 | </target> | ||
7695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">54</context></context-group> | 7345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">54</context></context-group> |
7696 | </trans-unit> | 7346 | </trans-unit> |
7697 | <trans-unit id="397182597341363053" datatype="html"> | 7347 | <trans-unit id="397182597341363053" datatype="html"> |
@@ -7714,10 +7364,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7714 | </trans-unit> | 7364 | </trans-unit> |
7715 | <trans-unit id="135214224090612796" datatype="html"> | 7365 | <trans-unit id="135214224090612796" datatype="html"> |
7716 | <source>Redundancy for <x id="PH"/> is <x id="PH_1"/></source> | 7366 | <source>Redundancy for <x id="PH"/> is <x id="PH_1"/></source> |
7717 | <target state="new">Redundancy for | 7367 | <target state="needs-translation">Redundancy for <x id="PH"/> is <x id="PH_1"/></target> |
7718 | <x id="PH"/> is | ||
7719 | <x id="PH_1"/> | ||
7720 | </target> | ||
7721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> | 7368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> |
7722 | </trans-unit> | 7369 | </trans-unit> |
7723 | <trans-unit id="5875705095657098468" datatype="html"> | 7370 | <trans-unit id="5875705095657098468" datatype="html"> |
@@ -7737,23 +7384,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7737 | </trans-unit> | 7384 | </trans-unit> |
7738 | <trans-unit id="8639315630141911544" datatype="html"> | 7385 | <trans-unit id="8639315630141911544" datatype="html"> |
7739 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7386 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
7740 | <target state="new">Account | 7387 | <target state="needs-translation">Account <x id="PH"/> unmuted by your instance.</target> |
7741 | <x id="PH"/> unmuted by your instance. | ||
7742 | </target> | ||
7743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">43</context></context-group> | 7388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">43</context></context-group> |
7744 | </trans-unit> | 7389 | </trans-unit> |
7745 | <trans-unit id="3371601176452094961" datatype="html"> | 7390 | <trans-unit id="3371601176452094961" datatype="html"> |
7746 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 7391 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
7747 | <target state="new">Instance | 7392 | <target state="needs-translation">Instance <x id="PH"/> unmuted by your instance.</target> |
7748 | <x id="PH"/> unmuted by your instance. | ||
7749 | </target> | ||
7750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group> | 7393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group> |
7751 | </trans-unit> | 7394 | </trans-unit> |
7752 | <trans-unit id="3096398988891996621" datatype="html"> | 7395 | <trans-unit id="3096398988891996621" datatype="html"> |
7753 | <source>Instance <x id="PH"/> muted by your instance.</source> | 7396 | <source>Instance <x id="PH"/> muted by your instance.</source> |
7754 | <target state="new">Instance | 7397 | <target state="needs-translation">Instance <x id="PH"/> muted by your instance.</target> |
7755 | <x id="PH"/> muted by your instance. | ||
7756 | </target> | ||
7757 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">69</context></context-group> | 7398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">69</context></context-group> |
7758 | </trans-unit> | 7399 | </trans-unit> |
7759 | <trans-unit id="2393853062458645999"> | 7400 | <trans-unit id="2393853062458645999"> |
@@ -7778,7 +7419,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7778 | </trans-unit> | 7419 | </trans-unit> |
7779 | <trans-unit id="8440128775129354214" datatype="html"> | 7420 | <trans-unit id="8440128775129354214" datatype="html"> |
7780 | <source>Privacy</source> | 7421 | <source>Privacy</source> |
7781 | <target state="new">Privacy</target> | 7422 | <target state="translated">Näkyvyys</target> |
7782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> | 7423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> |
7783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> | 7424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> |
7784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">112</context></context-group> | 7425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">112</context></context-group> |
@@ -7791,7 +7432,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7791 | </trans-unit> | 7432 | </trans-unit> |
7792 | <trans-unit id="8768506950499277937" datatype="html"> | 7433 | <trans-unit id="8768506950499277937" datatype="html"> |
7793 | <source>Copyright</source> | 7434 | <source>Copyright</source> |
7794 | <target state="new">Copyright</target> | 7435 | <target state="translated">Copyright</target> |
7795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group> | 7436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group> |
7796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">146</context></context-group> | 7437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">146</context></context-group> |
7797 | </trans-unit> | 7438 | </trans-unit> |
@@ -7824,12 +7465,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7824 | </trans-unit> | 7465 | </trans-unit> |
7825 | <trans-unit id="1679841953757186358"> | 7466 | <trans-unit id="1679841953757186358"> |
7826 | <source>Mark as accepted</source> | 7467 | <source>Mark as accepted</source> |
7827 | <target>Merkitse hyvätyksi.</target> | 7468 | <target>Hyväksy</target> |
7828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group> | 7469 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group> |
7829 | </trans-unit> | 7470 | </trans-unit> |
7830 | <trans-unit id="7993358694073742566"> | 7471 | <trans-unit id="7993358694073742566"> |
7831 | <source>Mark as rejected</source> | 7472 | <source>Mark as rejected</source> |
7832 | <target>Merkitse ei hyvätyksi.</target> | 7473 | <target>Hylkää</target> |
7833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group> | 7474 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group> |
7834 | </trans-unit> | 7475 | </trans-unit> |
7835 | <trans-unit id="4175703770051343108" datatype="html"> | 7476 | <trans-unit id="4175703770051343108" datatype="html"> |
@@ -7900,9 +7541,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7900 | </trans-unit> | 7541 | </trans-unit> |
7901 | <trans-unit id="6906423861055262169" datatype="html"> | 7542 | <trans-unit id="6906423861055262169" datatype="html"> |
7902 | <source>Video <x id="PH"/> switched to manual block.</source> | 7543 | <source>Video <x id="PH"/> switched to manual block.</source> |
7903 | <target state="new">Video | 7544 | <target state="needs-translation">Video <x id="PH"/> switched to manual block.</target> |
7904 | <x id="PH"/> switched to manual block. | ||
7905 | </target> | ||
7906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group> | 7545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group> |
7907 | </trans-unit> | 7546 | </trans-unit> |
7908 | <trans-unit id="7293356040886494773" datatype="html"> | 7547 | <trans-unit id="7293356040886494773" datatype="html"> |
@@ -7920,9 +7559,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7920 | </trans-unit> | 7559 | </trans-unit> |
7921 | <trans-unit id="4922469417589203720" datatype="html"> | 7560 | <trans-unit id="4922469417589203720" datatype="html"> |
7922 | <source>Video <x id="PH"/> unblocked.</source> | 7561 | <source>Video <x id="PH"/> unblocked.</source> |
7923 | <target state="new">Video | 7562 | <target state="needs-translation">Video <x id="PH"/> unblocked.</target> |
7924 | <x id="PH"/> unblocked. | ||
7925 | </target> | ||
7926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group> | 7563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group> |
7927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group> | 7564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group> |
7928 | </trans-unit> | 7565 | </trans-unit> |
@@ -7957,9 +7594,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7957 | </trans-unit> | 7594 | </trans-unit> |
7958 | <trans-unit id="9107383323119159110"> | 7595 | <trans-unit id="9107383323119159110"> |
7959 | <source>Do you really want to uninstall <x id="PH"/>?</source> | 7596 | <source>Do you really want to uninstall <x id="PH"/>?</source> |
7960 | <target>Haluatko varmasti poistaa lisäosan | 7597 | <target>Haluatko varmasti poistaa lisäosan <x id="PH"/>?</target> |
7961 | <x id="PH"/>? | ||
7962 | </target> | ||
7963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">111</context></context-group> | 7598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">111</context></context-group> |
7964 | </trans-unit> | 7599 | </trans-unit> |
7965 | <trans-unit id="4474510732215437338" datatype="html"> | 7600 | <trans-unit id="4474510732215437338" datatype="html"> |
@@ -8021,9 +7656,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8021 | </trans-unit> | 7656 | </trans-unit> |
8022 | <trans-unit id="2994182849694226596"> | 7657 | <trans-unit id="2994182849694226596"> |
8023 | <source>Install <x id="PH"/>?</source> | 7658 | <source>Install <x id="PH"/>?</source> |
8024 | <target>Asennetaanko | 7659 | <target>Asennetaanko <x id="PH"/>?</target> |
8025 | <x id="PH"/>? | ||
8026 | </target> | ||
8027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">130</context></context-group> | 7660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">130</context></context-group> |
8028 | </trans-unit> | 7661 | </trans-unit> |
8029 | <trans-unit id="6703720397495603345"> | 7662 | <trans-unit id="6703720397495603345"> |
@@ -8057,8 +7690,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8057 | </context-group> | 7690 | </context-group> |
8058 | </trans-unit> | 7691 | </trans-unit> |
8059 | <trans-unit id="7223931053738621590" datatype="html"> | 7692 | <trans-unit id="7223931053738621590" datatype="html"> |
8060 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | 7693 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> |
8061 | <target state="new">PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 7694 | <target state="new">PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
8062 | <context-group purpose="location"> | 7695 | <context-group purpose="location"> |
8063 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7696 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
8064 | <context context-type="linenumber">4</context> | 7697 | <context context-type="linenumber">4</context> |
@@ -8105,16 +7738,16 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8105 | </context-group> | 7738 | </context-group> |
8106 | </trans-unit> | 7739 | </trans-unit> |
8107 | <trans-unit id="1285026053775066761" datatype="html"> | 7740 | <trans-unit id="1285026053775066761" datatype="html"> |
8108 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> | 7741 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> |
8109 | <target state="new">Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</target> | 7742 | <target state="new">Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</target> |
8110 | <context-group purpose="location"> | 7743 | <context-group purpose="location"> |
8111 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7744 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
8112 | <context context-type="linenumber">15</context> | 7745 | <context context-type="linenumber">15</context> |
8113 | </context-group> | 7746 | </context-group> |
8114 | </trans-unit> | 7747 | </trans-unit> |
8115 | <trans-unit id="7014275542536964627" datatype="html"> | 7748 | <trans-unit id="7014275542536964627" datatype="html"> |
8116 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> | 7749 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> |
8117 | <target state="new">If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> | 7750 | <target state="new">If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> |
8118 | <context-group purpose="location"> | 7751 | <context-group purpose="location"> |
8119 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7752 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
8120 | <context context-type="linenumber">16,17</context> | 7753 | <context context-type="linenumber">16,17</context> |
@@ -8173,8 +7806,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group> | 7806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group> |
8174 | </trans-unit> | 7807 | </trans-unit> |
8175 | <trans-unit id="4767765747214995164" datatype="html"> | 7808 | <trans-unit id="4767765747214995164" datatype="html"> |
8176 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | 7809 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> |
8177 | <target state="new">Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> | 7810 | <target state="new">Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> |
8178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group> | 7811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group> |
8179 | </trans-unit> | 7812 | </trans-unit> |
8180 | <trans-unit id="6759205696902713848"> | 7813 | <trans-unit id="6759205696902713848"> |
@@ -8200,9 +7833,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8200 | </trans-unit> | 7833 | </trans-unit> |
8201 | <trans-unit id="1886888801485703107"> | 7834 | <trans-unit id="1886888801485703107"> |
8202 | <source>User <x id="PH"/> created.</source> | 7835 | <source>User <x id="PH"/> created.</source> |
8203 | <target>Käyttäjä | 7836 | <target>Käyttäjä <x id="PH"/> luotu.</target> |
8204 | <x id="PH"/> luotiin. | ||
8205 | </target> | ||
8206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">78</context></context-group> | 7837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">78</context></context-group> |
8207 | </trans-unit> | 7838 | </trans-unit> |
8208 | <trans-unit id="8286337167859377104" datatype="html"> | 7839 | <trans-unit id="8286337167859377104" datatype="html"> |
@@ -8223,9 +7854,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8223 | </trans-unit> | 7854 | </trans-unit> |
8224 | <trans-unit id="5974506725502681113"> | 7855 | <trans-unit id="5974506725502681113"> |
8225 | <source>Password changed for user <x id="PH"/>.</source> | 7856 | <source>Password changed for user <x id="PH"/>.</source> |
8226 | <target>Salasana vaihdettu käyttäjälle | 7857 | <target>Salasana vaihdettu käyttäjälle <x id="PH"/>.</target> |
8227 | <x id="PH"/>. | ||
8228 | </target> | ||
8229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">41</context></context-group> | 7858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">41</context></context-group> |
8230 | </trans-unit> | 7859 | </trans-unit> |
8231 | <trans-unit id="149953821752893163"> | 7860 | <trans-unit id="149953821752893163"> |
@@ -8235,9 +7864,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8235 | </trans-unit> | 7864 | </trans-unit> |
8236 | <trans-unit id="780323526182667308" datatype="html"> | 7865 | <trans-unit id="780323526182667308" datatype="html"> |
8237 | <source>User <x id="PH"/> updated.</source> | 7866 | <source>User <x id="PH"/> updated.</source> |
8238 | <target state="new">User | 7867 | <target state="needs-translation">User <x id="PH"/> updated.</target> |
8239 | <x id="PH"/> updated. | ||
8240 | </target> | ||
8241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">94</context></context-group> | 7868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">94</context></context-group> |
8242 | </trans-unit> | 7869 | </trans-unit> |
8243 | <trans-unit id="1349763489797682899"> | 7870 | <trans-unit id="1349763489797682899"> |
@@ -8247,9 +7874,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8247 | </trans-unit> | 7874 | </trans-unit> |
8248 | <trans-unit id="8819563010322372715" datatype="html"> | 7875 | <trans-unit id="8819563010322372715" datatype="html"> |
8249 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7876 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
8250 | <target state="new">An email asking for password reset has been sent to | 7877 | <target state="translated">Sähköpostia salasananpalautuksesta on lähetetty osoitteeseen <x id="PH"/>.</target> |
8251 | <x id="PH"/>. | ||
8252 | </target> | ||
8253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">120</context></context-group> | 7878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">120</context></context-group> |
8254 | </trans-unit> | 7879 | </trans-unit> |
8255 | <trans-unit id="7483807629538115183" datatype="html"> | 7880 | <trans-unit id="7483807629538115183" datatype="html"> |
@@ -8274,7 +7899,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8274 | </trans-unit> | 7899 | </trans-unit> |
8275 | <trans-unit id="1878553503929537171" datatype="html"> | 7900 | <trans-unit id="1878553503929537171" datatype="html"> |
8276 | <source>VOD</source> | 7901 | <source>VOD</source> |
8277 | <target state="new">VOD</target> | 7902 | <target state="translated">VOD</target> |
8278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">49</context></context-group> | 7903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">49</context></context-group> |
8279 | </trans-unit> | 7904 | </trans-unit> |
8280 | <trans-unit id="8610504659433544583" datatype="html"> | 7905 | <trans-unit id="8610504659433544583" datatype="html"> |
@@ -8376,9 +8001,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8376 | </trans-unit> | 8001 | </trans-unit> |
8377 | <trans-unit id="4884272193574287483"> | 8002 | <trans-unit id="4884272193574287483"> |
8378 | <source>Do you really want to unban <x id="PH"/> users?</source> | 8003 | <source>Do you really want to unban <x id="PH"/> users?</source> |
8379 | <target>Haluatko varmasti poistaa estot | 8004 | <target>Haluatko varmasti poistaa estot <x id="PH"/> käyttäjältä?</target> |
8380 | <x id="PH"/> käyttäjältä? | ||
8381 | </target> | ||
8382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | 8005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> |
8383 | </trans-unit> | 8006 | </trans-unit> |
8384 | <trans-unit id="8712248120167780385"> | 8007 | <trans-unit id="8712248120167780385"> |
@@ -8396,7 +8019,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8396 | </trans-unit> | 8019 | </trans-unit> |
8397 | <trans-unit id="4086135983283545219"> | 8020 | <trans-unit id="4086135983283545219"> |
8398 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 8021 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
8399 | <target>Jos poistat kyseiset käyttäjät, et voi luoda uusia käyttäjiä samoilla käyttäjänimillä.</target> | 8022 | <target>Jos poistat kyseiset käyttäjät, et voi luoda uusia käyttäjiä samoilla käyttäjänimillä!</target> |
8400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group> | 8023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group> |
8401 | </trans-unit> | 8024 | </trans-unit> |
8402 | <trans-unit id="7166936623843420016"> | 8025 | <trans-unit id="7166936623843420016"> |
@@ -8415,28 +8038,24 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8415 | </trans-unit> | 8038 | </trans-unit> |
8416 | <trans-unit id="7390990800435887351" datatype="html"> | 8039 | <trans-unit id="7390990800435887351" datatype="html"> |
8417 | <source>Account <x id="PH"/> unmuted.</source> | 8040 | <source>Account <x id="PH"/> unmuted.</source> |
8418 | <target state="new">Account | 8041 | <target state="needs-translation">Account <x id="PH"/> unmuted.</target> |
8419 | <x id="PH"/> unmuted. | ||
8420 | </target> | ||
8421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group> | 8042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group> |
8422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group> | 8043 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group> |
8423 | </trans-unit> | 8044 | </trans-unit> |
8424 | <trans-unit id="7246356397085094208" datatype="html"> | 8045 | <trans-unit id="7246356397085094208" datatype="html"> |
8425 | <source>Instance <x id="PH"/> unmuted.</source> | 8046 | <source>Instance <x id="PH"/> unmuted.</source> |
8426 | <target state="new">Instance | 8047 | <target state="needs-translation">Instance <x id="PH"/> unmuted.</target> |
8427 | <x id="PH"/> unmuted. | ||
8428 | </target> | ||
8429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> | 8048 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> |
8430 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group> | 8049 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group> |
8431 | </trans-unit> | 8050 | </trans-unit> |
8432 | <trans-unit id="5551551295632950210"> | 8051 | <trans-unit id="5551551295632950210"> |
8433 | <source>Videos history is enabled</source> | 8052 | <source>Videos history is enabled</source> |
8434 | <target>Videohistoria asetettu päälle.</target> | 8053 | <target>Videohistoria käytössä</target> |
8435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">96</context></context-group> | 8054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">96</context></context-group> |
8436 | </trans-unit> | 8055 | </trans-unit> |
8437 | <trans-unit id="9136227503281311926"> | 8056 | <trans-unit id="9136227503281311926"> |
8438 | <source>Videos history is disabled</source> | 8057 | <source>Videos history is disabled</source> |
8439 | <target>Videohistoria poistettu päältä.</target> | 8058 | <target>Videohistoria poissa käytöstä</target> |
8440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">97</context></context-group> | 8059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">97</context></context-group> |
8441 | </trans-unit> | 8060 | </trans-unit> |
8442 | <trans-unit id="8966726118414892732"> | 8061 | <trans-unit id="8966726118414892732"> |
@@ -8466,8 +8085,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> | 8085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> |
8467 | </trans-unit> | 8086 | </trans-unit> |
8468 | <trans-unit id="778524577866863576" datatype="html"> | 8087 | <trans-unit id="778524577866863576" datatype="html"> |
8469 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> | 8088 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> |
8470 | <target state="new"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </target> | 8089 | <target state="translated"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Tyhjää koko historia </target> |
8471 | <context-group purpose="location"> | 8090 | <context-group purpose="location"> |
8472 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 8091 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
8473 | <context context-type="linenumber">17,19</context> | 8092 | <context context-type="linenumber">17,19</context> |
@@ -8489,8 +8108,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | 8108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> |
8490 | </trans-unit> | 8109 | </trans-unit> |
8491 | <trans-unit id="8553059323353586765" datatype="html"> | 8110 | <trans-unit id="8553059323353586765" datatype="html"> |
8492 | <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>"/>. It is never shown to the public. </source> | 8111 | <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>"/>. It is never shown to the public. </source> |
8493 | <target state="new"> 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>"/>. It is never shown to the public. | 8112 | <target state="new"> 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>"/>. It is never shown to the public. |
8494 | </target> | 8113 | </target> |
8495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> | 8114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> |
8496 | </trans-unit> | 8115 | </trans-unit> |
@@ -8518,7 +8137,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8518 | </trans-unit> | 8137 | </trans-unit> |
8519 | <trans-unit id="577064441120663273" datatype="html"> | 8138 | <trans-unit id="577064441120663273" datatype="html"> |
8520 | <source>Are you sure you want to delete your account?</source> | 8139 | <source>Are you sure you want to delete your account?</source> |
8521 | <target state="new">Are you sure you want to delete your account?</target> | 8140 | <target state="translated">Haluatko varmasti poistaa tilisi?</target> |
8522 | <context-group purpose="location"> | 8141 | <context-group purpose="location"> |
8523 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8142 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8524 | <context context-type="linenumber">22</context> | 8143 | <context context-type="linenumber">22</context> |
@@ -8573,7 +8192,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8573 | </trans-unit> | 8192 | </trans-unit> |
8574 | <trans-unit id="5618790697446401830" datatype="html"> | 8193 | <trans-unit id="5618790697446401830" datatype="html"> |
8575 | <source>An automatically blocked video is awaiting review</source> | 8194 | <source>An automatically blocked video is awaiting review</source> |
8576 | <target state="new">An automatically blocked video is awaiting review</target> | 8195 | <target state="translated">Automaattisesti estetty video odottaa tarkistusta</target> |
8577 | <context-group purpose="location"> | 8196 | <context-group purpose="location"> |
8578 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8197 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8579 | <context context-type="linenumber">35</context> | 8198 | <context context-type="linenumber">35</context> |
@@ -8655,7 +8274,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8655 | </trans-unit> | 8274 | </trans-unit> |
8656 | <trans-unit id="1852164487280647902" datatype="html"> | 8275 | <trans-unit id="1852164487280647902" datatype="html"> |
8657 | <source>Your videos</source> | 8276 | <source>Your videos</source> |
8658 | <target state="new">Your videos</target> | 8277 | <target state="translated">Videosi</target> |
8659 | <context-group purpose="location"> | 8278 | <context-group purpose="location"> |
8660 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8279 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8661 | <context context-type="linenumber">60</context> | 8280 | <context context-type="linenumber">60</context> |
@@ -8714,14 +8333,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8714 | </trans-unit> | 8333 | </trans-unit> |
8715 | <trans-unit id="3326446048041727269" datatype="html"> | 8334 | <trans-unit id="3326446048041727269" datatype="html"> |
8716 | <source>Display/Video settings updated.</source> | 8335 | <source>Display/Video settings updated.</source> |
8717 | <target state="new">Display/Video settings updated.</target> | 8336 | <target state="translated">Näyttö/video asetukset päivitetty.</target> |
8718 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">130</context></context-group> | 8337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">130</context></context-group> |
8719 | </trans-unit> | 8338 | </trans-unit> |
8720 | <trans-unit id="1137937154872046253"> | 8339 | <trans-unit id="1137937154872046253"> |
8721 | <source>Video channel <x id="PH"/> created.</source> | 8340 | <source>Video channel <x id="PH"/> created.</source> |
8722 | <target>Videokanava | 8341 | <target>Videokanava <x id="PH"/> luotu.</target> |
8723 | <x id="PH"/> luotiin. | ||
8724 | </target> | ||
8725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> | 8342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> |
8726 | </trans-unit> | 8343 | </trans-unit> |
8727 | <trans-unit id="8723777130353305761"> | 8344 | <trans-unit id="8723777130353305761"> |
@@ -8731,9 +8348,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8731 | </trans-unit> | 8348 | </trans-unit> |
8732 | <trans-unit id="7589345916094713536"> | 8349 | <trans-unit id="7589345916094713536"> |
8733 | <source>Video channel <x id="PH"/> updated.</source> | 8350 | <source>Video channel <x id="PH"/> updated.</source> |
8734 | <target>Videokanava | 8351 | <target>Videokanava <x id="PH"/> päivitetty.</target> |
8735 | <x id="PH"/> päivitetty. | ||
8736 | </target> | ||
8737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">97</context></context-group> | 8352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">97</context></context-group> |
8738 | </trans-unit> | 8353 | </trans-unit> |
8739 | <trans-unit id="8407755843502300957" datatype="html"> | 8354 | <trans-unit id="8407755843502300957" datatype="html"> |
@@ -8753,9 +8368,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8753 | </trans-unit> | 8368 | </trans-unit> |
8754 | <trans-unit id="624066830180032195" datatype="html"> | 8369 | <trans-unit id="624066830180032195" datatype="html"> |
8755 | <source>Video channel <x id="PH"/> deleted.</source> | 8370 | <source>Video channel <x id="PH"/> deleted.</source> |
8756 | <target state="new">Video channel | 8371 | <target state="needs-translation">Video channel <x id="PH"/> deleted.</target> |
8757 | <x id="PH"/> deleted. | ||
8758 | </target> | ||
8759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">60</context></context-group> | 8372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">60</context></context-group> |
8760 | </trans-unit> | 8373 | </trans-unit> |
8761 | <trans-unit id="6450826648284332649" datatype="html"> | 8374 | <trans-unit id="6450826648284332649" datatype="html"> |
@@ -8847,7 +8460,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8847 | </trans-unit> | 8460 | </trans-unit> |
8848 | <trans-unit id="1636934520301910285" datatype="html"> | 8461 | <trans-unit id="1636934520301910285" datatype="html"> |
8849 | <source>Reset password</source> | 8462 | <source>Reset password</source> |
8850 | <target state="new">Reset password</target> | 8463 | <target state="translated">Palauta salasana</target> |
8851 | <context-group purpose="location"> | 8464 | <context-group purpose="location"> |
8852 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> | 8465 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> |
8853 | <context context-type="linenumber">11</context> | 8466 | <context context-type="linenumber">11</context> |
@@ -8863,9 +8476,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8863 | </trans-unit> | 8476 | </trans-unit> |
8864 | <trans-unit id="5032453707232754344"> | 8477 | <trans-unit id="5032453707232754344"> |
8865 | <source>Playlist <x id="PH"/> created.</source> | 8478 | <source>Playlist <x id="PH"/> created.</source> |
8866 | <target>Luotiin soittolista | 8479 | <target>Soittolista <x id="PH"/> luotu.</target> |
8867 | <x id="PH"/>. | ||
8868 | </target> | ||
8869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">77</context></context-group> | 8480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">77</context></context-group> |
8870 | </trans-unit> | 8481 | </trans-unit> |
8871 | <trans-unit id="5674286808255988565" datatype="html"> | 8482 | <trans-unit id="5674286808255988565" datatype="html"> |
@@ -8907,9 +8518,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8907 | </trans-unit> | 8518 | </trans-unit> |
8908 | <trans-unit id="1431617394009162547" datatype="html"> | 8519 | <trans-unit id="1431617394009162547" datatype="html"> |
8909 | <source>Playlist <x id="PH"/> updated.</source> | 8520 | <source>Playlist <x id="PH"/> updated.</source> |
8910 | <target state="new">Playlist | 8521 | <target state="needs-translation">Playlist <x id="PH"/> updated.</target> |
8911 | <x id="PH"/> updated. | ||
8912 | </target> | ||
8913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">100</context></context-group> | 8522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">100</context></context-group> |
8914 | </trans-unit> | 8523 | </trans-unit> |
8915 | <trans-unit id="4844578664427956129" datatype="html"> | 8524 | <trans-unit id="4844578664427956129" datatype="html"> |
@@ -8920,9 +8529,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8920 | </trans-unit> | 8529 | </trans-unit> |
8921 | <trans-unit id="3380608219513805292" datatype="html"> | 8530 | <trans-unit id="3380608219513805292" datatype="html"> |
8922 | <source>Playlist <x id="PH"/> deleted.</source> | 8531 | <source>Playlist <x id="PH"/> deleted.</source> |
8923 | <target state="new">Playlist | 8532 | <target state="translated">Soittolista <x id="PH"/> poistettu.</target> |
8924 | <x id="PH"/> deleted. | ||
8925 | </target> | ||
8926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">135</context></context-group> | 8533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">135</context></context-group> |
8927 | </trans-unit> | 8534 | </trans-unit> |
8928 | <trans-unit id="3058024914967508975"> | 8535 | <trans-unit id="3058024914967508975"> |
@@ -8935,9 +8542,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8935 | </trans-unit> | 8542 | </trans-unit> |
8936 | <trans-unit id="8197117721861453263" datatype="html"> | 8543 | <trans-unit id="8197117721861453263" datatype="html"> |
8937 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8544 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
8938 | <target state="new">Do you really want to delete | 8545 | <target state="translated">Haluatko varmasti poistaa <x id="PH"/> videota?</target> |
8939 | <x id="PH"/> videos? | ||
8940 | </target> | ||
8941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">150</context></context-group> | 8546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">150</context></context-group> |
8942 | </trans-unit> | 8547 | </trans-unit> |
8943 | <trans-unit id="2728855911908920537"> | 8548 | <trans-unit id="2728855911908920537"> |
@@ -8957,9 +8562,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8957 | </trans-unit> | 8562 | </trans-unit> |
8958 | <trans-unit id="2027805873922338635" datatype="html"> | 8563 | <trans-unit id="2027805873922338635" datatype="html"> |
8959 | <source>Do you really want to delete <x id="PH" equiv-text="videoPlaylist.displayName"/>?</source> | 8564 | <source>Do you really want to delete <x id="PH" equiv-text="videoPlaylist.displayName"/>?</source> |
8960 | <target state="new">Do you really want to delete | 8565 | <target state="translated">Haluatko varmasti poistaa <x id="PH" equiv-text="videoPlaylist.displayName"/>?</target> |
8961 | <x id="PH"/>? | ||
8962 | </target> | ||
8963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> | 8566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> |
8964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group> | 8567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group> |
8965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group> | 8568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group> |
@@ -8967,9 +8570,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8967 | </trans-unit> | 8570 | </trans-unit> |
8968 | <trans-unit id="2767660806989176400" datatype="html"> | 8571 | <trans-unit id="2767660806989176400" datatype="html"> |
8969 | <source>Video <x id="PH"/> deleted.</source> | 8572 | <source>Video <x id="PH"/> deleted.</source> |
8970 | <target state="new">Video | 8573 | <target state="translated">Video <x id="PH"/> poistettu.</target> |
8971 | <x id="PH"/> deleted. | ||
8972 | </target> | ||
8973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group> | 8574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group> |
8974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group> | 8575 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group> |
8975 | </trans-unit> | 8576 | </trans-unit> |
@@ -8992,7 +8593,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8992 | </trans-unit> | 8593 | </trans-unit> |
8993 | <trans-unit id="7699622144571229146" datatype="html"> | 8594 | <trans-unit id="7699622144571229146" datatype="html"> |
8994 | <source>Sort by</source> | 8595 | <source>Sort by</source> |
8995 | <target state="new">Sort by</target> | 8596 | <target state="translated">Järjestä</target> |
8996 | <context-group purpose="location"> | 8597 | <context-group purpose="location"> |
8997 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8598 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
8998 | <context context-type="linenumber">26</context> | 8599 | <context context-type="linenumber">26</context> |
@@ -9085,16 +8686,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9085 | </trans-unit> | 8686 | </trans-unit> |
9086 | <trans-unit id="2847376451647729886"> | 8687 | <trans-unit id="2847376451647729886"> |
9087 | <source>You are now logged in as <x id="PH"/>!</source> | 8688 | <source>You are now logged in as <x id="PH"/>!</source> |
9088 | <target>Olet nytten kirjautunut käyttäjälle | 8689 | <target>Olet kirjautunut käyttäjälle <x id="PH"/>!</target> |
9089 | <x id="PH"/>! | ||
9090 | </target> | ||
9091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">145</context></context-group> | 8690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">145</context></context-group> |
9092 | </trans-unit> | 8691 | </trans-unit> |
9093 | <trans-unit id="2687679787442328897" datatype="html"> | 8692 | <trans-unit id="2687679787442328897" datatype="html"> |
9094 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 8693 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
9095 | <target state="new">An email with verification link will be sent to | 8694 | <target state="translated">Vahvistuslinkki lähetetään sähköpostitse osoitteeseen <x id="PH"/>.</target> |
9096 | <x id="PH"/>. | ||
9097 | </target> | ||
9098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">40</context></context-group> | 8695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">40</context></context-group> |
9099 | </trans-unit> | 8696 | </trans-unit> |
9100 | <trans-unit id="4180693983967989981" datatype="html"> | 8697 | <trans-unit id="4180693983967989981" datatype="html"> |
@@ -9156,7 +8753,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9156 | </trans-unit> | 8753 | </trans-unit> |
9157 | <trans-unit id="2502254344085150809" datatype="html"> | 8754 | <trans-unit id="2502254344085150809" datatype="html"> |
9158 | <source>ADD INTRO</source> | 8755 | <source>ADD INTRO</source> |
9159 | <target state="new">ADD INTRO</target> | 8756 | <target state="translated">LISÄÄ INTRO</target> |
9160 | <context-group purpose="location"> | 8757 | <context-group purpose="location"> |
9161 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8758 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
9162 | <context context-type="linenumber">24</context> | 8759 | <context context-type="linenumber">24</context> |
@@ -9204,7 +8801,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9204 | </trans-unit> | 8801 | </trans-unit> |
9205 | <trans-unit id="3463158361655332380" datatype="html"> | 8802 | <trans-unit id="3463158361655332380" datatype="html"> |
9206 | <source>ADD WATERMARK</source> | 8803 | <source>ADD WATERMARK</source> |
9207 | <target state="new">ADD WATERMARK</target> | 8804 | <target state="translated">LISÄÄ VESILEIMA</target> |
9208 | <context-group purpose="location"> | 8805 | <context-group purpose="location"> |
9209 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8806 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
9210 | <context context-type="linenumber">52</context> | 8807 | <context context-type="linenumber">52</context> |
@@ -9212,7 +8809,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9212 | </trans-unit> | 8809 | </trans-unit> |
9213 | <trans-unit id="4472450670859114703" datatype="html"> | 8810 | <trans-unit id="4472450670859114703" datatype="html"> |
9214 | <source>Add a watermark image to the video.</source> | 8811 | <source>Add a watermark image to the video.</source> |
9215 | <target state="new">Add a watermark image to the video.</target> | 8812 | <target state="translated">Lisää vesileimakuva videoon.</target> |
9216 | <context-group purpose="location"> | 8813 | <context-group purpose="location"> |
9217 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8814 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
9218 | <context context-type="linenumber">54</context> | 8815 | <context context-type="linenumber">54</context> |
@@ -9220,7 +8817,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9220 | </trans-unit> | 8817 | </trans-unit> |
9221 | <trans-unit id="155510305759087510" datatype="html"> | 8818 | <trans-unit id="155510305759087510" datatype="html"> |
9222 | <source>Select watermark image file</source> | 8819 | <source>Select watermark image file</source> |
9223 | <target state="new">Select watermark image file</target> | 8820 | <target state="translated">Valitse kuvatiedosto vesileimaksi</target> |
9224 | <context-group purpose="location"> | 8821 | <context-group purpose="location"> |
9225 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8822 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
9226 | <context context-type="linenumber">58</context> | 8823 | <context context-type="linenumber">58</context> |
@@ -9236,7 +8833,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9236 | </trans-unit> | 8833 | </trans-unit> |
9237 | <trans-unit id="1514792472513458403" datatype="html"> | 8834 | <trans-unit id="1514792472513458403" datatype="html"> |
9238 | <source>Video before edition</source> | 8835 | <source>Video before edition</source> |
9239 | <target state="new">Video before edition</target> | 8836 | <target state="translated">Video ennen muokkausta</target> |
9240 | <context-group purpose="location"> | 8837 | <context-group purpose="location"> |
9241 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8838 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
9242 | <context context-type="linenumber">75</context> | 8839 | <context context-type="linenumber">75</context> |
@@ -9252,23 +8849,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9252 | </trans-unit> | 8849 | </trans-unit> |
9253 | <trans-unit id="3541115907775840269" datatype="html"> | 8850 | <trans-unit id="3541115907775840269" datatype="html"> |
9254 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source> | 8851 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source> |
9255 | <target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | 8852 | <target state="translated">Haluatko varmasti muokata videota "<x id="PH" equiv-text="this.video.name"/>"?</target> |
9256 | <context-group purpose="location"> | 8853 | <context-group purpose="location"> |
9257 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8854 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
9258 | <context context-type="linenumber">72</context> | 8855 | <context context-type="linenumber">72</context> |
9259 | </context-group> | 8856 | </context-group> |
9260 | </trans-unit> | 8857 | </trans-unit> |
9261 | <trans-unit id="3858880927114551513" datatype="html"> | 8858 | <trans-unit id="3858880927114551513" datatype="html"> |
9262 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source> | 8859 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source> |
9263 | <target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | 8860 | <target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> |
9264 | <context-group purpose="location"> | 8861 | <context-group purpose="location"> |
9265 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8862 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
9266 | <context context-type="linenumber">76</context> | 8863 | <context context-type="linenumber">76</context> |
9267 | </context-group> | 8864 | </context-group> |
9268 | </trans-unit> | 8865 | </trans-unit> |
9269 | <trans-unit id="4876327655498234453" datatype="html"> | 8866 | <trans-unit id="4876327655498234453" datatype="html"> |
9270 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source> | 8867 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source> |
9271 | <target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | 8868 | <target state="translated">Muistutuksena, seuraavat tehtävät tullaan suorittamaan: <ol><x id="PH" equiv-text="listHTML"/></ol></target> |
9272 | <context-group purpose="location"> | 8869 | <context-group purpose="location"> |
9273 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8870 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
9274 | <context context-type="linenumber">77</context> | 8871 | <context context-type="linenumber">77</context> |
@@ -9330,10 +8927,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
9330 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> | 8927 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> |
9331 | </trans-unit> | 8928 | </trans-unit> |
9332 | <trans-unit id="2013324644839511073" datatype="html"> | 8929 | <trans-unit id="2013324644839511073" datatype="html"> |
9333 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. | 8930 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
9334 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 8931 | <target state="needs-translation">Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
9335 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | ||
9336 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | ||
9337 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> | 8932 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> |
9338 | </trans-unit> | 8933 | </trans-unit> |
9339 | <trans-unit id="375263728166936544"> | 8934 | <trans-unit id="375263728166936544"> |
@@ -9424,47 +9019,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9424 | </trans-unit> | 9019 | </trans-unit> |
9425 | <trans-unit id="8781423666414310853" datatype="html"> | 9020 | <trans-unit id="8781423666414310853" datatype="html"> |
9426 | <source>Your password has been successfully reset!</source> | 9021 | <source>Your password has been successfully reset!</source> |
9427 | <target state="new">Your password has been successfully reset!</target> | 9022 | <target state="translated">Salasanasi on palautettu onnistuneesti!</target> |
9428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group> | 9023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group> |
9429 | </trans-unit> | 9024 | </trans-unit> |
9430 | <trans-unit id="6048892649018070225"> | 9025 | <trans-unit id="6048892649018070225"> |
9431 | <source>Today</source> | 9026 | <source>Today</source> |
9432 | <target>Tänään</target> | 9027 | <target>Tänään</target> |
9433 | 9028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group> | |
9434 | 9029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group> | |
9435 | 9030 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group> | |
9436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 9031 | </trans-unit> |
9437 | <trans-unit id="4498682414491138092" datatype="html"> | 9032 | <trans-unit id="4498682414491138092" datatype="html"> |
9438 | <source>Yesterday</source> | 9033 | <source>Yesterday</source> |
9439 | <target state="new">Yesterday</target> | 9034 | <target state="new">Yesterday</target> |
9440 | 9035 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group> | |
9441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 9036 | </trans-unit> |
9442 | <trans-unit id="5073473933031004097" datatype="html"> | 9037 | <trans-unit id="5073473933031004097" datatype="html"> |
9443 | <source>This week</source> | 9038 | <source>This week</source> |
9444 | <target state="new">This week</target> | 9039 | <target state="translated">Tällä viikolla</target> |
9445 | 9040 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group> | |
9446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 9041 | </trans-unit> |
9447 | <trans-unit id="842657237693374355" datatype="html"> | 9042 | <trans-unit id="842657237693374355" datatype="html"> |
9448 | <source>This month</source> | 9043 | <source>This month</source> |
9449 | <target state="new">This month</target> | 9044 | <target state="new">This month</target> |
9450 | 9045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group> | |
9451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 9046 | </trans-unit> |
9452 | <trans-unit id="4463380307954693363" datatype="html"> | 9047 | <trans-unit id="4463380307954693363" datatype="html"> |
9453 | <source>Last month</source> | 9048 | <source>Last month</source> |
9454 | <target state="new">Last month</target> | 9049 | <target state="new">Last month</target> |
9455 | 9050 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group> | |
9456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group></trans-unit> | 9051 | </trans-unit> |
9457 | <trans-unit id="7473676707373218484" datatype="html"> | 9052 | <trans-unit id="7473676707373218484" datatype="html"> |
9458 | <source>Older</source> | 9053 | <source>Older</source> |
9459 | <target state="new">Older</target> | 9054 | <target state="new">Older</target> |
9460 | 9055 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
9461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9056 | </trans-unit> |
9462 | <trans-unit id="5036991421517255667" datatype="html"> | 9057 | <trans-unit id="5036991421517255667" datatype="html"> |
9463 | <source>Cannot load more videos. Try again later.</source> | 9058 | <source>Cannot load more videos. Try again later.</source> |
9464 | <target state="new">Cannot load more videos. Try again later.</target> | 9059 | <target state="new">Cannot load more videos. Try again later.</target> |
9465 | 9060 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group> | |
9466 | 9061 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group> | |
9467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 9062 | </trans-unit> |
9468 | <trans-unit id="4873149362496451858"> | 9063 | <trans-unit id="4873149362496451858"> |
9469 | <source>Last 7 days</source> | 9064 | <source>Last 7 days</source> |
9470 | <target>Viimeiset 7 päivää</target> | 9065 | <target>Viimeiset 7 päivää</target> |
@@ -9482,7 +9077,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9482 | </trans-unit> | 9077 | </trans-unit> |
9483 | <trans-unit id="2392481201920342009" datatype="html"> | 9078 | <trans-unit id="2392481201920342009" datatype="html"> |
9484 | <source>VOD videos</source> | 9079 | <source>VOD videos</source> |
9485 | <target state="new">VOD videos</target> | 9080 | <target state="translated">VOD videot</target> |
9486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | 9081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> |
9487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">109</context></context-group> | 9082 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">109</context></context-group> |
9488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">165</context></context-group> | 9083 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">165</context></context-group> |
@@ -9505,8 +9100,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> | 9100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> |
9506 | </trans-unit> | 9101 | </trans-unit> |
9507 | <trans-unit id="6613870447286561244"> | 9102 | <trans-unit id="6613870447286561244"> |
9508 | <source>Long (> 10 min)</source> | 9103 | <source>Long (> 10 min)</source> |
9509 | <target>Pitkä (> 10 min)</target> | 9104 | <target>Pitkä (> 10 min)</target> |
9510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> | 9105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> |
9511 | </trans-unit> | 9106 | </trans-unit> |
9512 | <trans-unit id="1787083504545967"> | 9107 | <trans-unit id="1787083504545967"> |
@@ -9560,7 +9155,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9560 | </trans-unit> | 9155 | </trans-unit> |
9561 | <trans-unit id="7804724824750282316" datatype="html"> | 9156 | <trans-unit id="7804724824750282316" datatype="html"> |
9562 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/></source> | 9157 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/></source> |
9563 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/></target> | 9158 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" xid="3148804384763272950" equiv-text="{pagination.totalItems, plural, =1 {tulos} other {tulosta}}"/></target> |
9564 | <context-group purpose="location"> | 9159 | <context-group purpose="location"> |
9565 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 9160 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
9566 | <context context-type="linenumber">5</context> | 9161 | <context context-type="linenumber">5</context> |
@@ -10197,8 +9792,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> | 9792 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> |
10198 | </trans-unit> | 9793 | </trans-unit> |
10199 | <trans-unit id="5637879201055173642" datatype="html"> | 9794 | <trans-unit id="5637879201055173642" datatype="html"> |
10200 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> | 9795 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
10201 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. | 9796 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. |
10202 | </target> | 9797 | </target> |
10203 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> | 9798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> |
10204 | </trans-unit> | 9799 | </trans-unit> |
@@ -10387,7 +9982,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10387 | </trans-unit> | 9982 | </trans-unit> |
10388 | <trans-unit id="3393133458004181121" datatype="html"> | 9983 | <trans-unit id="3393133458004181121" datatype="html"> |
10389 | <source>All categories</source> | 9984 | <source>All categories</source> |
10390 | <target state="new">All categories</target> | 9985 | <target state="translated">Kaikki kategoriat</target> |
10391 | <context-group purpose="location"> | 9986 | <context-group purpose="location"> |
10392 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9987 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
10393 | <context context-type="linenumber">24</context> | 9988 | <context context-type="linenumber">24</context> |
@@ -10453,7 +10048,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10453 | </trans-unit> | 10048 | </trans-unit> |
10454 | <trans-unit id="1391351050292665308" datatype="html"> | 10049 | <trans-unit id="1391351050292665308" datatype="html"> |
10455 | <source>Sun</source> | 10050 | <source>Sun</source> |
10456 | <target state="new">Sun</target> | 10051 | <target state="translated">su</target> |
10457 | <context-group purpose="location"> | 10052 | <context-group purpose="location"> |
10458 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10053 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10459 | <context context-type="linenumber">20</context> | 10054 | <context context-type="linenumber">20</context> |
@@ -10463,7 +10058,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10463 | </trans-unit> | 10058 | </trans-unit> |
10464 | <trans-unit id="7037142944838911104" datatype="html"> | 10059 | <trans-unit id="7037142944838911104" datatype="html"> |
10465 | <source>Mon</source> | 10060 | <source>Mon</source> |
10466 | <target state="new">Mon</target> | 10061 | <target state="translated">ma</target> |
10467 | <context-group purpose="location"> | 10062 | <context-group purpose="location"> |
10468 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10063 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10469 | <context context-type="linenumber">21</context> | 10064 | <context context-type="linenumber">21</context> |
@@ -10473,7 +10068,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10473 | </trans-unit> | 10068 | </trans-unit> |
10474 | <trans-unit id="4051951828654963549" datatype="html"> | 10069 | <trans-unit id="4051951828654963549" datatype="html"> |
10475 | <source>Tue</source> | 10070 | <source>Tue</source> |
10476 | <target state="new">Tue</target> | 10071 | <target state="translated">ti</target> |
10477 | <context-group purpose="location"> | 10072 | <context-group purpose="location"> |
10478 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10073 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10479 | <context context-type="linenumber">22</context> | 10074 | <context context-type="linenumber">22</context> |
@@ -10483,7 +10078,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10483 | </trans-unit> | 10078 | </trans-unit> |
10484 | <trans-unit id="5265738215297391426" datatype="html"> | 10079 | <trans-unit id="5265738215297391426" datatype="html"> |
10485 | <source>Wed</source> | 10080 | <source>Wed</source> |
10486 | <target state="new">Wed</target> | 10081 | <target state="translated">ke</target> |
10487 | <context-group purpose="location"> | 10082 | <context-group purpose="location"> |
10488 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10083 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10489 | <context context-type="linenumber">23</context> | 10084 | <context context-type="linenumber">23</context> |
@@ -10493,7 +10088,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10493 | </trans-unit> | 10088 | </trans-unit> |
10494 | <trans-unit id="1370330981433231150" datatype="html"> | 10089 | <trans-unit id="1370330981433231150" datatype="html"> |
10495 | <source>Thu</source> | 10090 | <source>Thu</source> |
10496 | <target state="new">Thu</target> | 10091 | <target state="translated">to</target> |
10497 | <context-group purpose="location"> | 10092 | <context-group purpose="location"> |
10498 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10093 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10499 | <context context-type="linenumber">24</context> | 10094 | <context context-type="linenumber">24</context> |
@@ -10503,7 +10098,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10503 | </trans-unit> | 10098 | </trans-unit> |
10504 | <trans-unit id="8713535243933137493" datatype="html"> | 10099 | <trans-unit id="8713535243933137493" datatype="html"> |
10505 | <source>Fri</source> | 10100 | <source>Fri</source> |
10506 | <target state="new">Fri</target> | 10101 | <target state="translated">pe</target> |
10507 | <context-group purpose="location"> | 10102 | <context-group purpose="location"> |
10508 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10103 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10509 | <context context-type="linenumber">25</context> | 10104 | <context context-type="linenumber">25</context> |
@@ -10513,7 +10108,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10513 | </trans-unit> | 10108 | </trans-unit> |
10514 | <trans-unit id="3547824477629753314" datatype="html"> | 10109 | <trans-unit id="3547824477629753314" datatype="html"> |
10515 | <source>Sat</source> | 10110 | <source>Sat</source> |
10516 | <target state="new">Sat</target> | 10111 | <target state="translated">la</target> |
10517 | <context-group purpose="location"> | 10112 | <context-group purpose="location"> |
10518 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10113 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10519 | <context context-type="linenumber">26</context> | 10114 | <context context-type="linenumber">26</context> |
@@ -10523,7 +10118,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10523 | </trans-unit> | 10118 | </trans-unit> |
10524 | <trans-unit id="6115403217651453591" datatype="html"> | 10119 | <trans-unit id="6115403217651453591" datatype="html"> |
10525 | <source>Su</source> | 10120 | <source>Su</source> |
10526 | <target state="new">Su</target> | 10121 | <target state="translated">su</target> |
10527 | <context-group purpose="location"> | 10122 | <context-group purpose="location"> |
10528 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10123 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10529 | <context context-type="linenumber">30</context> | 10124 | <context context-type="linenumber">30</context> |
@@ -10533,7 +10128,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10533 | </trans-unit> | 10128 | </trans-unit> |
10534 | <trans-unit id="3797918310510782582" datatype="html"> | 10129 | <trans-unit id="3797918310510782582" datatype="html"> |
10535 | <source>Mo</source> | 10130 | <source>Mo</source> |
10536 | <target state="new">Mo</target> | 10131 | <target state="translated">ma</target> |
10537 | <context-group purpose="location"> | 10132 | <context-group purpose="location"> |
10538 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10133 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10539 | <context context-type="linenumber">31</context> | 10134 | <context context-type="linenumber">31</context> |
@@ -10543,7 +10138,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10543 | </trans-unit> | 10138 | </trans-unit> |
10544 | <trans-unit id="8011371911136291436" datatype="html"> | 10139 | <trans-unit id="8011371911136291436" datatype="html"> |
10545 | <source>Tu</source> | 10140 | <source>Tu</source> |
10546 | <target state="new">Tu</target> | 10141 | <target state="translated">ti</target> |
10547 | <context-group purpose="location"> | 10142 | <context-group purpose="location"> |
10548 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10143 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10549 | <context context-type="linenumber">32</context> | 10144 | <context context-type="linenumber">32</context> |
@@ -10553,7 +10148,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10553 | </trans-unit> | 10148 | </trans-unit> |
10554 | <trans-unit id="1673380870543456256" datatype="html"> | 10149 | <trans-unit id="1673380870543456256" datatype="html"> |
10555 | <source>We</source> | 10150 | <source>We</source> |
10556 | <target state="new">We</target> | 10151 | <target state="translated">ke</target> |
10557 | <context-group purpose="location"> | 10152 | <context-group purpose="location"> |
10558 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10153 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10559 | <context context-type="linenumber">33</context> | 10154 | <context context-type="linenumber">33</context> |
@@ -10563,7 +10158,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10563 | </trans-unit> | 10158 | </trans-unit> |
10564 | <trans-unit id="8502005439670299526" datatype="html"> | 10159 | <trans-unit id="8502005439670299526" datatype="html"> |
10565 | <source>Th</source> | 10160 | <source>Th</source> |
10566 | <target state="new">Th</target> | 10161 | <target state="translated">to</target> |
10567 | <context-group purpose="location"> | 10162 | <context-group purpose="location"> |
10568 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10163 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10569 | <context context-type="linenumber">34</context> | 10164 | <context context-type="linenumber">34</context> |
@@ -10573,7 +10168,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10573 | </trans-unit> | 10168 | </trans-unit> |
10574 | <trans-unit id="2800261787799336637" datatype="html"> | 10169 | <trans-unit id="2800261787799336637" datatype="html"> |
10575 | <source>Fr</source> | 10170 | <source>Fr</source> |
10576 | <target state="new">Fr</target> | 10171 | <target state="translated">pe</target> |
10577 | <context-group purpose="location"> | 10172 | <context-group purpose="location"> |
10578 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10173 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10579 | <context context-type="linenumber">35</context> | 10174 | <context context-type="linenumber">35</context> |
@@ -10583,7 +10178,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10583 | </trans-unit> | 10178 | </trans-unit> |
10584 | <trans-unit id="2045915324506422459" datatype="html"> | 10179 | <trans-unit id="2045915324506422459" datatype="html"> |
10585 | <source>Sa</source> | 10180 | <source>Sa</source> |
10586 | <target state="new">Sa</target> | 10181 | <target state="translated">la</target> |
10587 | <context-group purpose="location"> | 10182 | <context-group purpose="location"> |
10588 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10183 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10589 | <context context-type="linenumber">36</context> | 10184 | <context context-type="linenumber">36</context> |
@@ -10653,7 +10248,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10653 | </trans-unit> | 10248 | </trans-unit> |
10654 | <trans-unit id="1799348348510504995" datatype="html"> | 10249 | <trans-unit id="1799348348510504995" datatype="html"> |
10655 | <source>Jan</source> | 10250 | <source>Jan</source> |
10656 | <target state="new">Jan</target> | 10251 | <target state="translated">tammi</target> |
10657 | <context-group purpose="location"> | 10252 | <context-group purpose="location"> |
10658 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10253 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10659 | <context context-type="linenumber">55</context> | 10254 | <context context-type="linenumber">55</context> |
@@ -10663,7 +10258,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10663 | </trans-unit> | 10258 | </trans-unit> |
10664 | <trans-unit id="2980544278361296608" datatype="html"> | 10259 | <trans-unit id="2980544278361296608" datatype="html"> |
10665 | <source>Feb</source> | 10260 | <source>Feb</source> |
10666 | <target state="new">Feb</target> | 10261 | <target state="translated">helmi</target> |
10667 | <context-group purpose="location"> | 10262 | <context-group purpose="location"> |
10668 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10263 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10669 | <context context-type="linenumber">56</context> | 10264 | <context context-type="linenumber">56</context> |
@@ -10673,7 +10268,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10673 | </trans-unit> | 10268 | </trans-unit> |
10674 | <trans-unit id="3124926955462217092" datatype="html"> | 10269 | <trans-unit id="3124926955462217092" datatype="html"> |
10675 | <source>Mar</source> | 10270 | <source>Mar</source> |
10676 | <target state="new">Mar</target> | 10271 | <target state="translated">maalis</target> |
10677 | <context-group purpose="location"> | 10272 | <context-group purpose="location"> |
10678 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10273 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10679 | <context context-type="linenumber">57</context> | 10274 | <context context-type="linenumber">57</context> |
@@ -10683,7 +10278,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10683 | </trans-unit> | 10278 | </trans-unit> |
10684 | <trans-unit id="9658641661863772" datatype="html"> | 10279 | <trans-unit id="9658641661863772" datatype="html"> |
10685 | <source>Apr</source> | 10280 | <source>Apr</source> |
10686 | <target state="new">Apr</target> | 10281 | <target state="translated">huhti</target> |
10687 | <context-group purpose="location"> | 10282 | <context-group purpose="location"> |
10688 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10283 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10689 | <context context-type="linenumber">58</context> | 10284 | <context context-type="linenumber">58</context> |
@@ -10693,7 +10288,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10693 | </trans-unit> | 10288 | </trans-unit> |
10694 | <trans-unit id="502512326533496869" datatype="html"> | 10289 | <trans-unit id="502512326533496869" datatype="html"> |
10695 | <source>May</source> | 10290 | <source>May</source> |
10696 | <target state="new">May</target> | 10291 | <target state="translated">touko</target> |
10697 | <context-group purpose="location"> | 10292 | <context-group purpose="location"> |
10698 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10293 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10699 | <context context-type="linenumber">59</context> | 10294 | <context context-type="linenumber">59</context> |
@@ -10703,7 +10298,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10703 | </trans-unit> | 10298 | </trans-unit> |
10704 | <trans-unit id="3044090977322782161" datatype="html"> | 10299 | <trans-unit id="3044090977322782161" datatype="html"> |
10705 | <source>Jun</source> | 10300 | <source>Jun</source> |
10706 | <target state="new">Jun</target> | 10301 | <target state="translated">kesä</target> |
10707 | <context-group purpose="location"> | 10302 | <context-group purpose="location"> |
10708 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10303 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10709 | <context context-type="linenumber">60</context> | 10304 | <context context-type="linenumber">60</context> |
@@ -10713,7 +10308,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10713 | </trans-unit> | 10308 | </trans-unit> |
10714 | <trans-unit id="8066434078267346927" datatype="html"> | 10309 | <trans-unit id="8066434078267346927" datatype="html"> |
10715 | <source>Jul</source> | 10310 | <source>Jul</source> |
10716 | <target state="new">Jul</target> | 10311 | <target state="translated">heinä</target> |
10717 | <context-group purpose="location"> | 10312 | <context-group purpose="location"> |
10718 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10313 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10719 | <context context-type="linenumber">61</context> | 10314 | <context context-type="linenumber">61</context> |
@@ -10723,7 +10318,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10723 | </trans-unit> | 10318 | </trans-unit> |
10724 | <trans-unit id="1796563865253467834" datatype="html"> | 10319 | <trans-unit id="1796563865253467834" datatype="html"> |
10725 | <source>Aug</source> | 10320 | <source>Aug</source> |
10726 | <target state="new">Aug</target> | 10321 | <target state="translated">elo</target> |
10727 | <context-group purpose="location"> | 10322 | <context-group purpose="location"> |
10728 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10323 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10729 | <context context-type="linenumber">62</context> | 10324 | <context context-type="linenumber">62</context> |
@@ -10733,7 +10328,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10733 | </trans-unit> | 10328 | </trans-unit> |
10734 | <trans-unit id="5865190625753625986" datatype="html"> | 10329 | <trans-unit id="5865190625753625986" datatype="html"> |
10735 | <source>Sep</source> | 10330 | <source>Sep</source> |
10736 | <target state="new">Sep</target> | 10331 | <target state="translated">syys</target> |
10737 | <context-group purpose="location"> | 10332 | <context-group purpose="location"> |
10738 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10333 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10739 | <context context-type="linenumber">63</context> | 10334 | <context context-type="linenumber">63</context> |
@@ -10743,7 +10338,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10743 | </trans-unit> | 10338 | </trans-unit> |
10744 | <trans-unit id="4011114601374284323" datatype="html"> | 10339 | <trans-unit id="4011114601374284323" datatype="html"> |
10745 | <source>Oct</source> | 10340 | <source>Oct</source> |
10746 | <target state="new">Oct</target> | 10341 | <target state="translated">loka</target> |
10747 | <context-group purpose="location"> | 10342 | <context-group purpose="location"> |
10748 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10343 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10749 | <context context-type="linenumber">64</context> | 10344 | <context context-type="linenumber">64</context> |
@@ -10753,7 +10348,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10753 | </trans-unit> | 10348 | </trans-unit> |
10754 | <trans-unit id="5063734982204786445" datatype="html"> | 10349 | <trans-unit id="5063734982204786445" datatype="html"> |
10755 | <source>Nov</source> | 10350 | <source>Nov</source> |
10756 | <target state="new">Nov</target> | 10351 | <target state="translated">marras</target> |
10757 | <context-group purpose="location"> | 10352 | <context-group purpose="location"> |
10758 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10353 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10759 | <context context-type="linenumber">65</context> | 10354 | <context context-type="linenumber">65</context> |
@@ -10763,7 +10358,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10763 | </trans-unit> | 10358 | </trans-unit> |
10764 | <trans-unit id="4789897150069082503" datatype="html"> | 10359 | <trans-unit id="4789897150069082503" datatype="html"> |
10765 | <source>Dec</source> | 10360 | <source>Dec</source> |
10766 | <target state="new">Dec</target> | 10361 | <target state="translated">joulu</target> |
10767 | <context-group purpose="location"> | 10362 | <context-group purpose="location"> |
10768 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10363 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10769 | <context context-type="linenumber">66</context> | 10364 | <context context-type="linenumber">66</context> |
@@ -10898,14 +10493,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10898 | </trans-unit> | 10493 | </trans-unit> |
10899 | <trans-unit id="2448281151916042849" datatype="html"> | 10494 | <trans-unit id="2448281151916042849" datatype="html"> |
10900 | <source>User <x id="PH"/> banned.</source> | 10495 | <source>User <x id="PH"/> banned.</source> |
10901 | <target state="new">User | 10496 | <target state="translated">Käyttäjä <x id="PH"/> estetty.</target> |
10902 | <x id="PH"/> banned. | ||
10903 | </target> | ||
10904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group> | 10497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group> |
10905 | </trans-unit> | 10498 | </trans-unit> |
10906 | <trans-unit id="3160979325245958752" datatype="html"> | 10499 | <trans-unit id="3160979325245958752" datatype="html"> |
10907 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source> | 10500 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source> |
10908 | <target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | 10501 | <target state="translated">Estä <x id="PH" equiv-text="this.usersToBan.length"/> käyttäjää</target> |
10909 | <context-group purpose="location"> | 10502 | <context-group purpose="location"> |
10910 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10503 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10911 | <context context-type="linenumber">82</context> | 10504 | <context context-type="linenumber">82</context> |
@@ -10913,7 +10506,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10913 | </trans-unit> | 10506 | </trans-unit> |
10914 | <trans-unit id="8088707210191809175" datatype="html"> | 10507 | <trans-unit id="8088707210191809175" datatype="html"> |
10915 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source> | 10508 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source> |
10916 | <target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | 10509 | <target state="translated">Estä "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> |
10917 | <context-group purpose="location"> | 10510 | <context-group purpose="location"> |
10918 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10511 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10919 | <context context-type="linenumber">84</context> | 10512 | <context context-type="linenumber">84</context> |
@@ -10921,16 +10514,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10921 | </trans-unit> | 10514 | </trans-unit> |
10922 | <trans-unit id="8269144351796756896" datatype="html"> | 10515 | <trans-unit id="8269144351796756896" datatype="html"> |
10923 | <source>Do you really want to unban <x id="PH"/>?</source> | 10516 | <source>Do you really want to unban <x id="PH"/>?</source> |
10924 | <target state="new">Do you really want to unban | 10517 | <target state="translated">Haluatko varmasti postaa estot käyttäjältä <x id="PH"/>?</target> |
10925 | <x id="PH"/>? | ||
10926 | </target> | ||
10927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | 10518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> |
10928 | </trans-unit> | 10519 | </trans-unit> |
10929 | <trans-unit id="1794219875546376069" datatype="html"> | 10520 | <trans-unit id="1794219875546376069" datatype="html"> |
10930 | <source>User <x id="PH"/> unbanned.</source> | 10521 | <source>User <x id="PH"/> unbanned.</source> |
10931 | <target state="new">User | 10522 | <target state="translated">Käyttäjän <x id="PH"/> estot poistettu.</target> |
10932 | <x id="PH"/> unbanned. | ||
10933 | </target> | ||
10934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group> | 10523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group> |
10935 | </trans-unit> | 10524 | </trans-unit> |
10936 | <trans-unit id="9208009623124569456" datatype="html"> | 10525 | <trans-unit id="9208009623124569456" datatype="html"> |
@@ -10940,45 +10529,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10940 | </trans-unit> | 10529 | </trans-unit> |
10941 | <trans-unit id="6307826440781941134" datatype="html"> | 10530 | <trans-unit id="6307826440781941134" datatype="html"> |
10942 | <source>Delete <x id="PH" equiv-text="user.username"/></source> | 10531 | <source>Delete <x id="PH" equiv-text="user.username"/></source> |
10943 | <target state="new">Delete <x id="PH" equiv-text="user.username"/></target> | 10532 | <target state="translated">Poista <x id="PH" equiv-text="user.username"/></target> |
10944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group> | 10533 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group> |
10945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group> | 10534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group> |
10946 | </trans-unit> | 10535 | </trans-unit> |
10947 | <trans-unit id="6301381219225831298"> | 10536 | <trans-unit id="6301381219225831298"> |
10948 | <source>User <x id="PH"/> deleted.</source> | 10537 | <source>User <x id="PH"/> deleted.</source> |
10949 | <target>Käyttäjä | 10538 | <target>Käyttäjä <x id="PH"/> poistettu.</target> |
10950 | <x id="PH"/> poistettu. | ||
10951 | </target> | ||
10952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group> | 10539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group> |
10953 | </trans-unit> | 10540 | </trans-unit> |
10954 | <trans-unit id="3896582359861826661" datatype="html"> | 10541 | <trans-unit id="3896582359861826661" datatype="html"> |
10955 | <source>User <x id="PH"/> email set as verified</source> | 10542 | <source>User <x id="PH"/> email set as verified</source> |
10956 | <target state="new">User | 10543 | <target state="translated">Käyttäjän <x id="PH"/> sähköpostiosoite vahvistettu</target> |
10957 | <x id="PH"/> email set as verified | ||
10958 | </target> | ||
10959 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group> | 10544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group> |
10960 | </trans-unit> | 10545 | </trans-unit> |
10961 | <trans-unit id="8150022485860412528" datatype="html"> | 10546 | <trans-unit id="8150022485860412528" datatype="html"> |
10962 | <source>Account <x id="PH"/> muted.</source> | 10547 | <source>Account <x id="PH"/> muted.</source> |
10963 | <target state="new">Account | 10548 | <target state="translated">Tili <x id="PH"/> hiljennetty.</target> |
10964 | <x id="PH"/> muted. | ||
10965 | </target> | ||
10966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group> | 10549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group> |
10967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> | 10550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> |
10968 | </trans-unit> | 10551 | </trans-unit> |
10969 | <trans-unit id="1598375456114200087" datatype="html"> | 10552 | <trans-unit id="1598375456114200087" datatype="html"> |
10970 | <source>Instance <x id="PH" equiv-text="domain"/> muted.</source> | 10553 | <source>Instance <x id="PH" equiv-text="domain"/> muted.</source> |
10971 | <target state="new">Instance | 10554 | <target state="translated">Instanssi <x id="PH" equiv-text="domain"/> hiljennetty.</target> |
10972 | <x id="PH"/> muted. | ||
10973 | </target> | ||
10974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> | 10555 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> |
10975 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group> | 10556 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group> |
10976 | </trans-unit> | 10557 | </trans-unit> |
10977 | <trans-unit id="2558977494773636050" datatype="html"> | 10558 | <trans-unit id="2558977494773636050" datatype="html"> |
10978 | <source>Account <x id="PH"/> muted by the instance.</source> | 10559 | <source>Account <x id="PH"/> muted by the instance.</source> |
10979 | <target state="new">Account | 10560 | <target state="translated">Tili <x id="PH"/> instanssin hiljentämä.</target> |
10980 | <x id="PH"/> muted by the instance. | ||
10981 | </target> | ||
10982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group> | 10561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group> |
10983 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group> | 10562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group> |
10984 | </trans-unit> | 10563 | </trans-unit> |
@@ -10989,9 +10568,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10989 | </trans-unit> | 10568 | </trans-unit> |
10990 | <trans-unit id="8014491157078444256" datatype="html"> | 10569 | <trans-unit id="8014491157078444256" datatype="html"> |
10991 | <source>Server <x id="PH"/> muted by the instance.</source> | 10570 | <source>Server <x id="PH"/> muted by the instance.</source> |
10992 | <target state="new">Server | 10571 | <target state="translated">Palvelin <x id="PH"/> instanssin hiljentämä.</target> |
10993 | <x id="PH"/> muted by the instance. | ||
10994 | </target> | ||
10995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">446</context></context-group> | 10572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">446</context></context-group> |
10996 | </trans-unit> | 10573 | </trans-unit> |
10997 | <trans-unit id="2044813052587776285" datatype="html"> | 10574 | <trans-unit id="2044813052587776285" datatype="html"> |
@@ -11006,23 +10583,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11006 | </trans-unit> | 10583 | </trans-unit> |
11007 | <trans-unit id="3085641638748358969" datatype="html"> | 10584 | <trans-unit id="3085641638748358969" datatype="html"> |
11008 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 10585 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
11009 | <target state="new">Account | 10586 | <target state="translated">Tilin <x id="PH"/> hiljennys poistettu instanssilta.</target> |
11010 | <x id="PH"/> unmuted by the instance. | ||
11011 | </target> | ||
11012 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group> | 10587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group> |
11013 | </trans-unit> | 10588 | </trans-unit> |
11014 | <trans-unit id="4991892477258601737" datatype="html"> | 10589 | <trans-unit id="4991892477258601737" datatype="html"> |
11015 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10590 | <source>Instance <x id="PH"/> muted by the instance.</source> |
11016 | <target state="new">Instance | 10591 | <target state="translated">Instanssi <x id="PH"/> hiljennetty instanssilla.</target> |
11017 | <x id="PH"/> muted by the instance. | ||
11018 | </target> | ||
11019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group> | 10592 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group> |
11020 | </trans-unit> | 10593 | </trans-unit> |
11021 | <trans-unit id="4379430340167561220" datatype="html"> | 10594 | <trans-unit id="4379430340167561220" datatype="html"> |
11022 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10595 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
11023 | <target state="new">Instance | 10596 | <target state="needs-translation">Instance <x id="PH"/> unmuted by the instance.</target> |
11024 | <x id="PH"/> unmuted by the instance. | ||
11025 | </target> | ||
11026 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group> | 10597 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group> |
11027 | </trans-unit> | 10598 | </trans-unit> |
11028 | <trans-unit id="8173437618471379044" datatype="html"> | 10599 | <trans-unit id="8173437618471379044" datatype="html"> |
@@ -11072,7 +10643,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11072 | </trans-unit> | 10643 | </trans-unit> |
11073 | <trans-unit id="1888272455383898478"> | 10644 | <trans-unit id="1888272455383898478"> |
11074 | <source>Mute this account</source> | 10645 | <source>Mute this account</source> |
11075 | <target>Mykistä tämä käyttäjä.</target> | 10646 | <target>Mykistä tämä käyttäjä</target> |
11076 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group> | 10647 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group> |
11077 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group> | 10648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group> |
11078 | </trans-unit> | 10649 | </trans-unit> |
@@ -11165,7 +10736,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11165 | </trans-unit> | 10736 | </trans-unit> |
11166 | <trans-unit id="8546847443058492245" datatype="html"> | 10737 | <trans-unit id="8546847443058492245" datatype="html"> |
11167 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> | 10738 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> |
11168 | <target state="new">Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</target> | 10739 | <target state="translated">Estä <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videota</target> |
11169 | <context-group purpose="location"> | 10740 | <context-group purpose="location"> |
11170 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 10741 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
11171 | <context context-type="linenumber">4</context> | 10742 | <context context-type="linenumber">4</context> |
@@ -11245,9 +10816,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11245 | </trans-unit> | 10816 | </trans-unit> |
11246 | <trans-unit id="968295009933361070" datatype="html"> | 10817 | <trans-unit id="968295009933361070" datatype="html"> |
11247 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 10818 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
11248 | <target state="new">Too many attempts, please try again after | 10819 | <target state="translated">Liian monta yritystä, yritä uudelleen <x id="PH"/> minuutin jälkeen.</target> |
11249 | <x id="PH"/> minutes. | ||
11250 | </target> | ||
11251 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">66</context></context-group> | 10820 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">66</context></context-group> |
11252 | </trans-unit> | 10821 | </trans-unit> |
11253 | <trans-unit id="4965472196059235310"> | 10822 | <trans-unit id="4965472196059235310"> |
@@ -11262,16 +10831,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11262 | </trans-unit> | 10831 | </trans-unit> |
11263 | <trans-unit id="5927402622550505067" datatype="html"> | 10832 | <trans-unit id="5927402622550505067" datatype="html"> |
11264 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 10833 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
11265 | <target state="new">Subscribed to all current channels of | 10834 | <target state="needs-translation">Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</target> |
11266 | <x id="PH"/>. You will be notified of all their new videos. | ||
11267 | </target> | ||
11268 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">109</context></context-group> | 10835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">109</context></context-group> |
11269 | </trans-unit> | 10836 | </trans-unit> |
11270 | <trans-unit id="2780460651686172544" datatype="html"> | 10837 | <trans-unit id="2780460651686172544" datatype="html"> |
11271 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> | 10838 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> |
11272 | <target state="new">Subscribed to | 10839 | <target state="translated">Tilataan kohdetta <x id="PH"/>. Saat ilmoituksen heidän kaikista uusista videoista.</target> |
11273 | <x id="PH"/>. You will be notified of all their new videos. | ||
11274 | </target> | ||
11275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">110</context></context-group> | 10840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">110</context></context-group> |
11276 | </trans-unit> | 10841 | </trans-unit> |
11277 | <trans-unit id="7019115336138470191"> | 10842 | <trans-unit id="7019115336138470191"> |
@@ -11321,7 +10886,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11321 | </trans-unit> | 10886 | </trans-unit> |
11322 | <trans-unit id="2279527393438260622" datatype="html"> | 10887 | <trans-unit id="2279527393438260622" datatype="html"> |
11323 | <source>Search videos, playlists, channels…</source> | 10888 | <source>Search videos, playlists, channels…</source> |
11324 | <target state="new">Search videos, playlists, channels…</target> | 10889 | <target state="translated">Hae videoita, soittolistoja, kanavia…</target> |
11325 | <context-group purpose="location"> | 10890 | <context-group purpose="location"> |
11326 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 10891 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
11327 | <context context-type="linenumber">3</context> | 10892 | <context context-type="linenumber">3</context> |
@@ -11337,10 +10902,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11337 | </trans-unit> | 10902 | </trans-unit> |
11338 | <trans-unit id="1056145626640340519" datatype="html"> | 10903 | <trans-unit id="1056145626640340519" datatype="html"> |
11339 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10904 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
11340 | <target state="new">Video added in | 10905 | <target state="needs-translation">Video added in <x id="PH"/> at timestamps <x id="PH_1"/></target> |
11341 | <x id="PH"/> at timestamps | ||
11342 | <x id="PH_1"/> | ||
11343 | </target> | ||
11344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group> | 10906 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group> |
11345 | </trans-unit> | 10907 | </trans-unit> |
11346 | <trans-unit id="7754186870520534716" datatype="html"> | 10908 | <trans-unit id="7754186870520534716" datatype="html"> |
@@ -11432,7 +10994,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11432 | </trans-unit> | 10994 | </trans-unit> |
11433 | <trans-unit id="4323470180912194028" datatype="html"> | 10995 | <trans-unit id="4323470180912194028" datatype="html"> |
11434 | <source>Copy</source> | 10996 | <source>Copy</source> |
11435 | <target state="new">Copy</target> | 10997 | <target state="translated">Kopioi</target> |
11436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> | 10998 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> |
11437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> | 10999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> |
11438 | </trans-unit> | 11000 | </trans-unit> |
@@ -11499,25 +11061,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11499 | </trans-unit> | 11061 | </trans-unit> |
11500 | <trans-unit id="6521421218398377925" datatype="html"> | 11062 | <trans-unit id="6521421218398377925" datatype="html"> |
11501 | <source>Run HLS transcoding</source> | 11063 | <source>Run HLS transcoding</source> |
11502 | <target state="new">Run HLS transcoding</target> | 11064 | <target state="translated">Suorita HLS transkoodaaminen</target> |
11503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group> | 11065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group> |
11504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | 11066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> |
11505 | </trans-unit> | 11067 | </trans-unit> |
11506 | <trans-unit id="4956271014213477815" datatype="html"> | 11068 | <trans-unit id="4956271014213477815" datatype="html"> |
11507 | <source>Run WebTorrent transcoding</source> | 11069 | <source>Run WebTorrent transcoding</source> |
11508 | <target state="new">Run WebTorrent transcoding</target> | 11070 | <target state="translated">Suorita WebTorrent transkoodaaminen</target> |
11509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group> | 11071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group> |
11510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group> | 11072 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group> |
11511 | </trans-unit> | 11073 | </trans-unit> |
11512 | <trans-unit id="5972374600810542430" datatype="html"> | 11074 | <trans-unit id="5972374600810542430" datatype="html"> |
11513 | <source>Delete HLS files</source> | 11075 | <source>Delete HLS files</source> |
11514 | <target state="new">Delete HLS files</target> | 11076 | <target state="translated">Poista HLS tiedostot</target> |
11515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group> | 11077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group> |
11516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | 11078 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> |
11517 | </trans-unit> | 11079 | </trans-unit> |
11518 | <trans-unit id="3844238590532933757" datatype="html"> | 11080 | <trans-unit id="3844238590532933757" datatype="html"> |
11519 | <source>Delete WebTorrent files</source> | 11081 | <source>Delete WebTorrent files</source> |
11520 | <target state="new">Delete WebTorrent files</target> | 11082 | <target state="translated">Poista WebTorrent tiedostot</target> |
11521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group> | 11083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group> |
11522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | 11084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> |
11523 | </trans-unit> | 11085 | </trans-unit> |
@@ -11528,8 +11090,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> | 11090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> |
11529 | </trans-unit> | 11091 | </trans-unit> |
11530 | <trans-unit id="8272123190776748811" datatype="html"> | 11092 | <trans-unit id="8272123190776748811" datatype="html"> |
11531 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 11093 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
11532 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 11094 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> |
11533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> | 11095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> |
11534 | </trans-unit> | 11096 | </trans-unit> |
11535 | <trans-unit id="4503408361537553733" datatype="html"> | 11097 | <trans-unit id="4503408361537553733" datatype="html"> |
@@ -11565,7 +11127,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11565 | </trans-unit> | 11127 | </trans-unit> |
11566 | <trans-unit id="992317512448454409" datatype="html"> | 11128 | <trans-unit id="992317512448454409" datatype="html"> |
11567 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | 11129 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> |
11568 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> | 11130 | <target state="translated">{VAR_PLURAL, plural, =0 {kommenttia} =1 {1 kommentti} other {<x id="INTERPOLATION"/> kommenttia}}</target> |
11569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">4</context></context-group> | 11131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">4</context></context-group> |
11570 | </trans-unit> | 11132 | </trans-unit> |
11571 | <trans-unit id="4903651219400691248" datatype="html"> | 11133 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -11670,7 +11232,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11670 | </trans-unit> | 11232 | </trans-unit> |
11671 | <trans-unit id="118687079501751948" datatype="html"> | 11233 | <trans-unit id="118687079501751948" datatype="html"> |
11672 | <source>Move to external storage failed</source> | 11234 | <source>Move to external storage failed</source> |
11673 | <target state="new">Move to external storage failed</target> | 11235 | <target state="translated">Siirto ulkoiseen tallennustilaan epäonnistui</target> |
11674 | <context-group purpose="location"> | 11236 | <context-group purpose="location"> |
11675 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> | 11237 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> |
11676 | <context context-type="linenumber">183</context> | 11238 | <context context-type="linenumber">183</context> |
@@ -11822,7 +11384,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11822 | </trans-unit> | 11384 | </trans-unit> |
11823 | <trans-unit id="5609201297201028750" datatype="html"> | 11385 | <trans-unit id="5609201297201028750" datatype="html"> |
11824 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source> | 11386 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source> |
11825 | <target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | 11387 | <target state="translated">(lisäosat: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> |
11826 | <context-group purpose="location"> | 11388 | <context-group purpose="location"> |
11827 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11389 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11828 | <context context-type="linenumber">104</context> | 11390 | <context context-type="linenumber">104</context> |
@@ -11834,7 +11396,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11834 | </trans-unit> | 11396 | </trans-unit> |
11835 | <trans-unit id="2196899015955367634" datatype="html"> | 11397 | <trans-unit id="2196899015955367634" datatype="html"> |
11836 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source> | 11398 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source> |
11837 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | 11399 | <target state="translated">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" lisätään videon alkuun</target> |
11838 | <context-group purpose="location"> | 11400 | <context-group purpose="location"> |
11839 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11401 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11840 | <context context-type="linenumber">120</context> | 11402 | <context context-type="linenumber">120</context> |
@@ -11842,7 +11404,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11842 | </trans-unit> | 11404 | </trans-unit> |
11843 | <trans-unit id="4952096817126306891" datatype="html"> | 11405 | <trans-unit id="4952096817126306891" datatype="html"> |
11844 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source> | 11406 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source> |
11845 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | 11407 | <target state="translated">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" lisätään videon loppuun</target> |
11846 | <context-group purpose="location"> | 11408 | <context-group purpose="location"> |
11847 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11409 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11848 | <context context-type="linenumber">124</context> | 11410 | <context context-type="linenumber">124</context> |
@@ -11850,7 +11412,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11850 | </trans-unit> | 11412 | </trans-unit> |
11851 | <trans-unit id="665518679871959619" datatype="html"> | 11413 | <trans-unit id="665518679871959619" datatype="html"> |
11852 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source> | 11414 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source> |
11853 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | 11415 | <target state="translated">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" kuva-vesileima lisätään videoon</target> |
11854 | <context-group purpose="location"> | 11416 | <context-group purpose="location"> |
11855 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11417 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11856 | <context context-type="linenumber">128</context> | 11418 | <context context-type="linenumber">128</context> |
@@ -11858,7 +11420,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11858 | </trans-unit> | 11420 | </trans-unit> |
11859 | <trans-unit id="2677581013897190613" datatype="html"> | 11421 | <trans-unit id="2677581013897190613" datatype="html"> |
11860 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source> | 11422 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source> |
11861 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | 11423 | <target state="translated">Video alkaa kohdasta <x id="PH" equiv-text="secondsToTime(start)"/> ja loppuu kohtaan <x id="PH_1" equiv-text="secondsToTime(end)"/></target> |
11862 | <context-group purpose="location"> | 11424 | <context-group purpose="location"> |
11863 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11425 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11864 | <context context-type="linenumber">135</context> | 11426 | <context context-type="linenumber">135</context> |
@@ -11866,7 +11428,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11866 | </trans-unit> | 11428 | </trans-unit> |
11867 | <trans-unit id="2299077646120636288" datatype="html"> | 11429 | <trans-unit id="2299077646120636288" datatype="html"> |
11868 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source> | 11430 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source> |
11869 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | 11431 | <target state="translated">Video alkaa kohdasta <x id="PH" equiv-text="secondsToTime(start)"/></target> |
11870 | <context-group purpose="location"> | 11432 | <context-group purpose="location"> |
11871 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11433 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11872 | <context context-type="linenumber">139</context> | 11434 | <context context-type="linenumber">139</context> |
@@ -11874,7 +11436,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11874 | </trans-unit> | 11436 | </trans-unit> |
11875 | <trans-unit id="7209039243783736285" datatype="html"> | 11437 | <trans-unit id="7209039243783736285" datatype="html"> |
11876 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source> | 11438 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source> |
11877 | <target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | 11439 | <target state="translated">Video pysähtyy kohdassa <x id="PH" equiv-text="secondsToTime(end)"/></target> |
11878 | <context-group purpose="location"> | 11440 | <context-group purpose="location"> |
11879 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11441 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11880 | <context context-type="linenumber">143</context> | 11442 | <context context-type="linenumber">143</context> |
@@ -11882,7 +11444,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11882 | </trans-unit> | 11444 | </trans-unit> |
11883 | <trans-unit id="9127817756370915850" datatype="html"> | 11445 | <trans-unit id="9127817756370915850" datatype="html"> |
11884 | <source>Edit video</source> | 11446 | <source>Edit video</source> |
11885 | <target state="new">Edit video</target> | 11447 | <target state="translated">Muokkaa videota</target> |
11886 | <context-group purpose="location"> | 11448 | <context-group purpose="location"> |
11887 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> | 11449 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> |
11888 | <context context-type="linenumber">15</context> | 11450 | <context context-type="linenumber">15</context> |
@@ -11890,7 +11452,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11890 | </trans-unit> | 11452 | </trans-unit> |
11891 | <trans-unit id="5512208811126492983" datatype="html"> | 11453 | <trans-unit id="5512208811126492983" datatype="html"> |
11892 | <source>Report comment</source> | 11454 | <source>Report comment</source> |
11893 | <target state="new">Report comment</target> | 11455 | <target state="translated">Raportoi kommentti</target> |
11894 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group> | 11456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group> |
11895 | </trans-unit> | 11457 | </trans-unit> |
11896 | <trans-unit id="3691787517663044217" datatype="html"> | 11458 | <trans-unit id="3691787517663044217" datatype="html"> |
@@ -11942,8 +11504,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11942 | </context-group> | 11504 | </context-group> |
11943 | </trans-unit> | 11505 | </trans-unit> |
11944 | <trans-unit id="961774488937452220" datatype="html"> | 11506 | <trans-unit id="961774488937452220" datatype="html"> |
11945 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 11507 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
11946 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 11508 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
11947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> | 11509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> |
11948 | </trans-unit> | 11510 | </trans-unit> |
11949 | <trans-unit id="5761611056224181752" datatype="html"> | 11511 | <trans-unit id="5761611056224181752" datatype="html"> |
@@ -11963,12 +11525,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11963 | </trans-unit> | 11525 | </trans-unit> |
11964 | <trans-unit id="1755474755114288376" datatype="html"> | 11526 | <trans-unit id="1755474755114288376" datatype="html"> |
11965 | <source>Up Next</source> | 11527 | <source>Up Next</source> |
11966 | <target state="new">Up Next</target> | 11528 | <target state="translated">Seuraavaksi</target> |
11967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">424</context></context-group> | 11529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">424</context></context-group> |
11968 | </trans-unit> | 11530 | </trans-unit> |
11969 | <trans-unit id="2159130950882492111" datatype="html"> | 11531 | <trans-unit id="2159130950882492111" datatype="html"> |
11970 | <source>Cancel</source> | 11532 | <source>Cancel</source> |
11971 | <target state="new">Cancel</target> | 11533 | <target state="translated">Peruuta</target> |
11972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | 11534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> |
11973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group> | 11535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group> |
11974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group> | 11536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group> |
@@ -11998,67 +11560,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11998 | </trans-unit> | 11560 | </trans-unit> |
11999 | <trans-unit id="5856931617181450881" datatype="html"> | 11561 | <trans-unit id="5856931617181450881" datatype="html"> |
12000 | <source>Enter/exit fullscreen</source> | 11562 | <source>Enter/exit fullscreen</source> |
12001 | <target state="new">Enter/exit fullscreen</target> | 11563 | <target state="translated">Siirry tai poistu koko ruudun tilasta</target> |
12002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">716</context></context-group> | 11564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">716</context></context-group> |
12003 | </trans-unit> | 11565 | </trans-unit> |
12004 | <trans-unit id="2971009377468404076" datatype="html"> | 11566 | <trans-unit id="2971009377468404076" datatype="html"> |
12005 | <source>Play/Pause the video</source> | 11567 | <source>Play/Pause the video</source> |
12006 | <target state="new">Play/Pause the video</target> | 11568 | <target state="translated">Toista tai pysäytä video</target> |
12007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">717</context></context-group> | 11569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">717</context></context-group> |
12008 | </trans-unit> | 11570 | </trans-unit> |
12009 | <trans-unit id="4147087312411482964" datatype="html"> | 11571 | <trans-unit id="4147087312411482964" datatype="html"> |
12010 | <source>Mute/unmute the video</source> | 11572 | <source>Mute/unmute the video</source> |
12011 | <target state="new">Mute/unmute the video</target> | 11573 | <target state="translated">Mykistä tai poista mykistys</target> |
12012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">718</context></context-group> | 11574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">718</context></context-group> |
12013 | </trans-unit> | 11575 | </trans-unit> |
12014 | <trans-unit id="4791956574676305640" datatype="html"> | 11576 | <trans-unit id="4791956574676305640" datatype="html"> |
12015 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source> | 11577 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source> |
12016 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target> | 11578 | <target state="translated">Hyppää prosenttiin videosta: 0 on 0% ja 9 on 90%</target> |
12017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">720</context></context-group> | 11579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">720</context></context-group> |
12018 | </trans-unit> | 11580 | </trans-unit> |
12019 | <trans-unit id="3887762369650091344" datatype="html"> | 11581 | <trans-unit id="3887762369650091344" datatype="html"> |
12020 | <source>Increase the volume</source> | 11582 | <source>Increase the volume</source> |
12021 | <target state="new">Increase the volume</target> | 11583 | <target state="translated">Lisää äänenvoimakkuutta</target> |
12022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">722</context></context-group> | 11584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">722</context></context-group> |
12023 | </trans-unit> | 11585 | </trans-unit> |
12024 | <trans-unit id="1363382131573461910" datatype="html"> | 11586 | <trans-unit id="1363382131573461910" datatype="html"> |
12025 | <source>Decrease the volume</source> | 11587 | <source>Decrease the volume</source> |
12026 | <target state="new">Decrease the volume</target> | 11588 | <target state="translated">Alenna äänenvoimakkuutta</target> |
12027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">723</context></context-group> | 11589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">723</context></context-group> |
12028 | </trans-unit> | 11590 | </trans-unit> |
12029 | <trans-unit id="2541031516422557760" datatype="html"> | 11591 | <trans-unit id="2541031516422557760" datatype="html"> |
12030 | <source>Seek the video forward</source> | 11592 | <source>Seek the video forward</source> |
12031 | <target state="new">Seek the video forward</target> | 11593 | <target state="translated">Kelaa videota eteenpäin</target> |
12032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">725</context></context-group> | 11594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">725</context></context-group> |
12033 | </trans-unit> | 11595 | </trans-unit> |
12034 | <trans-unit id="8813023402019364882" datatype="html"> | 11596 | <trans-unit id="8813023402019364882" datatype="html"> |
12035 | <source>Seek the video backward</source> | 11597 | <source>Seek the video backward</source> |
12036 | <target state="new">Seek the video backward</target> | 11598 | <target state="translated">Kelaa videota taaksepäin</target> |
12037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">726</context></context-group> | 11599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">726</context></context-group> |
12038 | </trans-unit> | 11600 | </trans-unit> |
12039 | <trans-unit id="581757752202843950" datatype="html"> | 11601 | <trans-unit id="581757752202843950" datatype="html"> |
12040 | <source>Increase playback rate</source> | 11602 | <source>Increase playback rate</source> |
12041 | <target state="new">Increase playback rate</target> | 11603 | <target state="translated">Nopeuta videontoistoa</target> |
12042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">728</context></context-group> | 11604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">728</context></context-group> |
12043 | </trans-unit> | 11605 | </trans-unit> |
12044 | <trans-unit id="5467642834854681120" datatype="html"> | 11606 | <trans-unit id="5467642834854681120" datatype="html"> |
12045 | <source>Decrease playback rate</source> | 11607 | <source>Decrease playback rate</source> |
12046 | <target state="new">Decrease playback rate</target> | 11608 | <target state="translated">Hidasta videontoistoa</target> |
12047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">729</context></context-group> | 11609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">729</context></context-group> |
12048 | </trans-unit> | 11610 | </trans-unit> |
12049 | <trans-unit id="3860402955823859506" datatype="html"> | 11611 | <trans-unit id="3860402955823859506" datatype="html"> |
12050 | <source>Navigate in the video to the previous frame</source> | 11612 | <source>Navigate in the video to the previous frame</source> |
12051 | <target state="new">Navigate in the video to the previous frame</target> | 11613 | <target state="translated">Siirry aikaisempaan kehykseen</target> |
12052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">731</context></context-group> | 11614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">731</context></context-group> |
12053 | </trans-unit> | 11615 | </trans-unit> |
12054 | <trans-unit id="8232494782895420700" datatype="html"> | 11616 | <trans-unit id="8232494782895420700" datatype="html"> |
12055 | <source>Navigate in the video to the next frame</source> | 11617 | <source>Navigate in the video to the next frame</source> |
12056 | <target state="new">Navigate in the video to the next frame</target> | 11618 | <target state="translated">Siirry seuraavaan kehykseen</target> |
12057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">732</context></context-group> | 11619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">732</context></context-group> |
12058 | </trans-unit> | 11620 | </trans-unit> |
12059 | <trans-unit id="8223917068580581095" datatype="html"> | 11621 | <trans-unit id="8223917068580581095" datatype="html"> |
12060 | <source>Toggle theater mode</source> | 11622 | <source>Toggle theater mode</source> |
12061 | <target state="new">Toggle theater mode</target> | 11623 | <target state="translated">Teatteritila</target> |
12062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">737</context></context-group> | 11624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">737</context></context-group> |
12063 | </trans-unit> | 11625 | </trans-unit> |
12064 | <trans-unit id="8025996572234182184"> | 11626 | <trans-unit id="8025996572234182184"> |
@@ -12073,12 +11635,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
12073 | </trans-unit> | 11635 | </trans-unit> |
12074 | <trans-unit id="1729036051846673606" datatype="html"> | 11636 | <trans-unit id="1729036051846673606" datatype="html"> |
12075 | <source>When active, the next video is automatically played after the current one.</source> | 11637 | <source>When active, the next video is automatically played after the current one.</source> |
12076 | <target state="new">When active, the next video is automatically played after the current one.</target> | 11638 | <target state="translated">Kun aktiivinen, seuraava video toistetaan automaattisesti nykyisen jälkeen.</target> |
12077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">50</context></context-group> | 11639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">50</context></context-group> |
12078 | </trans-unit> | 11640 | </trans-unit> |
12079 | <trans-unit id="2431286785954354122" datatype="html"> | 11641 | <trans-unit id="2431286785954354122" datatype="html"> |
12080 | <source>Recently added</source> | 11642 | <source>Recently added</source> |
12081 | <target state="new">Recently added</target> | 11643 | <target state="translated">Viimeksi lisätty</target> |
12082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">195</context></context-group> | 11644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">195</context></context-group> |
12083 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> | 11645 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> |
12084 | </trans-unit> | 11646 | </trans-unit> |
@@ -12089,7 +11651,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
12089 | </trans-unit> | 11651 | </trans-unit> |
12090 | <trans-unit id="1812379335568847528" datatype="html"> | 11652 | <trans-unit id="1812379335568847528" datatype="html"> |
12091 | <source>Subscriptions</source> | 11653 | <source>Subscriptions</source> |
12092 | <target state="new">Subscriptions</target> | 11654 | <target state="translated">Tilaukset</target> |
12093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">67</context></context-group> | 11655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">67</context></context-group> |
12094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">25</context></context-group> | 11656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">25</context></context-group> |
12095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">56</context></context-group> | 11657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">56</context></context-group> |
@@ -12097,13 +11659,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
12097 | </trans-unit> | 11659 | </trans-unit> |
12098 | <trans-unit id="186236568870281953" datatype="html"> | 11660 | <trans-unit id="186236568870281953" datatype="html"> |
12099 | <source>History</source> | 11661 | <source>History</source> |
12100 | <target state="new">History</target> | 11662 | <target state="translated">Historia</target> |
12101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">80</context></context-group> | 11663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">80</context></context-group> |
12102 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group> | 11664 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group> |
12103 | </trans-unit> | 11665 | </trans-unit> |
12104 | <trans-unit id="5237588857224999862" datatype="html"> | 11666 | <trans-unit id="5237588857224999862" datatype="html"> |
12105 | <source>Open actions</source> | 11667 | <source>Open actions</source> |
12106 | <target state="new">Open actions</target> | 11668 | <target state="translated">Avaa toiminnot</target> |
12107 | <context-group purpose="location"> | 11669 | <context-group purpose="location"> |
12108 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> | 11670 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> |
12109 | <context context-type="linenumber">4</context> | 11671 | <context context-type="linenumber">4</context> |
@@ -12111,7 +11673,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
12111 | </trans-unit> | 11673 | </trans-unit> |
12112 | <trans-unit id="8681933925782924101" datatype="html"> | 11674 | <trans-unit id="8681933925782924101" datatype="html"> |
12113 | <source>Local videos</source> | 11675 | <source>Local videos</source> |
12114 | <target state="new">Local videos</target> | 11676 | <target state="translated">Paikalliset videot</target> |
12115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">89</context></context-group> | 11677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">89</context></context-group> |
12116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">189</context></context-group> | 11678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">189</context></context-group> |
12117 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | 11679 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> |
@@ -12119,7 +11681,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
12119 | </trans-unit> | 11681 | </trans-unit> |
12120 | <trans-unit id="5668077948386857930" datatype="html"> | 11682 | <trans-unit id="5668077948386857930" datatype="html"> |
12121 | <source>Exclude</source> | 11683 | <source>Exclude</source> |
12122 | <target state="new">Exclude</target> | 11684 | <target state="translated">Poissulje</target> |
12123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">95</context></context-group> | 11685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">95</context></context-group> |
12124 | </trans-unit> | 11686 | </trans-unit> |
12125 | <trans-unit id="7147755274837297932" datatype="html"> | 11687 | <trans-unit id="7147755274837297932" datatype="html"> |
@@ -12153,28 +11715,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
12153 | </trans-unit> | 11715 | </trans-unit> |
12154 | <trans-unit id="4668975178372693951" datatype="html"> | 11716 | <trans-unit id="4668975178372693951" datatype="html"> |
12155 | <source>Discover videos</source> | 11717 | <source>Discover videos</source> |
12156 | <target state="new">Discover videos</target> | 11718 | <target state="translated">Löydä videoita</target> |
12157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">17</context></context-group> | 11719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">17</context></context-group> |
12158 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> | 11720 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> |
12159 | </trans-unit> | 11721 | </trans-unit> |
12160 | <trans-unit id="8067135025051844577" datatype="html"> | 11722 | <trans-unit id="8067135025051844577" datatype="html"> |
12161 | <source>Trending videos</source> | 11723 | <source>Trending videos</source> |
12162 | <target state="new">Trending videos</target> | 11724 | <target state="translated">Trendaavat videot</target> |
12163 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | 11725 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> |
12164 | </trans-unit> | 11726 | </trans-unit> |
12165 | <trans-unit id="664221386829541948" datatype="html"> | 11727 | <trans-unit id="664221386829541948" datatype="html"> |
12166 | <source>Recently added videos</source> | 11728 | <source>Recently added videos</source> |
12167 | <target state="new">Recently added videos</target> | 11729 | <target state="translated">Viimeksi lisätyt videot</target> |
12168 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | 11730 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> |
12169 | </trans-unit> | 11731 | </trans-unit> |
12170 | <trans-unit id="8212906256415538361" datatype="html"> | 11732 | <trans-unit id="8212906256415538361" datatype="html"> |
12171 | <source>Upload a video</source> | 11733 | <source>Upload a video</source> |
12172 | <target state="new">Upload a video</target> | 11734 | <target state="translated">Lataa video</target> |
12173 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">101</context></context-group> | 11735 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">101</context></context-group> |
12174 | </trans-unit> | 11736 | </trans-unit> |
12175 | <trans-unit id="7590784934397800835" datatype="html"> | 11737 | <trans-unit id="7590784934397800835" datatype="html"> |
12176 | <source>Edit a video</source> | 11738 | <source>Edit a video</source> |
12177 | <target state="new">Edit a video</target> | 11739 | <target state="translated">Muokkaa videota</target> |
12178 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">110</context></context-group> | 11740 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">110</context></context-group> |
12179 | </trans-unit> | 11741 | </trans-unit> |
12180 | </body> | 11742 | </body> |
diff --git a/client/src/locale/angular.fr.xlf b/client/src/locale/angular.fr.xlf index f3533bb99..1260fad06 100644 --- a/client/src/locale/angular.fr.xlf +++ b/client/src/locale/angular.fr.xlf | |||
@@ -180,7 +180,7 @@ | |||
180 | </trans-unit> | 180 | </trans-unit> |
181 | <trans-unit id="8901933019590352016" datatype="html"> | 181 | <trans-unit id="8901933019590352016" datatype="html"> |
182 | <source>You enabled user registration on your instance but did not configure the following fields:</source> | 182 | <source>You enabled user registration on your instance but did not configure the following fields:</source> |
183 | <target>Vous avez activé l'enregistrement des utilisateurs sur votre instance mais n'avez pas configuré les champs suivants :</target> | 183 | <target>Vous avez activé l’enregistrement des utilisateurs sur votre instance mais n’avez pas configuré les champs suivants :</target> |
184 | <context-group purpose="location"> | 184 | <context-group purpose="location"> |
185 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 185 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
186 | <context context-type="linenumber">10</context> | 186 | <context context-type="linenumber">10</context> |
@@ -188,7 +188,7 @@ | |||
188 | </trans-unit> | 188 | </trans-unit> |
189 | <trans-unit id="5330788940795142335" datatype="html"> | 189 | <trans-unit id="5330788940795142335" datatype="html"> |
190 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. Without them, your instance may not be referenced on the <x id="START_LINK" ctype="x-a" equiv-text="<a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">"/>JoinPeerTube website<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 190 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. Without them, your instance may not be referenced on the <x id="START_LINK" ctype="x-a" equiv-text="<a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">"/>JoinPeerTube website<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
191 | <target>Veuillez ne pas oublier de configurer ces champs pour aider des gens à choisir <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>l'instance appropriée<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. Sans eux, votre instance pourrait ne pas être référencée sur le <x id="START_LINK" ctype="x-a" equiv-text="<a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">"/>site web de JoinPeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 191 | <target>Veuillez ne pas oublier de configurer ces champs pour aider des gens à choisir <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>l’instance appropriée<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. Sans eux, votre instance pourrait ne pas être référencée sur le <x id="START_LINK" ctype="x-a" equiv-text="<a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">"/>site web de JoinPeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
192 | <context-group purpose="location"> | 192 | <context-group purpose="location"> |
193 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 193 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
194 | <context context-type="linenumber">25,27</context> | 194 | <context context-type="linenumber">25,27</context> |
@@ -224,7 +224,7 @@ | |||
224 | </trans-unit> | 224 | </trans-unit> |
225 | <trans-unit id="8948444690892731948" datatype="html"> | 225 | <trans-unit id="8948444690892731948" datatype="html"> |
226 | <source>Instance name</source> | 226 | <source>Instance name</source> |
227 | <target>Nom de l'instance</target> | 227 | <target>Nom de l’instance</target> |
228 | <context-group purpose="location"> | 228 | <context-group purpose="location"> |
229 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 229 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
230 | <context context-type="linenumber">13</context> | 230 | <context context-type="linenumber">13</context> |
@@ -232,7 +232,7 @@ | |||
232 | </trans-unit> | 232 | </trans-unit> |
233 | <trans-unit id="966824924873033885" datatype="html"> | 233 | <trans-unit id="966824924873033885" datatype="html"> |
234 | <source>Instance short description</source> | 234 | <source>Instance short description</source> |
235 | <target>Courte description de l'instance</target> | 235 | <target>Courte description de l’instance</target> |
236 | <context-group purpose="location"> | 236 | <context-group purpose="location"> |
237 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 237 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
238 | <context context-type="linenumber">14</context> | 238 | <context context-type="linenumber">14</context> |
@@ -272,7 +272,7 @@ | |||
272 | </trans-unit> | 272 | </trans-unit> |
273 | <trans-unit id="5032335000394561521" datatype="html"> | 273 | <trans-unit id="5032335000394561521" datatype="html"> |
274 | <source>Instance terms</source> | 274 | <source>Instance terms</source> |
275 | <target>Conditions de l'instance</target> | 275 | <target>Conditions de l’instance</target> |
276 | <context-group purpose="location"> | 276 | <context-group purpose="location"> |
277 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 277 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
278 | <context context-type="linenumber">21</context> | 278 | <context context-type="linenumber">21</context> |
@@ -292,7 +292,7 @@ | |||
292 | </trans-unit> | 292 | </trans-unit> |
293 | <trans-unit id="1420294365005204590" datatype="html"> | 293 | <trans-unit id="1420294365005204590" datatype="html"> |
294 | <source>These settings apply only to your session on this instance.</source> | 294 | <source>These settings apply only to your session on this instance.</source> |
295 | <target>Ces paramètres s'appliquent seulement à votre session sur cette instance.</target> | 295 | <target>Ces paramètres s’appliquent seulement à votre session sur cette instance.</target> |
296 | <context-group purpose="location"> | 296 | <context-group purpose="location"> |
297 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 297 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
298 | <context context-type="linenumber">8</context> | 298 | <context context-type="linenumber">8</context> |
@@ -300,7 +300,7 @@ | |||
300 | </trans-unit> | 300 | </trans-unit> |
301 | <trans-unit id="4786000816576841850" datatype="html"> | 301 | <trans-unit id="4786000816576841850" datatype="html"> |
302 | <source>Display settings</source> | 302 | <source>Display settings</source> |
303 | <target>Paramètres d'affichage</target> | 303 | <target>Paramètres d’affichage</target> |
304 | <context-group purpose="location"> | 304 | <context-group purpose="location"> |
305 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 305 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
306 | <context context-type="linenumber">10</context> | 306 | <context context-type="linenumber">10</context> |
@@ -308,7 +308,7 @@ | |||
308 | </trans-unit> | 308 | </trans-unit> |
309 | <trans-unit id="1288210794011686132" datatype="html"> | 309 | <trans-unit id="1288210794011686132" datatype="html"> |
310 | <source>Interface settings</source> | 310 | <source>Interface settings</source> |
311 | <target>Paramètres de l'interface</target> | 311 | <target>Paramètres de l’interface</target> |
312 | <context-group purpose="location"> | 312 | <context-group purpose="location"> |
313 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 313 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
314 | <context context-type="linenumber">22</context> | 314 | <context context-type="linenumber">22</context> |
@@ -340,7 +340,7 @@ | |||
340 | </trans-unit> | 340 | </trans-unit> |
341 | <trans-unit id="199127249622290422" datatype="html"> | 341 | <trans-unit id="199127249622290422" datatype="html"> |
342 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 342 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
343 | <target>Téléverser ou importer des vidéos, parcourir les logs, nettoyer les dossier de stockage, réinitialiser les mots de passe des utilisateurs...</target> | 343 | <target>Téléverser ou importer des vidéos, parcourir les logs, nettoyer les dossier de stockage, réinitialiser les mots de passe des utilisateurs…</target> |
344 | <context-group purpose="location"> | 344 | <context-group purpose="location"> |
345 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 345 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
346 | <context context-type="linenumber">15</context> | 346 | <context context-type="linenumber">15</context> |
@@ -348,7 +348,7 @@ | |||
348 | </trans-unit> | 348 | </trans-unit> |
349 | <trans-unit id="249453844439446209" datatype="html"> | 349 | <trans-unit id="249453844439446209" datatype="html"> |
350 | <source>Administer documentation</source> | 350 | <source>Administer documentation</source> |
351 | <target>Documentation sur l'administration</target> | 351 | <target>Documentation sur l’administration</target> |
352 | <context-group purpose="location"> | 352 | <context-group purpose="location"> |
353 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 353 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
354 | <context context-type="linenumber">19,20</context> | 354 | <context context-type="linenumber">19,20</context> |
@@ -356,7 +356,7 @@ | |||
356 | </trans-unit> | 356 | </trans-unit> |
357 | <trans-unit id="5910950876330656326" datatype="html"> | 357 | <trans-unit id="5910950876330656326" datatype="html"> |
358 | <source>Managing users, following other instances, dealing with spammers...</source> | 358 | <source>Managing users, following other instances, dealing with spammers...</source> |
359 | <target>Gérer les utilisateurs, s'abonner à d'autres instances, gérer les spammeurs...</target> | 359 | <target>Gérer les utilisateurs, s’abonner à d’autres instances, gérer les spammeurs…</target> |
360 | <context-group purpose="location"> | 360 | <context-group purpose="location"> |
361 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 361 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
362 | <context context-type="linenumber">22</context> | 362 | <context context-type="linenumber">22</context> |
@@ -364,7 +364,7 @@ | |||
364 | </trans-unit> | 364 | </trans-unit> |
365 | <trans-unit id="879127294610588497" datatype="html"> | 365 | <trans-unit id="879127294610588497" datatype="html"> |
366 | <source>Use documentation</source> | 366 | <source>Use documentation</source> |
367 | <target>Documentation d'utilisation</target> | 367 | <target>Documentation d’utilisation</target> |
368 | <context-group purpose="location"> | 368 | <context-group purpose="location"> |
369 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 369 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
370 | <context context-type="linenumber">26,27</context> | 370 | <context context-type="linenumber">26,27</context> |
@@ -372,7 +372,7 @@ | |||
372 | </trans-unit> | 372 | </trans-unit> |
373 | <trans-unit id="3848077896245199337" datatype="html"> | 373 | <trans-unit id="3848077896245199337" datatype="html"> |
374 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 374 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
375 | <target>Paramétrer votre compte, gérer vos listes de lecture, découvrir des applications tierces...</target> | 375 | <target>Paramétrer votre compte, gérer vos listes de lecture, découvrir des applications tierces…</target> |
376 | <context-group purpose="location"> | 376 | <context-group purpose="location"> |
377 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 377 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
378 | <context context-type="linenumber">29</context> | 378 | <context context-type="linenumber">29</context> |
@@ -388,7 +388,7 @@ | |||
388 | </trans-unit> | 388 | </trans-unit> |
389 | <trans-unit id="5170617864166788170" datatype="html"> | 389 | <trans-unit id="5170617864166788170" datatype="html"> |
390 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://joinpeertube.org" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 390 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://joinpeertube.org" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
391 | <target state="translated">Site web officiel de PeerTube (infos, aide, contribuer...) : <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://joinpeertube.org" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 391 | <target state="translated">Site web officiel de PeerTube (infos, aide, contribuer…) : <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://joinpeertube.org" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
392 | <context-group purpose="location"> | 392 | <context-group purpose="location"> |
393 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 393 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
394 | <context context-type="linenumber">42,43</context> | 394 | <context context-type="linenumber">42,43</context> |
@@ -396,7 +396,7 @@ | |||
396 | </trans-unit> | 396 | </trans-unit> |
397 | <trans-unit id="4614992717645869756" datatype="html"> | 397 | <trans-unit id="4614992717645869756" datatype="html"> |
398 | <source>Put your instance on the public PeerTube index: <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://instances.joinpeertube.org/instances">"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 398 | <source>Put your instance on the public PeerTube index: <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://instances.joinpeertube.org/instances">"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
399 | <target>Ajoutez votre instance à l'index PeerTube public : <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://instances.joinpeertube.org/instances">"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 399 | <target>Ajoutez votre instance à l’index PeerTube public : <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://instances.joinpeertube.org/instances">"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
400 | <context-group purpose="location"> | 400 | <context-group purpose="location"> |
401 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 401 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
402 | <context context-type="linenumber">45</context> | 402 | <context context-type="linenumber">45</context> |
@@ -404,7 +404,7 @@ | |||
404 | </trans-unit> | 404 | </trans-unit> |
405 | <trans-unit id="2081626998027585315" datatype="html"> | 405 | <trans-unit id="2081626998027585315" datatype="html"> |
406 | <source>It's time to configure your instance!</source> | 406 | <source>It's time to configure your instance!</source> |
407 | <target>C'est le moment de configurer votre instance !</target> | 407 | <target>C’est le moment de configurer votre instance !</target> |
408 | <context-group purpose="location"> | 408 | <context-group purpose="location"> |
409 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 409 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
410 | <context context-type="linenumber">55</context> | 410 | <context context-type="linenumber">55</context> |
@@ -412,7 +412,7 @@ | |||
412 | </trans-unit> | 412 | </trans-unit> |
413 | <trans-unit id="5083058563861587027" datatype="html"> | 413 | <trans-unit id="5083058563861587027" datatype="html"> |
414 | <source>Choosing your <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance name<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>setting up a description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, specifying <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, why <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>you created your instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> and <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>how long<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> you plan to <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>maintain your it<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> is very important for visitors to understand on what type of instance they are. </source> | 414 | <source>Choosing your <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance name<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>setting up a description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, specifying <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, why <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>you created your instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> and <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>how long<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> you plan to <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>maintain your it<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> is very important for visitors to understand on what type of instance they are. </source> |
415 | <target>Choisir le <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>nom de votre instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>rédiger une description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, renseigner <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>qui vous êtes<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, pourquoi <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>vous avez créé votre instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> et <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>combien de temps<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> vous prévoyez de <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>la maintenir<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> est très important pour que les visiteurs comprennent sur quel type d'instance ils se trouvent. </target> | 415 | <target>Choisir le <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>nom de votre instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>rédiger une description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, renseigner <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>qui vous êtes<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, pourquoi <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>vous avez créé votre instance<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> et <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>combien de temps<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> vous prévoyez de <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>la maintenir<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> est très important pour que les visiteurs comprennent sur quel type d’instance ils se trouvent. </target> |
416 | <context-group purpose="location"> | 416 | <context-group purpose="location"> |
417 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 417 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
418 | <context context-type="linenumber">58,61</context> | 418 | <context context-type="linenumber">58,61</context> |
@@ -420,7 +420,7 @@ | |||
420 | </trans-unit> | 420 | </trans-unit> |
421 | <trans-unit id="5329436244765769292" datatype="html"> | 421 | <trans-unit id="5329436244765769292" datatype="html"> |
422 | <source>If you want to open registrations, please decide what <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>your moderation rules<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> and <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance terms of service<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> PeerTube instance. </source> | 422 | <source>If you want to open registrations, please decide what <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>your moderation rules<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> and <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance terms of service<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> PeerTube instance. </source> |
423 | <target>Si vous souhaitez ouvrir les inscriptions, veuillez décider quelles sont <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>vos règles de modération<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> et <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/> conditions d'utilisation<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, ainsi que les spécificités des catégories et langues que parlent vos modérateurs. Ainsi, vous aiderez vos utilisateurs à s'inscrire sur <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>l'instance PeerTube <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> appropriée. </target> | 423 | <target>Si vous souhaitez ouvrir les inscriptions, veuillez décider quelles sont <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>vos règles de modération<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> et <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/> conditions d’utilisation<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/>, ainsi que les spécificités des catégories et langues que parlent vos modérateurs. Ainsi, vous aiderez vos utilisateurs à s’inscrire sur <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>l’instance PeerTube <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong> "/> appropriée. </target> |
424 | <context-group purpose="location"> | 424 | <context-group purpose="location"> |
425 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> | 425 | <context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context> |
426 | <context context-type="linenumber">64,67</context> | 426 | <context context-type="linenumber">64,67</context> |
@@ -572,7 +572,7 @@ | |||
572 | </trans-unit> | 572 | </trans-unit> |
573 | <trans-unit id="8378304669563824772" datatype="html"> | 573 | <trans-unit id="8378304669563824772" datatype="html"> |
574 | <source>Get help using PeerTube</source> | 574 | <source>Get help using PeerTube</source> |
575 | <target>Obtenez de l'aide en utilisant PeerTube</target> | 575 | <target>Obtenez de l’aide en utilisant PeerTube</target> |
576 | <context-group purpose="location"> | 576 | <context-group purpose="location"> |
577 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 577 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
578 | <context context-type="linenumber">174</context> | 578 | <context context-type="linenumber">174</context> |
@@ -612,7 +612,7 @@ | |||
612 | </trans-unit> | 612 | </trans-unit> |
613 | <trans-unit id="3722967224215437913" datatype="html"> | 613 | <trans-unit id="3722967224215437913" datatype="html"> |
614 | <source>API documentation</source> | 614 | <source>API documentation</source> |
615 | <target>Documentation de l'API</target> | 615 | <target>Documentation de l’API</target> |
616 | <context-group purpose="location"> | 616 | <context-group purpose="location"> |
617 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 617 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
618 | <context context-type="linenumber">177</context> | 618 | <context context-type="linenumber">177</context> |
@@ -656,7 +656,7 @@ | |||
656 | </trans-unit> | 656 | </trans-unit> |
657 | <trans-unit id="7773271640656013365" datatype="html"> | 657 | <trans-unit id="7773271640656013365" datatype="html"> |
658 | <source>Interface:</source> | 658 | <source>Interface:</source> |
659 | <target>Interface :</target> | 659 | <target>Interface :</target> |
660 | <context-group purpose="location"> | 660 | <context-group purpose="location"> |
661 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 661 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
662 | <context context-type="linenumber">30</context> | 662 | <context context-type="linenumber">30</context> |
@@ -664,7 +664,7 @@ | |||
664 | </trans-unit> | 664 | </trans-unit> |
665 | <trans-unit id="1674139713929545659" datatype="html"> | 665 | <trans-unit id="1674139713929545659" datatype="html"> |
666 | <source>Videos:</source> | 666 | <source>Videos:</source> |
667 | <target>Vidéos :</target> | 667 | <target>Vidéos :</target> |
668 | <context-group purpose="location"> | 668 | <context-group purpose="location"> |
669 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 669 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
670 | <context context-type="linenumber">37</context> | 670 | <context context-type="linenumber">37</context> |
@@ -672,7 +672,7 @@ | |||
672 | </trans-unit> | 672 | </trans-unit> |
673 | <trans-unit id="9156407045661257130" datatype="html"> | 673 | <trans-unit id="9156407045661257130" datatype="html"> |
674 | <source>Sensitive:</source> | 674 | <source>Sensitive:</source> |
675 | <target>Sensible :</target> | 675 | <target>Sensible :</target> |
676 | <context-group purpose="location"> | 676 | <context-group purpose="location"> |
677 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 677 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
678 | <context context-type="linenumber">46</context> | 678 | <context context-type="linenumber">46</context> |
@@ -792,7 +792,7 @@ | |||
792 | </trans-unit> | 792 | </trans-unit> |
793 | <trans-unit id="2689878465089314112" datatype="html"> | 793 | <trans-unit id="2689878465089314112" datatype="html"> |
794 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 794 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
795 | <target>Interface : <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 795 | <target>Interface : <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
796 | <context-group purpose="location"> | 796 | <context-group purpose="location"> |
797 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 797 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
798 | <context context-type="linenumber">169</context> | 798 | <context context-type="linenumber">169</context> |
@@ -808,7 +808,7 @@ | |||
808 | </trans-unit> | 808 | </trans-unit> |
809 | <trans-unit id="4776289814033837037" datatype="html"> | 809 | <trans-unit id="4776289814033837037" datatype="html"> |
810 | <source>Interface settings updated.</source> | 810 | <source>Interface settings updated.</source> |
811 | <target>Paramètres d'interface mis à jour.</target> | 811 | <target>Paramètres d’interface mis à jour.</target> |
812 | <context-group purpose="location"> | 812 | <context-group purpose="location"> |
813 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context> | 813 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context> |
814 | <context context-type="linenumber">74</context> | 814 | <context context-type="linenumber">74</context> |
@@ -876,7 +876,7 @@ | |||
876 | </trans-unit> | 876 | </trans-unit> |
877 | <trans-unit id="2206638022166154361" datatype="html"> | 877 | <trans-unit id="2206638022166154361" datatype="html"> |
878 | <source>Keyboard Shortcuts:</source> | 878 | <source>Keyboard Shortcuts:</source> |
879 | <target>Raccourcis clavier :</target> | 879 | <target>Raccourcis clavier :</target> |
880 | <context-group purpose="location"> | 880 | <context-group purpose="location"> |
881 | <context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context> | 881 | <context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context> |
882 | <context context-type="linenumber">11</context> | 882 | <context context-type="linenumber">11</context> |
@@ -972,7 +972,7 @@ | |||
972 | </trans-unit> | 972 | </trans-unit> |
973 | <trans-unit id="4070041848101291003" datatype="html"> | 973 | <trans-unit id="4070041848101291003" datatype="html"> |
974 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> | 974 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> |
975 | <target>Les résultats seront complétés par ceux d'un index tiers. Seules les données nécessaires à la recherche seront envoyées.</target> | 975 | <target>Les résultats seront complétés par ceux d’un index tiers. Seules les données nécessaires à la recherche seront envoyées.</target> |
976 | <context-group purpose="location"> | 976 | <context-group purpose="location"> |
977 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 977 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
978 | <context context-type="linenumber">32</context> | 978 | <context context-type="linenumber">32</context> |
@@ -1032,7 +1032,7 @@ | |||
1032 | </trans-unit> | 1032 | </trans-unit> |
1033 | <trans-unit id="3416071273413341159" datatype="html"> | 1033 | <trans-unit id="3416071273413341159" datatype="html"> |
1034 | <source>any instance</source> | 1034 | <source>any instance</source> |
1035 | <target>n'importe quelle instance</target> | 1035 | <target>n’importe quelle instance</target> |
1036 | <context-group purpose="location"> | 1036 | <context-group purpose="location"> |
1037 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 1037 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
1038 | <context context-type="linenumber">41</context> | 1038 | <context context-type="linenumber">41</context> |
@@ -1092,7 +1092,7 @@ | |||
1092 | </trans-unit> | 1092 | </trans-unit> |
1093 | <trans-unit id="3326446048041727269" datatype="html"> | 1093 | <trans-unit id="3326446048041727269" datatype="html"> |
1094 | <source>Display/Video settings updated.</source> | 1094 | <source>Display/Video settings updated.</source> |
1095 | <target>Paramètres d'affichage et de vidéo mis à jour.</target> | 1095 | <target>Paramètres d’affichage et de vidéo mis à jour.</target> |
1096 | <context-group purpose="location"> | 1096 | <context-group purpose="location"> |
1097 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context> | 1097 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context> |
1098 | <context context-type="linenumber">140</context> | 1098 | <context context-type="linenumber">140</context> |
@@ -1188,7 +1188,7 @@ | |||
1188 | </trans-unit> | 1188 | </trans-unit> |
1189 | <trans-unit id="8953934448427251062" datatype="html"> | 1189 | <trans-unit id="8953934448427251062" datatype="html"> |
1190 | <source>The <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/about/peertube" fragment="privacy">"/>sharing system<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> | 1190 | <source>The <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/about/peertube" fragment="privacy">"/>sharing system<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> |
1191 | <target>Le <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/about/peertube" fragment="privacy">"/>système de partage<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> implique que certaines informations techniques sur votre système (comme une adresse IP publique) peuvent être envoyées à d'autres pairs, mais contribue grandement à réduire la charge du serveur.</target> | 1191 | <target>Le <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/about/peertube" fragment="privacy">"/>système de partage<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> implique que certaines informations techniques sur votre système (comme une adresse IP publique) peuvent être envoyées à d’autres pairs, mais contribue grandement à réduire la charge du serveur.</target> |
1192 | <context-group purpose="location"> | 1192 | <context-group purpose="location"> |
1193 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> | 1193 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> |
1194 | <context context-type="linenumber">50</context> | 1194 | <context context-type="linenumber">50</context> |
@@ -1204,7 +1204,7 @@ | |||
1204 | </trans-unit> | 1204 | </trans-unit> |
1205 | <trans-unit id="6236140336967052987" datatype="html"> | 1205 | <trans-unit id="6236140336967052987" datatype="html"> |
1206 | <source>When on a video page, directly start playing the video.</source> | 1206 | <source>When on a video page, directly start playing the video.</source> |
1207 | <target>Sur la page d'une vidéo, démarrer immédiatement la lecture.</target> | 1207 | <target>Sur la page d’une vidéo, démarrer immédiatement la lecture.</target> |
1208 | <context-group purpose="location"> | 1208 | <context-group purpose="location"> |
1209 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> | 1209 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> |
1210 | <context context-type="linenumber">61</context> | 1210 | <context context-type="linenumber">61</context> |
@@ -1260,7 +1260,7 @@ | |||
1260 | </trans-unit> | 1260 | </trans-unit> |
1261 | <trans-unit id="3334825601859787496" datatype="html"> | 1261 | <trans-unit id="3334825601859787496" datatype="html"> |
1262 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 1262 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
1263 | <target>Votre <x id="PH" equiv-text="name"/> fichier n'a pas pu être transféré avant le délai fixé (généralement 10min)</target> | 1263 | <target>Votre <x id="PH" equiv-text="name"/> fichier n’a pas pu être transféré avant le délai fixé (généralement 10 min)</target> |
1264 | <context-group purpose="location"> | 1264 | <context-group purpose="location"> |
1265 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 1265 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
1266 | <context context-type="linenumber">192</context> | 1266 | <context context-type="linenumber">192</context> |
@@ -1268,7 +1268,7 @@ | |||
1268 | </trans-unit> | 1268 | </trans-unit> |
1269 | <trans-unit id="8530934870279569179" datatype="html"> | 1269 | <trans-unit id="8530934870279569179" datatype="html"> |
1270 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 1270 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
1271 | <target>Votre <x id="PH" equiv-text="name"/> fichier est trop volumineux (taille max. : <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 1271 | <target>Votre <x id="PH" equiv-text="name"/> fichier est trop volumineux (taille max. : <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
1272 | <context-group purpose="location"> | 1272 | <context-group purpose="location"> |
1273 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 1273 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
1274 | <context context-type="linenumber">196</context> | 1274 | <context context-type="linenumber">196</context> |
@@ -1276,7 +1276,7 @@ | |||
1276 | </trans-unit> | 1276 | </trans-unit> |
1277 | <trans-unit id="9082008222523034483" datatype="html"> | 1277 | <trans-unit id="9082008222523034483" datatype="html"> |
1278 | <source>Get help</source> | 1278 | <source>Get help</source> |
1279 | <target>Obtenir de l'aide</target> | 1279 | <target>Obtenir de l’aide</target> |
1280 | <context-group purpose="location"> | 1280 | <context-group purpose="location"> |
1281 | <context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context> | 1281 | <context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context> |
1282 | <context context-type="linenumber">16</context> | 1282 | <context context-type="linenumber">16</context> |
@@ -1284,7 +1284,7 @@ | |||
1284 | </trans-unit> | 1284 | </trans-unit> |
1285 | <trans-unit id="8644431249513874405" datatype="html"> | 1285 | <trans-unit id="8644431249513874405" datatype="html"> |
1286 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 1286 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
1287 | <target><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible qui supporte :</target> | 1287 | <target><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible qui supporte :</target> |
1288 | <context-group purpose="location"> | 1288 | <context-group purpose="location"> |
1289 | <context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context> | 1289 | <context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context> |
1290 | <context context-type="linenumber">75</context> | 1290 | <context context-type="linenumber">75</context> |
@@ -1360,7 +1360,7 @@ | |||
1360 | </trans-unit> | 1360 | </trans-unit> |
1361 | <trans-unit id="6489275254908395777" datatype="html"> | 1361 | <trans-unit id="6489275254908395777" datatype="html"> |
1362 | <source>Maximize editor</source> | 1362 | <source>Maximize editor</source> |
1363 | <target>Agrandir l'éditeur</target> | 1363 | <target>Agrandir l’éditeur</target> |
1364 | <context-group purpose="location"> | 1364 | <context-group purpose="location"> |
1365 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> | 1365 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> |
1366 | <context context-type="linenumber">38</context> | 1366 | <context context-type="linenumber">38</context> |
@@ -1368,7 +1368,7 @@ | |||
1368 | </trans-unit> | 1368 | </trans-unit> |
1369 | <trans-unit id="4243591013849340688" datatype="html"> | 1369 | <trans-unit id="4243591013849340688" datatype="html"> |
1370 | <source>Exit maximized editor</source> | 1370 | <source>Exit maximized editor</source> |
1371 | <target>Sortir de l'éditeur agrandi</target> | 1371 | <target>Sortir de l’éditeur agrandi</target> |
1372 | <context-group purpose="location"> | 1372 | <context-group purpose="location"> |
1373 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> | 1373 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> |
1374 | <context context-type="linenumber">39</context> | 1374 | <context context-type="linenumber">39</context> |
@@ -1537,7 +1537,7 @@ | |||
1537 | </trans-unit> | 1537 | </trans-unit> |
1538 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 1538 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
1539 | <source>Select year</source> | 1539 | <source>Select year</source> |
1540 | <target>Sélectionner l'année</target> | 1540 | <target>Sélectionner l’année</target> |
1541 | <context-group purpose="location"> | 1541 | <context-group purpose="location"> |
1542 | <context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context> | 1542 | <context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context> |
1543 | <context context-type="linenumber">59,63</context> | 1543 | <context context-type="linenumber">59,63</context> |
@@ -1773,7 +1773,7 @@ | |||
1773 | </trans-unit> | 1773 | </trans-unit> |
1774 | <trans-unit id="2013324644839511073" datatype="html"> | 1774 | <trans-unit id="2013324644839511073" datatype="html"> |
1775 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 1775 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
1776 | <target>Impossible de récupérer les identifiants du Client OAuth : <x id="PH" equiv-text="error.text"/>. Assurez-vous d'avoir correctement configuré PeerTube (dossier config/), en particulier la section "serveur web".</target> | 1776 | <target>Impossible de récupérer les identifiants du Client OAuth : <x id="PH" equiv-text="error.text"/>. Assurez-vous d’avoir correctement configuré PeerTube (dossier config/), en particulier la section « serveur web ».</target> |
1777 | <context-group purpose="location"> | 1777 | <context-group purpose="location"> |
1778 | <context context-type="sourcefile">src/app/core/auth/auth.service.ts</context> | 1778 | <context context-type="sourcefile">src/app/core/auth/auth.service.ts</context> |
1779 | <context context-type="linenumber">99,100</context> | 1779 | <context context-type="linenumber">99,100</context> |
@@ -1921,7 +1921,7 @@ | |||
1921 | </trans-unit> | 1921 | </trans-unit> |
1922 | <trans-unit id="4965472196059235310" datatype="html"> | 1922 | <trans-unit id="4965472196059235310" datatype="html"> |
1923 | <source>Too many attempts, please try again later.</source> | 1923 | <source>Too many attempts, please try again later.</source> |
1924 | <target>Trop d'essais. Merci de réessayer plus tard.</target> | 1924 | <target>Trop d’essais. Merci de réessayer plus tard.</target> |
1925 | <context-group purpose="location"> | 1925 | <context-group purpose="location"> |
1926 | <context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context> | 1926 | <context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context> |
1927 | <context context-type="linenumber">69</context> | 1927 | <context context-type="linenumber">69</context> |
@@ -2041,7 +2041,7 @@ | |||
2041 | </trans-unit> | 2041 | </trans-unit> |
2042 | <trans-unit id="4733690367258997247" datatype="html"> | 2042 | <trans-unit id="4733690367258997247" datatype="html"> |
2043 | <source>just now</source> | 2043 | <source>just now</source> |
2044 | <target state="translated">à l'instant</target> | 2044 | <target state="translated">à l’instant</target> |
2045 | <context-group purpose="location"> | 2045 | <context-group purpose="location"> |
2046 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 2046 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
2047 | <context context-type="linenumber">34</context> | 2047 | <context context-type="linenumber">34</context> |
@@ -2185,7 +2185,7 @@ | |||
2185 | </trans-unit> | 2185 | </trans-unit> |
2186 | <trans-unit id="9075761896562520962" datatype="html"> | 2186 | <trans-unit id="9075761896562520962" datatype="html"> |
2187 | <source>You don't have notifications.</source> | 2187 | <source>You don't have notifications.</source> |
2188 | <target>Vous n'avez pas de notifications.</target> | 2188 | <target>Vous n’avez pas de notifications.</target> |
2189 | <context-group purpose="location"> | 2189 | <context-group purpose="location"> |
2190 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 2190 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
2191 | <context context-type="linenumber">1</context> | 2191 | <context context-type="linenumber">1</context> |
@@ -2193,7 +2193,7 @@ | |||
2193 | </trans-unit> | 2193 | </trans-unit> |
2194 | <trans-unit id="3780281836273462589" datatype="html"> | 2194 | <trans-unit id="3780281836273462589" datatype="html"> |
2195 | <source><x id="INTERPOLATION" equiv-text=" {{ notification.video.channel.di"/> published a new video: <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">"/><x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 2195 | <source><x id="INTERPOLATION" equiv-text=" {{ notification.video.channel.di"/> published a new video: <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">"/><x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
2196 | <target><x id="INTERPOLATION" equiv-text=" {{ notification.video.channel.di"/> a publié une nouvelle vidéo : <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">"/><x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2196 | <target><x id="INTERPOLATION" equiv-text=" {{ notification.video.channel.di"/> a publié une nouvelle vidéo : <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">"/><x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
2197 | <context-group purpose="location"> | 2197 | <context-group purpose="location"> |
2198 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 2198 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
2199 | <context context-type="linenumber">15,16</context> | 2199 | <context context-type="linenumber">15,16</context> |
@@ -2305,7 +2305,7 @@ | |||
2305 | </trans-unit> | 2305 | </trans-unit> |
2306 | <trans-unit id="7130219900907848048" datatype="html"> | 2306 | <trans-unit id="7130219900907848048" datatype="html"> |
2307 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl || notification.videoImportUrl">"/>Your video import<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> succeeded </source> | 2307 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl || notification.videoImportUrl">"/>Your video import<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> succeeded </source> |
2308 | <target><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl || notification.videoImportUrl">"/>L'import de votre vidéo<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> a réussi </target> | 2308 | <target><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl || notification.videoImportUrl">"/>L’import de votre vidéo<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> a réussi </target> |
2309 | <context-group purpose="location"> | 2309 | <context-group purpose="location"> |
2310 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 2310 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
2311 | <context context-type="linenumber">126,127</context> | 2311 | <context context-type="linenumber">126,127</context> |
@@ -2313,7 +2313,7 @@ | |||
2313 | </trans-unit> | 2313 | </trans-unit> |
2314 | <trans-unit id="2099623308096969132" datatype="html"> | 2314 | <trans-unit id="2099623308096969132" datatype="html"> |
2315 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoImportUrl">"/>Your video import<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> failed </source> | 2315 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoImportUrl">"/>Your video import<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> failed </source> |
2316 | <target><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoImportUrl">"/>L'import de votre vidéo<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> a échoué </target> | 2316 | <target><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.videoImportUrl">"/>L’import de votre vidéo<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> a échoué </target> |
2317 | <context-group purpose="location"> | 2317 | <context-group purpose="location"> |
2318 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 2318 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
2319 | <context context-type="linenumber">134,135</context> | 2319 | <context context-type="linenumber">134,135</context> |
@@ -2321,7 +2321,7 @@ | |||
2321 | </trans-unit> | 2321 | </trans-unit> |
2322 | <trans-unit id="3371351937331192777" datatype="html"> | 2322 | <trans-unit id="3371351937331192777" datatype="html"> |
2323 | <source>User <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> registered on your instance </source> | 2323 | <source>User <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> registered on your instance </source> |
2324 | <target>L'utilisateur <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> enregistré sur votre instance </target> | 2324 | <target>L’utilisateur <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> enregistré sur votre instance </target> |
2325 | <context-group purpose="location"> | 2325 | <context-group purpose="location"> |
2326 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 2326 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
2327 | <context context-type="linenumber">142,143</context> | 2327 | <context context-type="linenumber">142,143</context> |
@@ -2421,7 +2421,7 @@ | |||
2421 | </trans-unit> | 2421 | </trans-unit> |
2422 | <trans-unit id="8411430224810427392" datatype="html"> | 2422 | <trans-unit id="8411430224810427392" datatype="html"> |
2423 | <source>Remove avatar</source> | 2423 | <source>Remove avatar</source> |
2424 | <target>Enlever l'avatar</target> | 2424 | <target>Enlever l’avatar</target> |
2425 | <context-group purpose="location"> | 2425 | <context-group purpose="location"> |
2426 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> | 2426 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> |
2427 | <context context-type="linenumber">41</context> | 2427 | <context context-type="linenumber">41</context> |
@@ -2429,7 +2429,7 @@ | |||
2429 | </trans-unit> | 2429 | </trans-unit> |
2430 | <trans-unit id="4603134051700562542" datatype="html"> | 2430 | <trans-unit id="4603134051700562542" datatype="html"> |
2431 | <source>Loading instance statistics...</source> | 2431 | <source>Loading instance statistics...</source> |
2432 | <target>Chargement des statistiques de l'instance...</target> | 2432 | <target>Chargement des statistiques de l’instance…</target> |
2433 | <context-group purpose="location"> | 2433 | <context-group purpose="location"> |
2434 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 2434 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
2435 | <context context-type="linenumber">1</context> | 2435 | <context context-type="linenumber">1</context> |
@@ -2613,7 +2613,7 @@ | |||
2613 | </trans-unit> | 2613 | </trans-unit> |
2614 | <trans-unit id="3386631781603205915" datatype="html"> | 2614 | <trans-unit id="3386631781603205915" datatype="html"> |
2615 | <source>User registration allowed</source> | 2615 | <source>User registration allowed</source> |
2616 | <target>Enregistrement d'utilisateur autorisé</target> | 2616 | <target>Enregistrement d’utilisateur autorisé</target> |
2617 | <context-group purpose="location"> | 2617 | <context-group purpose="location"> |
2618 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 2618 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
2619 | <context context-type="linenumber">21</context> | 2619 | <context context-type="linenumber">21</context> |
@@ -2677,7 +2677,7 @@ | |||
2677 | </trans-unit> | 2677 | </trans-unit> |
2678 | <trans-unit id="8135461567542503937" datatype="html"> | 2678 | <trans-unit id="8135461567542503937" datatype="html"> |
2679 | <source>Transcode live video in multiple resolutions</source> | 2679 | <source>Transcode live video in multiple resolutions</source> |
2680 | <target>Transcoder les vidéos d'un direct en de multiples résolutions</target> | 2680 | <target>Transcoder les vidéos d’un direct en de multiples résolutions</target> |
2681 | <context-group purpose="location"> | 2681 | <context-group purpose="location"> |
2682 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 2682 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
2683 | <context context-type="linenumber">78</context> | 2683 | <context context-type="linenumber">78</context> |
@@ -2717,7 +2717,7 @@ | |||
2717 | </trans-unit> | 2717 | </trans-unit> |
2718 | <trans-unit id="5812787579835788700" datatype="html"> | 2718 | <trans-unit id="5812787579835788700" datatype="html"> |
2719 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> | 2719 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> |
2720 | <target>Importation HTTP (YouTube, Vimeo, URL...)</target> | 2720 | <target>Importation HTTP (YouTube, Vimeo, URL…)</target> |
2721 | <context-group purpose="location"> | 2721 | <context-group purpose="location"> |
2722 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 2722 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
2723 | <context context-type="linenumber">96</context> | 2723 | <context context-type="linenumber">96</context> |
@@ -2793,7 +2793,7 @@ | |||
2793 | </trans-unit> | 2793 | </trans-unit> |
2794 | <trans-unit id="2544569632476723854" datatype="html"> | 2794 | <trans-unit id="2544569632476723854" datatype="html"> |
2795 | <source>Terms</source> | 2795 | <source>Terms</source> |
2796 | <target>Conditions d'utilisation</target> | 2796 | <target>Conditions d’utilisation</target> |
2797 | <context-group purpose="location"> | 2797 | <context-group purpose="location"> |
2798 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context> | 2798 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context> |
2799 | <context context-type="linenumber">35</context> | 2799 | <context context-type="linenumber">35</context> |
@@ -2949,7 +2949,7 @@ | |||
2949 | </trans-unit> | 2949 | </trans-unit> |
2950 | <trans-unit id="1597262876035959248" datatype="html"> | 2950 | <trans-unit id="1597262876035959248" datatype="html"> |
2951 | <source>That's an error.</source> | 2951 | <source>That's an error.</source> |
2952 | <target>C'est une erreur.</target> | 2952 | <target>C’est une erreur.</target> |
2953 | <context-group purpose="location"> | 2953 | <context-group purpose="location"> |
2954 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 2954 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
2955 | <context context-type="linenumber">4</context> | 2955 | <context context-type="linenumber">4</context> |
@@ -2957,7 +2957,7 @@ | |||
2957 | </trans-unit> | 2957 | </trans-unit> |
2958 | <trans-unit id="09ee94b4e53e53026dbd591978aaa92901a8b67e" datatype="html"> | 2958 | <trans-unit id="09ee94b4e53e53026dbd591978aaa92901a8b67e" datatype="html"> |
2959 | <source>We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </source> | 2959 | <source>We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </source> |
2960 | <target>Nous n'avons trouvé aucune ressource liée à l'URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> que vous cherchiez. </target> | 2960 | <target>Nous n'avons trouvé aucune ressource liée à l’URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> que vous cherchiez. </target> |
2961 | <context-group purpose="location"> | 2961 | <context-group purpose="location"> |
2962 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 2962 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
2963 | <context context-type="linenumber">6,8</context> | 2963 | <context context-type="linenumber">6,8</context> |
@@ -2965,7 +2965,7 @@ | |||
2965 | </trans-unit> | 2965 | </trans-unit> |
2966 | <trans-unit id="3522707340816553139" datatype="html"> | 2966 | <trans-unit id="3522707340816553139" datatype="html"> |
2967 | <source>Possible reasons:</source> | 2967 | <source>Possible reasons:</source> |
2968 | <target>Les raisons possibles :</target> | 2968 | <target>Les raisons possibles :</target> |
2969 | <context-group purpose="location"> | 2969 | <context-group purpose="location"> |
2970 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 2970 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
2971 | <context context-type="linenumber">11</context> | 2971 | <context context-type="linenumber">11</context> |
@@ -2990,7 +2990,7 @@ | |||
2990 | </trans-unit> | 2990 | </trans-unit> |
2991 | <trans-unit id="3209594685692897380" datatype="html"> | 2991 | <trans-unit id="3209594685692897380" datatype="html"> |
2992 | <source>You may have typed the address or URL incorrectly</source> | 2992 | <source>You may have typed the address or URL incorrectly</source> |
2993 | <target>Vous avez peut-être mal saisi l'adresse ou l'URL</target> | 2993 | <target>Vous avez peut-être mal saisi l'adresse ou l’URL</target> |
2994 | <context-group purpose="location"> | 2994 | <context-group purpose="location"> |
2995 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 2995 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
2996 | <context context-type="linenumber">16</context> | 2996 | <context context-type="linenumber">16</context> |
@@ -2998,7 +2998,7 @@ | |||
2998 | </trans-unit> | 2998 | </trans-unit> |
2999 | <trans-unit id="7231414106228227962" datatype="html"> | 2999 | <trans-unit id="7231414106228227962" datatype="html"> |
3000 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> | 3000 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> |
3001 | <target>Le corps de l'entité sollicitée allie la douceur à la douceur terrestre.</target> | 3001 | <target>Le corps de l’entité sollicitée allie la douceur à la douceur terrestre.</target> |
3002 | <context-group purpose="location"> | 3002 | <context-group purpose="location"> |
3003 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 3003 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
3004 | <context context-type="linenumber">26,27</context> | 3004 | <context context-type="linenumber">26,27</context> |
@@ -3032,7 +3032,7 @@ | |||
3032 | </trans-unit> | 3032 | </trans-unit> |
3033 | <trans-unit id="7553172329217243895" datatype="html"> | 3033 | <trans-unit id="7553172329217243895" datatype="html"> |
3034 | <source>Cannot access to the remote resource</source> | 3034 | <source>Cannot access to the remote resource</source> |
3035 | <target state="translated">Impossible d'accéder à la ressource distante</target> | 3035 | <target state="translated">Impossible d’accéder à la ressource distante</target> |
3036 | <context-group purpose="location"> | 3036 | <context-group purpose="location"> |
3037 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 3037 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
3038 | <context context-type="linenumber">48</context> | 3038 | <context context-type="linenumber">48</context> |
@@ -3048,7 +3048,7 @@ | |||
3048 | </trans-unit> | 3048 | </trans-unit> |
3049 | <trans-unit id="3208627574396957172" datatype="html"> | 3049 | <trans-unit id="3208627574396957172" datatype="html"> |
3050 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 3050 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
3051 | <target>L'index de recherche n'est pas disponible. Essayez plutôt avec les résultats de l'instance.</target> | 3051 | <target>L’index de recherche n’est pas disponible. Essayez plutôt avec les résultats de l’instance.</target> |
3052 | <context-group purpose="location"> | 3052 | <context-group purpose="location"> |
3053 | <context context-type="sourcefile">src/app/+search/search.component.ts</context> | 3053 | <context context-type="sourcefile">src/app/+search/search.component.ts</context> |
3054 | <context context-type="linenumber">171</context> | 3054 | <context context-type="linenumber">171</context> |
@@ -3144,7 +3144,7 @@ | |||
3144 | </trans-unit> | 3144 | </trans-unit> |
3145 | <trans-unit id="6048892649018070225" datatype="html"> | 3145 | <trans-unit id="6048892649018070225" datatype="html"> |
3146 | <source>Today</source> | 3146 | <source>Today</source> |
3147 | <target>Aujourd'hui</target> | 3147 | <target>Aujourd’hui</target> |
3148 | <context-group purpose="location"> | 3148 | <context-group purpose="location"> |
3149 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> | 3149 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> |
3150 | <context context-type="linenumber">42</context> | 3150 | <context context-type="linenumber">42</context> |
@@ -3280,7 +3280,7 @@ | |||
3280 | </trans-unit> | 3280 | </trans-unit> |
3281 | <trans-unit id="2316758236788716819" datatype="html"> | 3281 | <trans-unit id="2316758236788716819" datatype="html"> |
3282 | <source>After...</source> | 3282 | <source>After...</source> |
3283 | <target>Après...</target> | 3283 | <target>Après…</target> |
3284 | <context-group purpose="location"> | 3284 | <context-group purpose="location"> |
3285 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 3285 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
3286 | <context context-type="linenumber">66</context> | 3286 | <context context-type="linenumber">66</context> |
@@ -3288,7 +3288,7 @@ | |||
3288 | </trans-unit> | 3288 | </trans-unit> |
3289 | <trans-unit id="5418443214217152433" datatype="html"> | 3289 | <trans-unit id="5418443214217152433" datatype="html"> |
3290 | <source>Before...</source> | 3290 | <source>Before...</source> |
3291 | <target>Avant...</target> | 3291 | <target>Avant…</target> |
3292 | <context-group purpose="location"> | 3292 | <context-group purpose="location"> |
3293 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 3293 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
3294 | <context context-type="linenumber">76</context> | 3294 | <context context-type="linenumber">76</context> |
@@ -3508,7 +3508,7 @@ | |||
3508 | </trans-unit> | 3508 | </trans-unit> |
3509 | <trans-unit id="1266887509445371246" datatype="html"> | 3509 | <trans-unit id="1266887509445371246" datatype="html"> |
3510 | <source>Incorrect username or password.</source> | 3510 | <source>Incorrect username or password.</source> |
3511 | <target>Nom d'utilisateur ou mot de passe incorrects.</target> | 3511 | <target>Nom d’utilisateur ou mot de passe incorrects.</target> |
3512 | <context-group purpose="location"> | 3512 | <context-group purpose="location"> |
3513 | <context context-type="sourcefile">src/app/+login/login.component.ts</context> | 3513 | <context context-type="sourcefile">src/app/+login/login.component.ts</context> |
3514 | <context context-type="linenumber">164</context> | 3514 | <context context-type="linenumber">164</context> |
@@ -3524,7 +3524,7 @@ | |||
3524 | </trans-unit> | 3524 | </trans-unit> |
3525 | <trans-unit id="1908285951500318953" datatype="html"> | 3525 | <trans-unit id="1908285951500318953" datatype="html"> |
3526 | <source>Login</source> | 3526 | <source>Login</source> |
3527 | <target>Nom d'utilisateur</target> | 3527 | <target>Nom d’utilisateur</target> |
3528 | <context-group purpose="location"> | 3528 | <context-group purpose="location"> |
3529 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 3529 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
3530 | <context context-type="linenumber">3,4</context> | 3530 | <context context-type="linenumber">3,4</context> |
@@ -3624,7 +3624,7 @@ | |||
3624 | </trans-unit> | 3624 | </trans-unit> |
3625 | <trans-unit id="7252854992688790751" datatype="html"> | 3625 | <trans-unit id="7252854992688790751" datatype="html"> |
3626 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 3626 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
3627 | <target>Cette instance permet l'enregistrement. Toutefois, il faut veiller à vérifier la <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> avant de créer un compte. Vous pouvez également rechercher une autre instance correspondant exactement à vos besoins sur : <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 3627 | <target>Cette instance permet l’enregistrement. Toutefois, il faut veiller à vérifier la <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> avant de créer un compte. Vous pouvez également rechercher une autre instance correspondant exactement à vos besoins sur : <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
3628 | <context-group purpose="location"> | 3628 | <context-group purpose="location"> |
3629 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 3629 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
3630 | <context context-type="linenumber">60,62</context> | 3630 | <context context-type="linenumber">60,62</context> |
@@ -3632,7 +3632,7 @@ | |||
3632 | </trans-unit> | 3632 | </trans-unit> |
3633 | <trans-unit id="7215649348148521605" datatype="html"> | 3633 | <trans-unit id="7215649348148521605" datatype="html"> |
3634 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 3634 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
3635 | <target>Actuellement, cette instance ne permet pas l'enregistrement des utilisateurs, vous pouvez vérifier les <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>conditions d'utilisation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> pour plus de détails ou trouvez une instance qui vous donne la possibilité de créer un compte et d'y télécharger vos vidéos. Trouvez la vôtre parmi plusieurs instances à l'adresse suivante : <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 3635 | <target>Actuellement, cette instance ne permet pas l’enregistrement des utilisateurs, vous pouvez vérifier les <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>conditions d’utilisation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> pour plus de détails ou trouvez une instance qui vous donne la possibilité de créer un compte et d’y télécharger vos vidéos. Trouvez la vôtre parmi plusieurs instances à l’adresse suivante : <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
3636 | <context-group purpose="location"> | 3636 | <context-group purpose="location"> |
3637 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 3637 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
3638 | <context context-type="linenumber">65,67</context> | 3638 | <context context-type="linenumber">65,67</context> |
@@ -3709,7 +3709,7 @@ | |||
3709 | </trans-unit> | 3709 | </trans-unit> |
3710 | <trans-unit id="87327320394367488" datatype="html"> | 3710 | <trans-unit id="87327320394367488" datatype="html"> |
3711 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 3711 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
3712 | <target>Nous sommes désolés, vous ne pouvez pas réinitialiser votre mot de passe car l'administrateur de votre instance n'a pas configuré le système de courrier électronique de PeerTube.</target> | 3712 | <target>Nous sommes désolés, vous ne pouvez pas réinitialiser votre mot de passe car l’administrateur de votre instance n’a pas configuré le système de courrier électronique de PeerTube.</target> |
3713 | <context-group purpose="location"> | 3713 | <context-group purpose="location"> |
3714 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 3714 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
3715 | <context context-type="linenumber">99,100</context> | 3715 | <context context-type="linenumber">99,100</context> |
@@ -3725,7 +3725,7 @@ | |||
3725 | </trans-unit> | 3725 | </trans-unit> |
3726 | <trans-unit id="2454050363478003966" datatype="html"> | 3726 | <trans-unit id="2454050363478003966" datatype="html"> |
3727 | <source>Login</source> | 3727 | <source>Login</source> |
3728 | <target>S'identifier</target> | 3728 | <target>Nom d’utilisateur</target> |
3729 | <context-group purpose="location"> | 3729 | <context-group purpose="location"> |
3730 | <context context-type="sourcefile">src/app/+login/login-routing.module.ts</context> | 3730 | <context context-type="sourcefile">src/app/+login/login-routing.module.ts</context> |
3731 | <context context-type="linenumber">14</context> | 3731 | <context context-type="linenumber">14</context> |
@@ -3733,7 +3733,7 @@ | |||
3733 | </trans-unit> | 3733 | </trans-unit> |
3734 | <trans-unit id="4180693983967989981" datatype="html"> | 3734 | <trans-unit id="4180693983967989981" datatype="html"> |
3735 | <source>Unable to find user id or verification string.</source> | 3735 | <source>Unable to find user id or verification string.</source> |
3736 | <target>Impossible de trouver l'identifiant utilisateur ou le texte de vérification.</target> | 3736 | <target>Impossible de trouver l’identifiant utilisateur ou le texte de vérification.</target> |
3737 | <context-group purpose="location"> | 3737 | <context-group purpose="location"> |
3738 | <context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context> | 3738 | <context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context> |
3739 | <context context-type="linenumber">38</context> | 3739 | <context context-type="linenumber">38</context> |
@@ -3803,7 +3803,7 @@ | |||
3803 | </trans-unit> | 3803 | </trans-unit> |
3804 | <trans-unit id="5018804994794983050" datatype="html"> | 3804 | <trans-unit id="5018804994794983050" datatype="html"> |
3805 | <source>Signup</source> | 3805 | <source>Signup</source> |
3806 | <target>S'enregistrer</target> | 3806 | <target>S’enregistrer</target> |
3807 | <context-group purpose="location"> | 3807 | <context-group purpose="location"> |
3808 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 3808 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
3809 | <context context-type="linenumber">64</context> | 3809 | <context context-type="linenumber">64</context> |
@@ -3893,7 +3893,7 @@ | |||
3893 | </trans-unit> | 3893 | </trans-unit> |
3894 | <trans-unit id="220345070199640496" datatype="html"> | 3894 | <trans-unit id="220345070199640496" datatype="html"> |
3895 | <source>PeerTube is creating your account...</source> | 3895 | <source>PeerTube is creating your account...</source> |
3896 | <target>PeerTube est en train de créer votre compte...</target> | 3896 | <target>PeerTube est en train de créer votre compte…</target> |
3897 | <context-group purpose="location"> | 3897 | <context-group purpose="location"> |
3898 | <context context-type="sourcefile">src/app/+signup/+register/register.component.html</context> | 3898 | <context context-type="sourcefile">src/app/+signup/+register/register.component.html</context> |
3899 | <context context-type="linenumber">46</context> | 3899 | <context context-type="linenumber">46</context> |
@@ -3953,7 +3953,7 @@ | |||
3953 | </trans-unit> | 3953 | </trans-unit> |
3954 | <trans-unit id="5428411040014095392" datatype="html"> | 3954 | <trans-unit id="5428411040014095392" datatype="html"> |
3955 | <source>e.g. jane_doe</source> | 3955 | <source>e.g. jane_doe</source> |
3956 | <target>exemple : joel_dove</target> | 3956 | <target>exemple : joel_dove</target> |
3957 | <context-group purpose="location"> | 3957 | <context-group purpose="location"> |
3958 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> | 3958 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> |
3959 | <context context-type="linenumber">27</context> | 3959 | <context context-type="linenumber">27</context> |
@@ -3962,7 +3962,7 @@ | |||
3962 | </trans-unit> | 3962 | </trans-unit> |
3963 | <trans-unit id="7326471570669373149" datatype="html"> | 3963 | <trans-unit id="7326471570669373149" datatype="html"> |
3964 | <source>The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> | 3964 | <source>The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> |
3965 | <target>Le nom d'utilisateur est l'identifiant unique de votre compte sur cette instance et toutes les autres. C'est aussi unique qu'une adresse de courriel, et donc facile pour les autres personnes d’interagir avec.</target> | 3965 | <target>Le nom d’utilisateur est l’identifiant unique de votre compte sur cette instance et toutes les autres. C’est aussi unique qu’une adresse de courriel, et donc facile pour les autres personnes d’interagir avec.</target> |
3966 | <context-group purpose="location"> | 3966 | <context-group purpose="location"> |
3967 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> | 3967 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> |
3968 | <context context-type="linenumber">36,37</context> | 3968 | <context context-type="linenumber">36,37</context> |
@@ -3978,7 +3978,7 @@ | |||
3978 | </trans-unit> | 3978 | </trans-unit> |
3979 | <trans-unit id="2324489258418133772" datatype="html"> | 3979 | <trans-unit id="2324489258418133772" datatype="html"> |
3980 | <source>I am at least 16 years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct"> "/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container> "/> of this instance </source> | 3980 | <source>I am at least 16 years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct"> "/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container> "/> of this instance </source> |
3981 | <target>Je suis agé d'au mois 16 ans et j'accepte les <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>termes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct"> "/> et le <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>code de conduite<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container> "/> de cette instance </target> | 3981 | <target>Je suis âgé d’au mois 16 ans et j’accepte les <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>termes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct"> "/> et le <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>code de conduite<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container> "/> de cette instance </target> |
3982 | <context-group purpose="location"> | 3982 | <context-group purpose="location"> |
3983 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 3983 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
3984 | <context context-type="linenumber">6,10</context> | 3984 | <context context-type="linenumber">6,10</context> |
@@ -3986,7 +3986,7 @@ | |||
3986 | </trans-unit> | 3986 | </trans-unit> |
3987 | <trans-unit id="4665274432258993920" datatype="html"> | 3987 | <trans-unit id="4665274432258993920" datatype="html"> |
3988 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> | 3988 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> |
3989 | <target>Une chaîne est une entité dans laquelle vous téléchargez vos vidéos. En créer plusieurs vous permet d'organiser et de séparer vos contenus.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Par exemple, vous pourriez décider d'avoir une chaîne pour publier vos concerts de piano, et une autre chaîne dans laquelle vous publiez vos vidéos parlant d'écologie. </target> | 3989 | <target>Une chaîne est une entité dans laquelle vous téléchargez vos vidéos. En créer plusieurs vous permet d’organiser et de séparer vos contenus.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Par exemple, vous pourriez décider d’avoir une chaîne pour publier vos concerts de piano, et une autre chaîne dans laquelle vous publiez vos vidéos parlant d’écologie. </target> |
3990 | <context-group purpose="location"> | 3990 | <context-group purpose="location"> |
3991 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> | 3991 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> |
3992 | <context context-type="linenumber">5,7</context> | 3992 | <context context-type="linenumber">5,7</context> |
@@ -3994,7 +3994,7 @@ | |||
3994 | </trans-unit> | 3994 | </trans-unit> |
3995 | <trans-unit id="2254156021453506528" datatype="html"> | 3995 | <trans-unit id="2254156021453506528" datatype="html"> |
3996 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> | 3996 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> |
3997 | <target>Les autres utilisateurs peuvent s'abonner aux chaînes voulues, pour être alertés lorsque vous postez une nouvelle vidéo.</target> | 3997 | <target>Les autres utilisateurs peuvent s’abonner aux chaînes voulues, pour être alertés lorsque vous postez une nouvelle vidéo.</target> |
3998 | <context-group purpose="location"> | 3998 | <context-group purpose="location"> |
3999 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> | 3999 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> |
4000 | <context context-type="linenumber">10,11</context> | 4000 | <context context-type="linenumber">10,11</context> |
@@ -4002,7 +4002,7 @@ | |||
4002 | </trans-unit> | 4002 | </trans-unit> |
4003 | <trans-unit id="8583412279916132438" datatype="html"> | 4003 | <trans-unit id="8583412279916132438" datatype="html"> |
4004 | <source>Channel display name</source> | 4004 | <source>Channel display name</source> |
4005 | <target>Nom d'affichage de la chaîne</target> | 4005 | <target>Nom d’affichage de la chaîne</target> |
4006 | <context-group purpose="location"> | 4006 | <context-group purpose="location"> |
4007 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> | 4007 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> |
4008 | <context context-type="linenumber">15</context> | 4008 | <context context-type="linenumber">15</context> |
@@ -4026,7 +4026,7 @@ | |||
4026 | </trans-unit> | 4026 | </trans-unit> |
4027 | <trans-unit id="7901486036096751355" datatype="html"> | 4027 | <trans-unit id="7901486036096751355" datatype="html"> |
4028 | <source>Example: my_super_channel</source> | 4028 | <source>Example: my_super_channel</source> |
4029 | <target>Exemple : ma_super_chaîne</target> | 4029 | <target>Exemple : ma_super_chaîne</target> |
4030 | <context-group purpose="location"> | 4030 | <context-group purpose="location"> |
4031 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> | 4031 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> |
4032 | <context context-type="linenumber">34</context> | 4032 | <context context-type="linenumber">34</context> |
@@ -4034,7 +4034,7 @@ | |||
4034 | </trans-unit> | 4034 | </trans-unit> |
4035 | <trans-unit id="7981235640417633362" datatype="html"> | 4035 | <trans-unit id="7981235640417633362" datatype="html"> |
4036 | <source>The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> | 4036 | <source>The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> |
4037 | <target>Le nom de la chaîne est un identifiant unique sur cette instance et toutes les autres. C'est aussi unique qu'une adresse e-mail, et donc facile pour les autres personnes d’interagir avec.</target> | 4037 | <target>Le nom de la chaîne est un identifiant unique sur cette instance et toutes les autres. C’est aussi unique qu’une adresse e-mail, et donc facile pour les autres personnes d’interagir avec.</target> |
4038 | <context-group purpose="location"> | 4038 | <context-group purpose="location"> |
4039 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> | 4039 | <context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context> |
4040 | <context context-type="linenumber">43,44</context> | 4040 | <context context-type="linenumber">43,44</context> |
@@ -4066,7 +4066,7 @@ | |||
4066 | </trans-unit> | 4066 | </trans-unit> |
4067 | <trans-unit id="1783173774503340906" datatype="html"> | 4067 | <trans-unit id="1783173774503340906" datatype="html"> |
4068 | <source>Subscribe to the account</source> | 4068 | <source>Subscribe to the account</source> |
4069 | <target>S'abonner à ce compte</target> | 4069 | <target>S’abonner à ce compte</target> |
4070 | <context-group purpose="location"> | 4070 | <context-group purpose="location"> |
4071 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context> | 4071 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context> |
4072 | <context context-type="linenumber">64</context> | 4072 | <context context-type="linenumber">64</context> |
@@ -4110,7 +4110,7 @@ | |||
4110 | </trans-unit> | 4110 | </trans-unit> |
4111 | <trans-unit id="25349740244798533" datatype="html"> | 4111 | <trans-unit id="25349740244798533" datatype="html"> |
4112 | <source>Username copied</source> | 4112 | <source>Username copied</source> |
4113 | <target>Nom d'utilisateur copié</target> | 4113 | <target>Nom d’utilisateur copié</target> |
4114 | <context-group purpose="location"> | 4114 | <context-group purpose="location"> |
4115 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context> | 4115 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context> |
4116 | <context context-type="linenumber">96</context> | 4116 | <context context-type="linenumber">96</context> |
@@ -4162,7 +4162,7 @@ | |||
4162 | </trans-unit> | 4162 | </trans-unit> |
4163 | <trans-unit id="9128669621822125729" datatype="html"> | 4163 | <trans-unit id="9128669621822125729" datatype="html"> |
4164 | <source>Video channel videos</source> | 4164 | <source>Video channel videos</source> |
4165 | <target>Contenus d'une chaîne de vidéos</target> | 4165 | <target>Contenus d’une chaîne de vidéos</target> |
4166 | <context-group purpose="location"> | 4166 | <context-group purpose="location"> |
4167 | <context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context> | 4167 | <context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context> |
4168 | <context context-type="linenumber">25</context> | 4168 | <context context-type="linenumber">25</context> |
@@ -4170,7 +4170,7 @@ | |||
4170 | </trans-unit> | 4170 | </trans-unit> |
4171 | <trans-unit id="3193822049276963401" datatype="html"> | 4171 | <trans-unit id="3193822049276963401" datatype="html"> |
4172 | <source>Video channel playlists</source> | 4172 | <source>Video channel playlists</source> |
4173 | <target>Listes de lecture d'une chaîne de vidéos</target> | 4173 | <target>Listes de lecture d’une chaîne de vidéos</target> |
4174 | <context-group purpose="location"> | 4174 | <context-group purpose="location"> |
4175 | <context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context> | 4175 | <context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context> |
4176 | <context context-type="linenumber">38</context> | 4176 | <context context-type="linenumber">38</context> |
@@ -4178,7 +4178,7 @@ | |||
4178 | </trans-unit> | 4178 | </trans-unit> |
4179 | <trans-unit id="4723526509708949088" datatype="html"> | 4179 | <trans-unit id="4723526509708949088" datatype="html"> |
4180 | <source>About video channel</source> | 4180 | <source>About video channel</source> |
4181 | <target>À propos d'une chaîne vidéos</target> | 4181 | <target>À propos d’une chaîne vidéos</target> |
4182 | <context-group purpose="location"> | 4182 | <context-group purpose="location"> |
4183 | <context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context> | 4183 | <context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context> |
4184 | <context context-type="linenumber">47</context> | 4184 | <context context-type="linenumber">47</context> |
@@ -4454,7 +4454,7 @@ | |||
4454 | </trans-unit> | 4454 | </trans-unit> |
4455 | <trans-unit id="4068658588793749132" datatype="html"> | 4455 | <trans-unit id="4068658588793749132" datatype="html"> |
4456 | <source>This channel does not have playlists.</source> | 4456 | <source>This channel does not have playlists.</source> |
4457 | <target>Cette chaîne n'a aucune liste de lecture.</target> | 4457 | <target>Cette chaîne n’a aucune liste de lecture.</target> |
4458 | <context-group purpose="location"> | 4458 | <context-group purpose="location"> |
4459 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 4459 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
4460 | <context context-type="linenumber">6</context> | 4460 | <context context-type="linenumber">6</context> |
@@ -4774,7 +4774,7 @@ | |||
4774 | </trans-unit> | 4774 | </trans-unit> |
4775 | <trans-unit id="1000724328916033777" datatype="html"> | 4775 | <trans-unit id="1000724328916033777" datatype="html"> |
4776 | <source>Multiple ways to subscribe to the current channel</source> | 4776 | <source>Multiple ways to subscribe to the current channel</source> |
4777 | <target>Plusieurs façons de s'abonner à la chaîne actuelle</target> | 4777 | <target>Plusieurs façons de s’abonner à la chaîne actuelle</target> |
4778 | <context-group purpose="location"> | 4778 | <context-group purpose="location"> |
4779 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4779 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4780 | <context context-type="linenumber">44</context> | 4780 | <context context-type="linenumber">44</context> |
@@ -4782,7 +4782,7 @@ | |||
4782 | </trans-unit> | 4782 | </trans-unit> |
4783 | <trans-unit id="363499678348067004" datatype="html"> | 4783 | <trans-unit id="363499678348067004" datatype="html"> |
4784 | <source>Open subscription dropdown</source> | 4784 | <source>Open subscription dropdown</source> |
4785 | <target>Ouvrir le menu d'abonnement</target> | 4785 | <target>Ouvrir le menu d’abonnement</target> |
4786 | <context-group purpose="location"> | 4786 | <context-group purpose="location"> |
4787 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4787 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4788 | <context context-type="linenumber">46</context> | 4788 | <context context-type="linenumber">46</context> |
@@ -4798,7 +4798,7 @@ | |||
4798 | </trans-unit> | 4798 | </trans-unit> |
4799 | <trans-unit id="3372646000533908418" datatype="html"> | 4799 | <trans-unit id="3372646000533908418" datatype="html"> |
4800 | <source>Subscribe with a remote account:</source> | 4800 | <source>Subscribe with a remote account:</source> |
4801 | <target>Souscrivez avec un compte à distance :</target> | 4801 | <target>Souscrivez avec un compte à distance :</target> |
4802 | <context-group purpose="location"> | 4802 | <context-group purpose="location"> |
4803 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4803 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4804 | <context context-type="linenumber">62</context> | 4804 | <context context-type="linenumber">62</context> |
@@ -4806,7 +4806,7 @@ | |||
4806 | </trans-unit> | 4806 | </trans-unit> |
4807 | <trans-unit id="2949829240129672512" datatype="html"> | 4807 | <trans-unit id="2949829240129672512" datatype="html"> |
4808 | <source>Using a syndication feed</source> | 4808 | <source>Using a syndication feed</source> |
4809 | <target>Utilisation d'un flux de syndication</target> | 4809 | <target>Utilisation d’un flux de syndication</target> |
4810 | <context-group purpose="location"> | 4810 | <context-group purpose="location"> |
4811 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4811 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4812 | <context context-type="linenumber">68</context> | 4812 | <context context-type="linenumber">68</context> |
@@ -4814,7 +4814,7 @@ | |||
4814 | </trans-unit> | 4814 | </trans-unit> |
4815 | <trans-unit id="7695158742270602420" datatype="html"> | 4815 | <trans-unit id="7695158742270602420" datatype="html"> |
4816 | <source>Subscribe via RSS</source> | 4816 | <source>Subscribe via RSS</source> |
4817 | <target>S'abonner par RSS</target> | 4817 | <target>S’abonner par RSS</target> |
4818 | <context-group purpose="location"> | 4818 | <context-group purpose="location"> |
4819 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4819 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4820 | <context context-type="linenumber">69</context> | 4820 | <context context-type="linenumber">69</context> |
@@ -4822,7 +4822,7 @@ | |||
4822 | </trans-unit> | 4822 | </trans-unit> |
4823 | <trans-unit id="1144407473317535723" datatype="html"> | 4823 | <trans-unit id="1144407473317535723" datatype="html"> |
4824 | <source>Subscribe</source> | 4824 | <source>Subscribe</source> |
4825 | <target>S'abonner</target> | 4825 | <target>S’abonner</target> |
4826 | <context-group purpose="location"> | 4826 | <context-group purpose="location"> |
4827 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4827 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4828 | <context context-type="linenumber">9</context> | 4828 | <context context-type="linenumber">9</context> |
@@ -4830,7 +4830,7 @@ | |||
4830 | </trans-unit> | 4830 | </trans-unit> |
4831 | <trans-unit id="5432070253720498105" datatype="html"> | 4831 | <trans-unit id="5432070253720498105" datatype="html"> |
4832 | <source>Subscribe to all channels</source> | 4832 | <source>Subscribe to all channels</source> |
4833 | <target>S'abonner à toutes les chaînes</target> | 4833 | <target>S’abonner à toutes les chaînes</target> |
4834 | <context-group purpose="location"> | 4834 | <context-group purpose="location"> |
4835 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4835 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4836 | <context context-type="linenumber">11</context> | 4836 | <context context-type="linenumber">11</context> |
@@ -4862,7 +4862,7 @@ | |||
4862 | </trans-unit> | 4862 | </trans-unit> |
4863 | <trans-unit id="1740917574463702967" datatype="html"> | 4863 | <trans-unit id="1740917574463702967" datatype="html"> |
4864 | <source>Subscribe with your local account</source> | 4864 | <source>Subscribe with your local account</source> |
4865 | <target>S'abonner avec un compte local</target> | 4865 | <target>S’abonner avec un compte local</target> |
4866 | <context-group purpose="location"> | 4866 | <context-group purpose="location"> |
4867 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 4867 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
4868 | <context context-type="linenumber">58</context> | 4868 | <context context-type="linenumber">58</context> |
@@ -4886,7 +4886,7 @@ | |||
4886 | </trans-unit> | 4886 | </trans-unit> |
4887 | <trans-unit id="3666829335406793239" datatype="html"> | 4887 | <trans-unit id="3666829335406793239" datatype="html"> |
4888 | <source>This account does not have channels.</source> | 4888 | <source>This account does not have channels.</source> |
4889 | <target>Ce compte n'a pas de chaîne vidéo.</target> | 4889 | <target>Ce compte n’a pas de chaîne vidéo.</target> |
4890 | <context-group purpose="location"> | 4890 | <context-group purpose="location"> |
4891 | <context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context> | 4891 | <context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context> |
4892 | <context context-type="linenumber">4</context> | 4892 | <context context-type="linenumber">4</context> |
@@ -5702,7 +5702,7 @@ | |||
5702 | </trans-unit> | 5702 | </trans-unit> |
5703 | <trans-unit id="5352255295652969301" datatype="html"> | 5703 | <trans-unit id="5352255295652969301" datatype="html"> |
5704 | <source>See the error</source> | 5704 | <source>See the error</source> |
5705 | <target state="translated">Consultez l'erreur</target> | 5705 | <target state="translated">Consultez l’erreur</target> |
5706 | <context-group purpose="location"> | 5706 | <context-group purpose="location"> |
5707 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> | 5707 | <context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context> |
5708 | <context context-type="linenumber">26</context> | 5708 | <context context-type="linenumber">26</context> |
@@ -5734,7 +5734,7 @@ | |||
5734 | </trans-unit> | 5734 | </trans-unit> |
5735 | <trans-unit id="5177154708872200221" datatype="html"> | 5735 | <trans-unit id="5177154708872200221" datatype="html"> |
5736 | <source>You don't have any subscription yet.</source> | 5736 | <source>You don't have any subscription yet.</source> |
5737 | <target state="translated">Vous n'avez pas encore d'abonnement.</target> | 5737 | <target state="translated">Vous n’avez pas encore d'abonnement.</target> |
5738 | <context-group purpose="location"> | 5738 | <context-group purpose="location"> |
5739 | <context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context> | 5739 | <context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context> |
5740 | <context context-type="linenumber">18</context> | 5740 | <context context-type="linenumber">18</context> |
@@ -5894,7 +5894,7 @@ | |||
5894 | </trans-unit> | 5894 | </trans-unit> |
5895 | <trans-unit id="2000373220662583633" datatype="html"> | 5895 | <trans-unit id="2000373220662583633" datatype="html"> |
5896 | <source>No ownership change request found.</source> | 5896 | <source>No ownership change request found.</source> |
5897 | <target state="translated">Aucune demande de changement de propriétaire n'a été trouvée.</target> | 5897 | <target state="translated">Aucune demande de changement de propriétaire n’a été trouvée.</target> |
5898 | <context-group purpose="location"> | 5898 | <context-group purpose="location"> |
5899 | <context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context> | 5899 | <context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context> |
5900 | <context context-type="linenumber">83</context> | 5900 | <context context-type="linenumber">83</context> |
@@ -5958,7 +5958,7 @@ | |||
5958 | </trans-unit> | 5958 | </trans-unit> |
5959 | <trans-unit id="8966726118414892732" datatype="html"> | 5959 | <trans-unit id="8966726118414892732" datatype="html"> |
5960 | <source>Delete videos history</source> | 5960 | <source>Delete videos history</source> |
5961 | <target state="translated">Supprimer l'historique de vidéos</target> | 5961 | <target state="translated">Supprimer l’historique de vidéos</target> |
5962 | <context-group purpose="location"> | 5962 | <context-group purpose="location"> |
5963 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context> | 5963 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context> |
5964 | <context context-type="linenumber">119</context> | 5964 | <context context-type="linenumber">119</context> |
@@ -6006,7 +6006,7 @@ | |||
6006 | </trans-unit> | 6006 | </trans-unit> |
6007 | <trans-unit id="2204625138753484173" datatype="html"> | 6007 | <trans-unit id="2204625138753484173" datatype="html"> |
6008 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon> "/> Delete history </source> | 6008 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon> "/> Delete history </source> |
6009 | <target><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon> "/> Supprimer l'historique </target> | 6009 | <target><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon> "/> Supprimer l’historique </target> |
6010 | <context-group purpose="location"> | 6010 | <context-group purpose="location"> |
6011 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 6011 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
6012 | <context context-type="linenumber">24,26</context> | 6012 | <context context-type="linenumber">24,26</context> |
@@ -6014,7 +6014,7 @@ | |||
6014 | </trans-unit> | 6014 | </trans-unit> |
6015 | <trans-unit id="4781078006040259916" datatype="html"> | 6015 | <trans-unit id="4781078006040259916" datatype="html"> |
6016 | <source>You don't have any video in your watch history yet.</source> | 6016 | <source>You don't have any video in your watch history yet.</source> |
6017 | <target state="translated">Vous n'avez pas encore de vidéo dans votre historique de lecture.</target> | 6017 | <target state="translated">Vous n’avez pas encore de vidéo dans votre historique de lecture.</target> |
6018 | <context-group purpose="location"> | 6018 | <context-group purpose="location"> |
6019 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 6019 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
6020 | <context context-type="linenumber">30</context> | 6020 | <context context-type="linenumber">30</context> |
@@ -6030,7 +6030,7 @@ | |||
6030 | </trans-unit> | 6030 | </trans-unit> |
6031 | <trans-unit id="3461985498881453026" datatype="html"> | 6031 | <trans-unit id="3461985498881453026" datatype="html"> |
6032 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-setup-account" target="_blank" rel="noopener noreferrer">"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 6032 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-setup-account" target="_blank" rel="noopener noreferrer">"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
6033 | <target>Si vous souhaitez de l'aide pour utiliser PeerTube, allez voir du côté de la <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-setup-account" target="_blank" rel="noopener noreferrer">"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 6033 | <target>Si vous souhaitez de l’aide pour utiliser PeerTube, allez voir du côté de la <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-setup-account" target="_blank" rel="noopener noreferrer">"/>documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
6034 | <context-group purpose="location"> | 6034 | <context-group purpose="location"> |
6035 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 6035 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
6036 | <context context-type="linenumber">14,15</context> | 6036 | <context context-type="linenumber">14,15</context> |
@@ -6070,7 +6070,7 @@ | |||
6070 | </trans-unit> | 6070 | </trans-unit> |
6071 | <trans-unit id="6990204431018013063" datatype="html"> | 6071 | <trans-unit id="6990204431018013063" datatype="html"> |
6072 | <source>Please describe the issue...</source> | 6072 | <source>Please describe the issue...</source> |
6073 | <target state="translated">Décrivez le problème...</target> | 6073 | <target state="translated">Décrivez le problème…</target> |
6074 | <context-group purpose="location"> | 6074 | <context-group purpose="location"> |
6075 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context> | 6075 | <context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context> |
6076 | <context context-type="linenumber">42</context> | 6076 | <context context-type="linenumber">42</context> |
@@ -6098,7 +6098,7 @@ | |||
6098 | </trans-unit> | 6098 | </trans-unit> |
6099 | <trans-unit id="3403978719736970622" datatype="html"> | 6099 | <trans-unit id="3403978719736970622" datatype="html"> |
6100 | <source>You cannot ban root.</source> | 6100 | <source>You cannot ban root.</source> |
6101 | <target state="translated">Vous ne pouvez pas bannir l'utilisateur root.</target> | 6101 | <target state="translated">Vous ne pouvez pas bannir l’utilisateur root.</target> |
6102 | <context-group purpose="location"> | 6102 | <context-group purpose="location"> |
6103 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6103 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6104 | <context context-type="linenumber">58</context> | 6104 | <context context-type="linenumber">58</context> |
@@ -6142,7 +6142,7 @@ | |||
6142 | </trans-unit> | 6142 | </trans-unit> |
6143 | <trans-unit id="5325873477837320044" datatype="html"> | 6143 | <trans-unit id="5325873477837320044" datatype="html"> |
6144 | <source>You cannot delete root.</source> | 6144 | <source>You cannot delete root.</source> |
6145 | <target state="translated">Vous ne pouvez pas supprimer l'utilisateur root.</target> | 6145 | <target state="translated">Vous ne pouvez pas supprimer l’utilisateur root.</target> |
6146 | <context-group purpose="location"> | 6146 | <context-group purpose="location"> |
6147 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6147 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6148 | <context context-type="linenumber">86</context> | 6148 | <context context-type="linenumber">86</context> |
@@ -6170,7 +6170,7 @@ | |||
6170 | </trans-unit> | 6170 | </trans-unit> |
6171 | <trans-unit id="3896582359861826661" datatype="html"> | 6171 | <trans-unit id="3896582359861826661" datatype="html"> |
6172 | <source>User <x id="PH" equiv-text="user.username"/> email set as verified</source> | 6172 | <source>User <x id="PH" equiv-text="user.username"/> email set as verified</source> |
6173 | <target>Le courriel de l'utilisateur <x id="PH" equiv-text="user.username"/> a été vérifié</target> | 6173 | <target>Le courriel de l’utilisateur <x id="PH" equiv-text="user.username"/> a été vérifié</target> |
6174 | <context-group purpose="location"> | 6174 | <context-group purpose="location"> |
6175 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6175 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6176 | <context context-type="linenumber">107</context> | 6176 | <context context-type="linenumber">107</context> |
@@ -6214,7 +6214,7 @@ | |||
6214 | </trans-unit> | 6214 | </trans-unit> |
6215 | <trans-unit id="7246356397085094208" datatype="html"> | 6215 | <trans-unit id="7246356397085094208" datatype="html"> |
6216 | <source>Instance <x id="PH" equiv-text="host"/> unmuted.</source> | 6216 | <source>Instance <x id="PH" equiv-text="host"/> unmuted.</source> |
6217 | <target state="translated">Son de l'instance <x id="PH" equiv-text="host"/> rétabli.</target> | 6217 | <target state="translated">Son de l’instance <x id="PH" equiv-text="host"/> rétabli.</target> |
6218 | <context-group purpose="location"> | 6218 | <context-group purpose="location"> |
6219 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6219 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6220 | <context context-type="linenumber">161</context> | 6220 | <context context-type="linenumber">161</context> |
@@ -6226,7 +6226,7 @@ | |||
6226 | </trans-unit> | 6226 | </trans-unit> |
6227 | <trans-unit id="2558977494773636050" datatype="html"> | 6227 | <trans-unit id="2558977494773636050" datatype="html"> |
6228 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> muted by the instance.</source> | 6228 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> muted by the instance.</source> |
6229 | <target state="translated">Le compte <x id="PH" equiv-text="account.nameWithHost"/> a été mis en sourdine par l'instance.</target> | 6229 | <target state="translated">Le compte <x id="PH" equiv-text="account.nameWithHost"/> a été mis en sourdine par l’instance.</target> |
6230 | <context-group purpose="location"> | 6230 | <context-group purpose="location"> |
6231 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6231 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6232 | <context context-type="linenumber">175</context> | 6232 | <context context-type="linenumber">175</context> |
@@ -6238,7 +6238,7 @@ | |||
6238 | </trans-unit> | 6238 | </trans-unit> |
6239 | <trans-unit id="3085641638748358969" datatype="html"> | 6239 | <trans-unit id="3085641638748358969" datatype="html"> |
6240 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> unmuted by the instance.</source> | 6240 | <source>Account <x id="PH" equiv-text="account.nameWithHost"/> unmuted by the instance.</source> |
6241 | <target state="translated">Le son du compte <x id="PH" equiv-text="account.nameWithHost"/> a été rétabli par l'instance.</target> | 6241 | <target state="translated">Le son du compte <x id="PH" equiv-text="account.nameWithHost"/> a été rétabli par l’instance.</target> |
6242 | <context-group purpose="location"> | 6242 | <context-group purpose="location"> |
6243 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6243 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6244 | <context context-type="linenumber">189</context> | 6244 | <context context-type="linenumber">189</context> |
@@ -6246,7 +6246,7 @@ | |||
6246 | </trans-unit> | 6246 | </trans-unit> |
6247 | <trans-unit id="4991892477258601737" datatype="html"> | 6247 | <trans-unit id="4991892477258601737" datatype="html"> |
6248 | <source>Instance <x id="PH" equiv-text="host"/> muted by the instance.</source> | 6248 | <source>Instance <x id="PH" equiv-text="host"/> muted by the instance.</source> |
6249 | <target state="translated">L'instance <x id="PH" equiv-text="host"/> a été mise en sourdine par l'instance.</target> | 6249 | <target state="translated">L’instance <x id="PH" equiv-text="host"/> a été mise en sourdine par l’instance.</target> |
6250 | <context-group purpose="location"> | 6250 | <context-group purpose="location"> |
6251 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6251 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6252 | <context context-type="linenumber">203</context> | 6252 | <context context-type="linenumber">203</context> |
@@ -6254,7 +6254,7 @@ | |||
6254 | </trans-unit> | 6254 | </trans-unit> |
6255 | <trans-unit id="4379430340167561220" datatype="html"> | 6255 | <trans-unit id="4379430340167561220" datatype="html"> |
6256 | <source>Instance <x id="PH" equiv-text="host"/> unmuted by the instance.</source> | 6256 | <source>Instance <x id="PH" equiv-text="host"/> unmuted by the instance.</source> |
6257 | <target state="translated">Le son de l'instance <x id="PH" equiv-text="host"/> a été rétabli par l'instance.</target> | 6257 | <target state="translated">Le son de l’instance <x id="PH" equiv-text="host"/> a été rétabli par l’instance.</target> |
6258 | <context-group purpose="location"> | 6258 | <context-group purpose="location"> |
6259 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6259 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6260 | <context context-type="linenumber">217</context> | 6260 | <context context-type="linenumber">217</context> |
@@ -6334,7 +6334,7 @@ | |||
6334 | </trans-unit> | 6334 | </trans-unit> |
6335 | <trans-unit id="3855396975723886053" datatype="html"> | 6335 | <trans-unit id="3855396975723886053" datatype="html"> |
6336 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 6336 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
6337 | <target state="translated">L'utilisateur ne pourra plus se connecter, mais les vidéos et commentaires seront gardés tels quels.</target> | 6337 | <target state="translated">L’utilisateur ne pourra plus se connecter, mais les vidéos et commentaires seront gardés tels quels.</target> |
6338 | <context-group purpose="location"> | 6338 | <context-group purpose="location"> |
6339 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6339 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6340 | <context context-type="linenumber">274</context> | 6340 | <context context-type="linenumber">274</context> |
@@ -6346,7 +6346,7 @@ | |||
6346 | </trans-unit> | 6346 | </trans-unit> |
6347 | <trans-unit id="7577876364431026966" datatype="html"> | 6347 | <trans-unit id="7577876364431026966" datatype="html"> |
6348 | <source>Unban user</source> | 6348 | <source>Unban user</source> |
6349 | <target state="translated">Lever l'interdiction pour l’utilisateur</target> | 6349 | <target state="translated">Lever l’interdiction pour l’utilisateur</target> |
6350 | <context-group purpose="location"> | 6350 | <context-group purpose="location"> |
6351 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6351 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6352 | <context context-type="linenumber">279</context> | 6352 | <context context-type="linenumber">279</context> |
@@ -6354,7 +6354,7 @@ | |||
6354 | </trans-unit> | 6354 | </trans-unit> |
6355 | <trans-unit id="3508163549683020253" datatype="html"> | 6355 | <trans-unit id="3508163549683020253" datatype="html"> |
6356 | <source>Allow the user to login and create videos/comments again</source> | 6356 | <source>Allow the user to login and create videos/comments again</source> |
6357 | <target state="translated">Permettre à l'utilisateur de se connecter à nouveau et ajouter des vidéos/commentaires</target> | 6357 | <target state="translated">Permettre à l’utilisateur de se connecter à nouveau et ajouter des vidéos/commentaires</target> |
6358 | <context-group purpose="location"> | 6358 | <context-group purpose="location"> |
6359 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6359 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6360 | <context context-type="linenumber">280</context> | 6360 | <context context-type="linenumber">280</context> |
@@ -6362,7 +6362,7 @@ | |||
6362 | </trans-unit> | 6362 | </trans-unit> |
6363 | <trans-unit id="7210277223053877333" datatype="html"> | 6363 | <trans-unit id="7210277223053877333" datatype="html"> |
6364 | <source>Set Email as Verified</source> | 6364 | <source>Set Email as Verified</source> |
6365 | <target state="translated">Définir l'adresse de courriel comme vérifiée</target> | 6365 | <target state="translated">Définir l’adresse de courriel comme vérifiée</target> |
6366 | <context-group purpose="location"> | 6366 | <context-group purpose="location"> |
6367 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> | 6367 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context> |
6368 | <context context-type="linenumber">285</context> | 6368 | <context context-type="linenumber">285</context> |
@@ -6762,7 +6762,7 @@ | |||
6762 | </trans-unit> | 6762 | </trans-unit> |
6763 | <trans-unit id="3267631941074558910" datatype="html"> | 6763 | <trans-unit id="3267631941074558910" datatype="html"> |
6764 | <source>Cannot fetch information of this remote account</source> | 6764 | <source>Cannot fetch information of this remote account</source> |
6765 | <target state="translated">Impossible d'obtenir des informations sur ce compte à distance</target> | 6765 | <target state="translated">Impossible d’obtenir des informations sur ce compte à distance</target> |
6766 | <context-group purpose="location"> | 6766 | <context-group purpose="location"> |
6767 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> | 6767 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> |
6768 | <context context-type="linenumber">60</context> | 6768 | <context context-type="linenumber">60</context> |
@@ -6778,7 +6778,7 @@ | |||
6778 | </trans-unit> | 6778 | </trans-unit> |
6779 | <trans-unit id="6462281745850371027" datatype="html"> | 6779 | <trans-unit id="6462281745850371027" datatype="html"> |
6780 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 6780 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
6781 | <target state="translated">Vous pouvez vous abonner à la chaîne via n'importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple).</target> | 6781 | <target state="translated">Vous pouvez vous abonner à la chaîne via n’importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple).</target> |
6782 | <context-group purpose="location"> | 6782 | <context-group purpose="location"> |
6783 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 6783 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
6784 | <context context-type="linenumber">18,19</context> | 6784 | <context context-type="linenumber">18,19</context> |
@@ -6786,7 +6786,7 @@ | |||
6786 | </trans-unit> | 6786 | </trans-unit> |
6787 | <trans-unit id="20374890400263257" datatype="html"> | 6787 | <trans-unit id="20374890400263257" datatype="html"> |
6788 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 6788 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
6789 | <target state="translated">Vous pouvez interagir via n'importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple).</target> | 6789 | <target state="translated">Vous pouvez interagir via n’importe quelle instance fediverse compatible avec ActivityPub (PeerTube, Mastodon ou Pleroma par exemple).</target> |
6790 | <context-group purpose="location"> | 6790 | <context-group purpose="location"> |
6791 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 6791 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
6792 | <context context-type="linenumber">26,27</context> | 6792 | <context context-type="linenumber">26,27</context> |
@@ -6974,7 +6974,7 @@ | |||
6974 | </trans-unit> | 6974 | </trans-unit> |
6975 | <trans-unit id="1122876732223594710" datatype="html"> | 6975 | <trans-unit id="1122876732223594710" datatype="html"> |
6976 | <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> | 6976 | <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> |
6977 | <target state="translated">L’URL n'est pas sécurisée (pas de HTTPS), donc la vidéo intégrée ne fonctionnera pas sur les sites HTTPS (les navigateurs web bloquent les requêtes HTTP non sécurisées sur les sites HTTPS).</target> | 6977 | <target state="translated">L’URL n’est pas sécurisée (pas de HTTPS), donc la vidéo intégrée ne fonctionnera pas sur les sites HTTPS (les navigateurs web bloquent les requêtes HTTP non sécurisées sur les sites HTTPS).</target> |
6978 | <context-group purpose="location"> | 6978 | <context-group purpose="location"> |
6979 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 6979 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
6980 | <context context-type="linenumber">44,45</context> | 6980 | <context context-type="linenumber">44,45</context> |
@@ -7026,7 +7026,7 @@ | |||
7026 | </trans-unit> | 7026 | </trans-unit> |
7027 | <trans-unit id="5908032061347078472" datatype="html"> | 7027 | <trans-unit id="5908032061347078472" datatype="html"> |
7028 | <source>Use origin instance URL</source> | 7028 | <source>Use origin instance URL</source> |
7029 | <target state="translated">Utiliser l'URL d'origine de l'instance</target> | 7029 | <target state="translated">Utiliser l’URL d'origine de l’instance</target> |
7030 | <context-group purpose="location"> | 7030 | <context-group purpose="location"> |
7031 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 7031 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
7032 | <context context-type="linenumber">180</context> | 7032 | <context context-type="linenumber">180</context> |
@@ -7042,7 +7042,7 @@ | |||
7042 | </trans-unit> | 7042 | </trans-unit> |
7043 | <trans-unit id="1068153312491986796" datatype="html"> | 7043 | <trans-unit id="1068153312491986796" datatype="html"> |
7044 | <source>Display privacy warning</source> | 7044 | <source>Display privacy warning</source> |
7045 | <target state="translated">Afficher l'avertissement de confidentialité</target> | 7045 | <target state="translated">Afficher l’avertissement de confidentialité</target> |
7046 | <context-group purpose="location"> | 7046 | <context-group purpose="location"> |
7047 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 7047 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
7048 | <context context-type="linenumber">196</context> | 7048 | <context context-type="linenumber">196</context> |
@@ -7250,7 +7250,7 @@ | |||
7250 | </trans-unit> | 7250 | </trans-unit> |
7251 | <trans-unit id="8363008638081993167" datatype="html"> | 7251 | <trans-unit id="8363008638081993167" datatype="html"> |
7252 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> | 7252 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> |
7253 | <target state="translated">Contient des informations personnelles qui pourraient être utilisées pour suivre, identifier, contacter ou se faire passer pour quelqu'un (par exemple, le nom, l'adresse, le numéro de téléphone, le courriel ou les détails de la carte de crédit).</target> | 7253 | <target state="translated">Contient des informations personnelles qui pourraient être utilisées pour suivre, identifier, contacter ou se faire passer pour quelqu’un (par exemple, le nom, l’adresse, le numéro de téléphone, le courriel ou les détails de la carte de crédit).</target> |
7254 | <context-group purpose="location"> | 7254 | <context-group purpose="location"> |
7255 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> | 7255 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> |
7256 | <context context-type="linenumber">155</context> | 7256 | <context context-type="linenumber">155</context> |
@@ -7258,7 +7258,7 @@ | |||
7258 | </trans-unit> | 7258 | </trans-unit> |
7259 | <trans-unit id="8768506950499277937" datatype="html"> | 7259 | <trans-unit id="8768506950499277937" datatype="html"> |
7260 | <source>Copyright</source> | 7260 | <source>Copyright</source> |
7261 | <target state="translated">Droit d'auteur</target> | 7261 | <target state="translated">Droit d’auteur</target> |
7262 | <context-group purpose="location"> | 7262 | <context-group purpose="location"> |
7263 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> | 7263 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> |
7264 | <context context-type="linenumber">159</context> | 7264 | <context context-type="linenumber">159</context> |
@@ -7270,7 +7270,7 @@ | |||
7270 | </trans-unit> | 7270 | </trans-unit> |
7271 | <trans-unit id="380450014369168564" datatype="html"> | 7271 | <trans-unit id="380450014369168564" datatype="html"> |
7272 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 7272 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
7273 | <target state="translated">enfreint votre droit d'auteur ou les lois régionales auxquelles le serveur doit se conformer.</target> | 7273 | <target state="translated">enfreint votre droit d’auteur ou les lois locales auxquelles le serveur doit se conformer.</target> |
7274 | <context-group purpose="location"> | 7274 | <context-group purpose="location"> |
7275 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> | 7275 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> |
7276 | <context context-type="linenumber">160</context> | 7276 | <context context-type="linenumber">160</context> |
@@ -7286,7 +7286,7 @@ | |||
7286 | </trans-unit> | 7286 | </trans-unit> |
7287 | <trans-unit id="7930601470861156366" datatype="html"> | 7287 | <trans-unit id="7930601470861156366" datatype="html"> |
7288 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> | 7288 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> |
7289 | <target state="translated">Tout ce qui n'est pas inclus dans ce qui précède et qui enfreint les conditions de service, le code de conduite ou les règles générales en vigueur sur le serveur.</target> | 7289 | <target state="translated">Tout ce qui n’est pas inclus dans ce qui précède et qui enfreint les conditions de service, le code de conduite ou les règles générales en vigueur sur le serveur.</target> |
7290 | <context-group purpose="location"> | 7290 | <context-group purpose="location"> |
7291 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> | 7291 | <context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context> |
7292 | <context context-type="linenumber">165</context> | 7292 | <context context-type="linenumber">165</context> |
@@ -7522,7 +7522,7 @@ | |||
7522 | </trans-unit> | 7522 | </trans-unit> |
7523 | <trans-unit id="7256462927215762997" datatype="html"> | 7523 | <trans-unit id="7256462927215762997" datatype="html"> |
7524 | <source>Please describe the reason...</source> | 7524 | <source>Please describe the reason...</source> |
7525 | <target state="translated">Veuillez décrire la raison...</target> | 7525 | <target state="translated">Veuillez décrire la raison…</target> |
7526 | <context-group purpose="location"> | 7526 | <context-group purpose="location"> |
7527 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 7527 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
7528 | <context context-type="linenumber">13</context> | 7528 | <context context-type="linenumber">13</context> |
@@ -7594,7 +7594,7 @@ | |||
7594 | </trans-unit> | 7594 | </trans-unit> |
7595 | <trans-unit id="3868123820758341861" datatype="html"> | 7595 | <trans-unit id="3868123820758341861" datatype="html"> |
7596 | <source>Username is required.</source> | 7596 | <source>Username is required.</source> |
7597 | <target state="translated">Le nom d'utilisateur est requis.</target> | 7597 | <target state="translated">Le nom d’utilisateur est requis.</target> |
7598 | <context-group purpose="location"> | 7598 | <context-group purpose="location"> |
7599 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7599 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7600 | <context context-type="linenumber">12</context> | 7600 | <context context-type="linenumber">12</context> |
@@ -7606,7 +7606,7 @@ | |||
7606 | </trans-unit> | 7606 | </trans-unit> |
7607 | <trans-unit id="4786141633412279939" datatype="html"> | 7607 | <trans-unit id="4786141633412279939" datatype="html"> |
7608 | <source>Username must be at least 1 character long.</source> | 7608 | <source>Username must be at least 1 character long.</source> |
7609 | <target state="translated">Votre nom d'utilisateur doit contenir au moins un caractère.</target> | 7609 | <target state="translated">Votre nom d’utilisateur doit contenir au moins un caractère.</target> |
7610 | <context-group purpose="location"> | 7610 | <context-group purpose="location"> |
7611 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7611 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7612 | <context context-type="linenumber">13</context> | 7612 | <context context-type="linenumber">13</context> |
@@ -7614,7 +7614,7 @@ | |||
7614 | </trans-unit> | 7614 | </trans-unit> |
7615 | <trans-unit id="1019755749203839300" datatype="html"> | 7615 | <trans-unit id="1019755749203839300" datatype="html"> |
7616 | <source>Username cannot be more than 50 characters long.</source> | 7616 | <source>Username cannot be more than 50 characters long.</source> |
7617 | <target state="translated">Votre nom d'utilisateur ne peut pas contenir plus de 50 caractères.</target> | 7617 | <target state="translated">Votre nom d’utilisateur ne peut pas contenir plus de 50 caractères.</target> |
7618 | <context-group purpose="location"> | 7618 | <context-group purpose="location"> |
7619 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7619 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7620 | <context context-type="linenumber">14</context> | 7620 | <context context-type="linenumber">14</context> |
@@ -7622,7 +7622,7 @@ | |||
7622 | </trans-unit> | 7622 | </trans-unit> |
7623 | <trans-unit id="5621067256208426608" datatype="html"> | 7623 | <trans-unit id="5621067256208426608" datatype="html"> |
7624 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> | 7624 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> |
7625 | <target state="translated">Le nom d'utilisateur peut contenir des minuscules, des chiffres, des points et des tirets bas.</target> | 7625 | <target state="translated">Le nom d’utilisateur peut contenir des minuscules, des chiffres, des points et des tirets bas.</target> |
7626 | <context-group purpose="location"> | 7626 | <context-group purpose="location"> |
7627 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7627 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7628 | <context context-type="linenumber">15</context> | 7628 | <context context-type="linenumber">15</context> |
@@ -7718,7 +7718,7 @@ | |||
7718 | </trans-unit> | 7718 | </trans-unit> |
7719 | <trans-unit id="525871656034789056" datatype="html"> | 7719 | <trans-unit id="525871656034789056" datatype="html"> |
7720 | <source>Password must be at least 6 characters long.</source> | 7720 | <source>Password must be at least 6 characters long.</source> |
7721 | <target state="translated">Le mot de passe doit être composé d'au moins 6 caractères.</target> | 7721 | <target state="translated">Le mot de passe doit être composé d’au moins 6 caractères.</target> |
7722 | <context-group purpose="location"> | 7722 | <context-group purpose="location"> |
7723 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7723 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7724 | <context context-type="linenumber">70</context> | 7724 | <context context-type="linenumber">70</context> |
@@ -7790,7 +7790,7 @@ | |||
7790 | </trans-unit> | 7790 | </trans-unit> |
7791 | <trans-unit id="2761226139624435788" datatype="html"> | 7791 | <trans-unit id="2761226139624435788" datatype="html"> |
7792 | <source>Description must be at least 3 characters long.</source> | 7792 | <source>Description must be at least 3 characters long.</source> |
7793 | <target state="translated">La description doit être composée d'au moins 3 caractères.</target> | 7793 | <target state="translated">La description doit être composée d’au moins 3 caractères.</target> |
7794 | <context-group purpose="location"> | 7794 | <context-group purpose="location"> |
7795 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7795 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7796 | <context context-type="linenumber">123</context> | 7796 | <context context-type="linenumber">123</context> |
@@ -7822,7 +7822,7 @@ | |||
7822 | </trans-unit> | 7822 | </trans-unit> |
7823 | <trans-unit id="1814372869868173571" datatype="html"> | 7823 | <trans-unit id="1814372869868173571" datatype="html"> |
7824 | <source>You must agree with the instance terms in order to register on it.</source> | 7824 | <source>You must agree with the instance terms in order to register on it.</source> |
7825 | <target state="translated">Vous devez être d'accord avec les conditions de l'instance pour pouvoir vous inscrire.</target> | 7825 | <target state="translated">Vous devez être d’accord avec les conditions de l’instance pour pouvoir vous inscrire.</target> |
7826 | <context-group purpose="location"> | 7826 | <context-group purpose="location"> |
7827 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7827 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7828 | <context context-type="linenumber">131</context> | 7828 | <context context-type="linenumber">131</context> |
@@ -7846,7 +7846,7 @@ | |||
7846 | </trans-unit> | 7846 | </trans-unit> |
7847 | <trans-unit id="6632896893630378443" datatype="html"> | 7847 | <trans-unit id="6632896893630378443" datatype="html"> |
7848 | <source>Display name is required.</source> | 7848 | <source>Display name is required.</source> |
7849 | <target state="translated">Le nom d'affichage est requis.</target> | 7849 | <target state="translated">Le nom d’affichage est requis.</target> |
7850 | <context-group purpose="location"> | 7850 | <context-group purpose="location"> |
7851 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7851 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7852 | <context context-type="linenumber">153</context> | 7852 | <context context-type="linenumber">153</context> |
@@ -7978,7 +7978,7 @@ | |||
7978 | </trans-unit> | 7978 | </trans-unit> |
7979 | <trans-unit id="44862519224794374" datatype="html"> | 7979 | <trans-unit id="44862519224794374" datatype="html"> |
7980 | <source>Average frame rate</source> | 7980 | <source>Average frame rate</source> |
7981 | <target state="translated">Fréquence d'images moyenne</target> | 7981 | <target state="translated">Fréquence d’images moyenne</target> |
7982 | <context-group purpose="location"> | 7982 | <context-group purpose="location"> |
7983 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | 7983 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
7984 | <context context-type="linenumber">181</context> | 7984 | <context context-type="linenumber">181</context> |
@@ -7994,7 +7994,7 @@ | |||
7994 | </trans-unit> | 7994 | </trans-unit> |
7995 | <trans-unit id="7858676566953242358" datatype="html"> | 7995 | <trans-unit id="7858676566953242358" datatype="html"> |
7996 | <source>Sample rate</source> | 7996 | <source>Sample rate</source> |
7997 | <target state="translated">Fréquence d'échantillonnage</target> | 7997 | <target state="translated">Fréquence d’échantillonnage</target> |
7998 | <context-group purpose="location"> | 7998 | <context-group purpose="location"> |
7999 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | 7999 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
8000 | <context context-type="linenumber">186</context> | 8000 | <context context-type="linenumber">186</context> |
@@ -8110,7 +8110,7 @@ | |||
8110 | </trans-unit> | 8110 | </trans-unit> |
8111 | <trans-unit id="658727060940996385" datatype="html"> | 8111 | <trans-unit id="658727060940996385" datatype="html"> |
8112 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 8112 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
8113 | <target state="translated">Le renouvellement du jeton empêchera les clients précédemment configurés de récupérer le flux tant qu'ils n'auront pas utilisé le nouveau jeton. Poursuivre ?</target> | 8113 | <target state="translated">Le renouvellement du jeton empêchera les clients précédemment configurés de récupérer le flux tant qu'ils n’auront pas utilisé le nouveau jeton. Poursuivre ?</target> |
8114 | <context-group purpose="location"> | 8114 | <context-group purpose="location"> |
8115 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 8115 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
8116 | <context context-type="linenumber">41</context> | 8116 | <context context-type="linenumber">41</context> |
@@ -8142,7 +8142,7 @@ | |||
8142 | </trans-unit> | 8142 | </trans-unit> |
8143 | <trans-unit id="5302915360176176604" datatype="html"> | 8143 | <trans-unit id="5302915360176176604" datatype="html"> |
8144 | <source>SUBSCRIPTION FEED</source> | 8144 | <source>SUBSCRIPTION FEED</source> |
8145 | <target state="translated">FLUX D'ABONNEMENT</target> | 8145 | <target state="translated">FLUX D’ABONNEMENT</target> |
8146 | <context-group purpose="location"> | 8146 | <context-group purpose="location"> |
8147 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 8147 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
8148 | <context context-type="linenumber">8</context> | 8148 | <context context-type="linenumber">8</context> |
@@ -8490,7 +8490,7 @@ | |||
8490 | </trans-unit> | 8490 | </trans-unit> |
8491 | <trans-unit id="2124774733637750483" datatype="html"> | 8491 | <trans-unit id="2124774733637750483" datatype="html"> |
8492 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 8492 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
8493 | <target state="translated">Court texte décrivant les moyens de soutien à disposition (plateforme de dons, médias...).<br /><br /> Quand vous mettrez en ligne une vidéo dans cette chaîne, son champ de support sera automatiquement rempli par celui-ci.</target> | 8493 | <target state="translated">Court texte décrivant les moyens de soutien à disposition (plateforme de dons, médias…).<br /><br /> Quand vous mettrez en ligne une vidéo dans cette chaîne, son champ de support sera automatiquement rempli par celui-ci.</target> |
8494 | <context-group purpose="location"> | 8494 | <context-group purpose="location"> |
8495 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> | 8495 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> |
8496 | <context context-type="linenumber">77,78</context> | 8496 | <context context-type="linenumber">77,78</context> |
@@ -8542,7 +8542,7 @@ | |||
8542 | </trans-unit> | 8542 | </trans-unit> |
8543 | <trans-unit id="626184983378002054" datatype="html"> | 8543 | <trans-unit id="626184983378002054" datatype="html"> |
8544 | <source>Example: my_channel</source> | 8544 | <source>Example: my_channel</source> |
8545 | <target state="translated">Exemple : ma_chaîne</target> | 8545 | <target state="translated">Exemple : ma_chaîne</target> |
8546 | <context-group purpose="location"> | 8546 | <context-group purpose="location"> |
8547 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> | 8547 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> |
8548 | <context context-type="linenumber">35</context> | 8548 | <context context-type="linenumber">35</context> |
@@ -8622,7 +8622,7 @@ | |||
8622 | </trans-unit> | 8622 | </trans-unit> |
8623 | <trans-unit id="6880459830525364741" datatype="html"> | 8623 | <trans-unit id="6880459830525364741" datatype="html"> |
8624 | <source>Support text must be at least 3 characters long.</source> | 8624 | <source>Support text must be at least 3 characters long.</source> |
8625 | <target state="translated">Le texte de soutien doit être composé d'au moins 3 caractères.</target> | 8625 | <target state="translated">Le texte de soutien doit être composé d’au moins 3 caractères.</target> |
8626 | <context-group purpose="location"> | 8626 | <context-group purpose="location"> |
8627 | <context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context> | 8627 | <context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context> |
8628 | <context context-type="linenumber">49</context> | 8628 | <context context-type="linenumber">49</context> |
@@ -8654,7 +8654,7 @@ | |||
8654 | </trans-unit> | 8654 | </trans-unit> |
8655 | <trans-unit id="751740263472313326" datatype="html"> | 8655 | <trans-unit id="751740263472313326" datatype="html"> |
8656 | <source>Unread first</source> | 8656 | <source>Unread first</source> |
8657 | <target state="translated">Non lu d'abord</target> | 8657 | <target state="translated">Non lu d’abord</target> |
8658 | <context-group purpose="location"> | 8658 | <context-group purpose="location"> |
8659 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> | 8659 | <context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context> |
8660 | <context context-type="linenumber">12</context> | 8660 | <context context-type="linenumber">12</context> |
@@ -8774,7 +8774,7 @@ | |||
8774 | </trans-unit> | 8774 | </trans-unit> |
8775 | <trans-unit id="9209781328340965816" datatype="html"> | 8775 | <trans-unit id="9209781328340965816" datatype="html"> |
8776 | <source>Filter...</source> | 8776 | <source>Filter...</source> |
8777 | <target state="translated">Filtrage...</target> | 8777 | <target state="translated">Filtrage…</target> |
8778 | <context-group purpose="location"> | 8778 | <context-group purpose="location"> |
8779 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 8779 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
8780 | <context context-type="linenumber">23</context> | 8780 | <context context-type="linenumber">23</context> |
@@ -8858,7 +8858,7 @@ | |||
8858 | </trans-unit> | 8858 | </trans-unit> |
8859 | <trans-unit id="8246779176913476983" datatype="html"> | 8859 | <trans-unit id="8246779176913476983" datatype="html"> |
8860 | <source>Open instance in a new tab</source> | 8860 | <source>Open instance in a new tab</source> |
8861 | <target state="translated">Ouvrir l'instance dans une nouvelle fenêtre</target> | 8861 | <target state="translated">Ouvrir l’instance dans une nouvelle fenêtre</target> |
8862 | <context-group purpose="location"> | 8862 | <context-group purpose="location"> |
8863 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> | 8863 | <context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context> |
8864 | <context context-type="linenumber">46</context> | 8864 | <context context-type="linenumber">46</context> |
@@ -9542,7 +9542,7 @@ | |||
9542 | </trans-unit> | 9542 | </trans-unit> |
9543 | <trans-unit id="8854094932942190741" datatype="html"> | 9543 | <trans-unit id="8854094932942190741" datatype="html"> |
9544 | <source>Search...</source> | 9544 | <source>Search...</source> |
9545 | <target state="translated">Chercher...</target> | 9545 | <target state="translated">Chercher…</target> |
9546 | <context-group purpose="location"> | 9546 | <context-group purpose="location"> |
9547 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 9547 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
9548 | <context context-type="linenumber">6</context> | 9548 | <context context-type="linenumber">6</context> |
@@ -10819,7 +10819,7 @@ | |||
10819 | </trans-unit> | 10819 | </trans-unit> |
10820 | <trans-unit id="872792317034860453" datatype="html"> | 10820 | <trans-unit id="872792317034860453" datatype="html"> |
10821 | <source>Comment:</source> | 10821 | <source>Comment:</source> |
10822 | <target state="translated">Commentaire :</target> | 10822 | <target state="translated">Commentaire :</target> |
10823 | <context-group purpose="location"> | 10823 | <context-group purpose="location"> |
10824 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> | 10824 | <context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context> |
10825 | <context context-type="linenumber">105</context> | 10825 | <context context-type="linenumber">105</context> |
@@ -11019,7 +11019,7 @@ | |||
11019 | </trans-unit> | 11019 | </trans-unit> |
11020 | <trans-unit id="1411398404280870617" datatype="html"> | 11020 | <trans-unit id="1411398404280870617" datatype="html"> |
11021 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> | 11021 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> |
11022 | <target state="translated">En théorie, une personne ayant suffisamment de compétences techniques pourrait créer un script qui suit quelle IP télécharge quelle vidéo. En pratique, c'est beaucoup plus difficile car :</target> | 11022 | <target state="translated">En théorie, une personne ayant suffisamment de compétences techniques pourrait créer un script qui suit quelle IP télécharge quelle vidéo. En pratique, c'est beaucoup plus difficile car :</target> |
11023 | <context-group purpose="location"> | 11023 | <context-group purpose="location"> |
11024 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 11024 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
11025 | <context context-type="linenumber">88,90</context> | 11025 | <context context-type="linenumber">88,90</context> |
@@ -11059,7 +11059,7 @@ | |||
11059 | </trans-unit> | 11059 | </trans-unit> |
11060 | <trans-unit id="7196664247366401915" datatype="html"> | 11060 | <trans-unit id="7196664247366401915" datatype="html"> |
11061 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> | 11061 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> |
11062 | <target state="translated">L’adresse IP est une information vague : en général, elle change régulièrement et peut représenter de nombreuses personnes ou entités</target> | 11062 | <target state="translated">L’adresse IP est une information vague : en général, elle change régulièrement et peut représenter de nombreuses personnes ou entités</target> |
11063 | <context-group purpose="location"> | 11063 | <context-group purpose="location"> |
11064 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 11064 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
11065 | <context context-type="linenumber">114,115</context> | 11065 | <context context-type="linenumber">114,115</context> |
@@ -11067,7 +11067,7 @@ | |||
11067 | </trans-unit> | 11067 | </trans-unit> |
11068 | <trans-unit id="1120376809358109718" datatype="html"> | 11068 | <trans-unit id="1120376809358109718" datatype="html"> |
11069 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 11069 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
11070 | <target state="translated">Les pairs du Web ne sont pas accessibles publiquement : parce que nous utilisons le transport websocket, ce protocole est différent d'un tracker BitTorrent classique. Quand vous êtes dans un navigateur, vous envoyez un signal contenant votre adresse IP au tracker qui va choisir aléatoirement d'autres pairs à qui transmettre l'information. Voir <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>ce document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> pour plus d'information </target> | 11070 | <target state="translated">Les pairs du Web ne sont pas accessibles publiquement : parce que nous utilisons le transport websocket, ce protocole est différent d'un tracker BitTorrent classique. Quand vous êtes dans un navigateur, vous envoyez un signal contenant votre adresse IP au tracker qui va choisir aléatoirement d'autres pairs à qui transmettre l'information. Voir <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>ce document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> pour plus d'information </target> |
11071 | <context-group purpose="location"> | 11071 | <context-group purpose="location"> |
11072 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 11072 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
11073 | <context context-type="linenumber">118,122</context> | 11073 | <context context-type="linenumber">118,122</context> |
@@ -11107,7 +11107,7 @@ | |||
11107 | </trans-unit> | 11107 | </trans-unit> |
11108 | <trans-unit id="8804946818315976118" datatype="html"> | 11108 | <trans-unit id="8804946818315976118" datatype="html"> |
11109 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> | 11109 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> |
11110 | <target state="translated">Votre adresse IP est publique, donc chaque fois que vous consultez un site web, un certain nombre d’acteurs (en plus du site final) voient votre IP dans leurs journaux de connexion : FAI/routeurs/trackers/CDN et plus encore. PeerTube est transparent à ce sujet : nous vous avertissons que si vous voulez garder votre IP privée, vous devez utiliser un VPN ou le navigateur Tor. Penser que supprimer le P2P de PeerTube vous rendra l’anonymat n’a pas de sens.</target> | 11110 | <target state="translated">Votre adresse IP est publique, donc chaque fois que vous consultez un site web, un certain nombre d’acteurs (en plus du site final) voient votre IP dans leurs journaux de connexion : FAI/routeurs/trackers/CDN et plus encore. PeerTube est transparent à ce sujet : nous vous avertissons que si vous voulez garder votre IP privée, vous devez utiliser un VPN ou le navigateur Tor. Penser que supprimer le P2P de PeerTube vous rendra l’anonymat n’a pas de sens.</target> |
11111 | <context-group purpose="location"> | 11111 | <context-group purpose="location"> |
11112 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 11112 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
11113 | <context context-type="linenumber">141,145</context> | 11113 | <context context-type="linenumber">141,145</context> |
@@ -11123,7 +11123,7 @@ | |||
11123 | </trans-unit> | 11123 | </trans-unit> |
11124 | <trans-unit id="7404776804526394585" datatype="html"> | 11124 | <trans-unit id="7404776804526394585" datatype="html"> |
11125 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> | 11125 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> |
11126 | <target state="translated">PeerTube veut offrir les meilleures contre-mesures possibles, pour vous donner plus de choix et rendre les attaques moins probables. Voici ce que nous avons mis en place jusqu’à présent :</target> | 11126 | <target state="translated">PeerTube veut offrir les meilleures contre-mesures possibles, pour vous donner plus de choix et rendre les attaques moins probables. Voici ce que nous avons mis en place jusqu’à présent :</target> |
11127 | <context-group purpose="location"> | 11127 | <context-group purpose="location"> |
11128 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 11128 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
11129 | <context context-type="linenumber">150,152</context> | 11129 | <context context-type="linenumber">150,152</context> |
@@ -11799,7 +11799,7 @@ | |||
11799 | </trans-unit> | 11799 | </trans-unit> |
11800 | <trans-unit id="961774488937452220" datatype="html"> | 11800 | <trans-unit id="961774488937452220" datatype="html"> |
11801 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH" equiv-text="originUrl"/>"><x id="PH_1" equiv-text="originUrl"/></a>?</source> | 11801 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH" equiv-text="originUrl"/>"><x id="PH_1" equiv-text="originUrl"/></a>?</source> |
11802 | <target>Cette vidéo n'est pas disponible sur cette instance. Voulez-vous être redirigé vers l'instance d'origine : <a href="<x id="PH" equiv-text="originUrl"/>"><x id="PH_1" equiv-text="originUrl"/></a> ?</target> | 11802 | <target>Cette vidéo n'est pas disponible sur cette instance. Voulez-vous être redirigé vers l'instance d'origine : <a href="<x id="PH" equiv-text="originUrl"/>"><x id="PH_1" equiv-text="originUrl"/></a> ?</target> |
11803 | <context-group purpose="location"> | 11803 | <context-group purpose="location"> |
11804 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context> | 11804 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context> |
11805 | <context context-type="linenumber">415</context> | 11805 | <context context-type="linenumber">415</context> |
@@ -11879,7 +11879,7 @@ | |||
11879 | </trans-unit> | 11879 | </trans-unit> |
11880 | <trans-unit id="5996585232248234904" datatype="html"> | 11880 | <trans-unit id="5996585232248234904" datatype="html"> |
11881 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 11881 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
11882 | <target state="translated">Sauter à un pourcentage de la vidéo : 0 est 0 % et 9 est 90 % (nécessite le focus sur le lecteur)</target> | 11882 | <target state="translated">Sauter à un pourcentage de la vidéo : 0 est 0 % et 9 est 90 % (nécessite le focus sur le lecteur)</target> |
11883 | <context-group purpose="location"> | 11883 | <context-group purpose="location"> |
11884 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context> | 11884 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context> |
11885 | <context context-type="linenumber">924</context> | 11885 | <context context-type="linenumber">924</context> |
@@ -12123,7 +12123,7 @@ | |||
12123 | </trans-unit> | 12123 | </trans-unit> |
12124 | <trans-unit id="6402393085909200998" datatype="html"> | 12124 | <trans-unit id="6402393085909200998" datatype="html"> |
12125 | <source>Friendly Reminder:</source> | 12125 | <source>Friendly Reminder:</source> |
12126 | <target state="translated">Rappel :</target> | 12126 | <target state="translated">Rappel :</target> |
12127 | <context-group purpose="location"> | 12127 | <context-group purpose="location"> |
12128 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context> | 12128 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context> |
12129 | <context context-type="linenumber">299</context> | 12129 | <context context-type="linenumber">299</context> |
@@ -12283,7 +12283,7 @@ | |||
12283 | </trans-unit> | 12283 | </trans-unit> |
12284 | <trans-unit id="5733075023444401902" datatype="html"> | 12284 | <trans-unit id="5733075023444401902" datatype="html"> |
12285 | <source>Add comment...</source> | 12285 | <source>Add comment...</source> |
12286 | <target state="translated">Ajouter un commentaire...</target> | 12286 | <target state="translated">Ajouter un commentaire…</target> |
12287 | <context-group purpose="location"> | 12287 | <context-group purpose="location"> |
12288 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 12288 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
12289 | <context context-type="linenumber">6</context> | 12289 | <context context-type="linenumber">6</context> |
@@ -12299,7 +12299,7 @@ | |||
12299 | </trans-unit> | 12299 | </trans-unit> |
12300 | <trans-unit id="5793595564950675122" datatype="html"> | 12300 | <trans-unit id="5793595564950675122" datatype="html"> |
12301 | <source>Markdown compatible that supports:</source> | 12301 | <source>Markdown compatible that supports:</source> |
12302 | <target state="translated">Compatible Markdown qui supporte :</target> | 12302 | <target state="translated">Compatible Markdown qui supporte :</target> |
12303 | <context-group purpose="location"> | 12303 | <context-group purpose="location"> |
12304 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 12304 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
12305 | <context context-type="linenumber">15</context> | 12305 | <context context-type="linenumber">15</context> |
@@ -12687,7 +12687,7 @@ | |||
12687 | </trans-unit> | 12687 | </trans-unit> |
12688 | <trans-unit id="6760671759540007434" datatype="html"> | 12688 | <trans-unit id="6760671759540007434" datatype="html"> |
12689 | <source>You can import any URL <x id="START_LINK" ctype="x-a" equiv-text="<a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>"/>supported by youtube-dl<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </source> | 12689 | <source>You can import any URL <x id="START_LINK" ctype="x-a" equiv-text="<a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>"/>supported by youtube-dl<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </source> |
12690 | <target state="translated">Vous pouvez importer toute URL <x id="START_LINK" ctype="x-a" equiv-text="<a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>"/>gérée par youtube-dl<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> ou pointant sur un fichier audio/vidéo. Vous devez vous assurer d'avoir les droits de diffusion sur cette vidéo, sans quoi vous et votre instance risqueriez des poursuites juridiques. </target> | 12690 | <target state="translated">Vous pouvez importer toute URL <x id="START_LINK" ctype="x-a" equiv-text="<a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>"/>gérée par youtube-dl<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> ou pointant sur un fichier audio/vidéo. Vous devez vous assurer d’avoir les droits de diffusion sur cette vidéo, sans quoi vous et votre instance risqueriez des poursuites juridiques. </target> |
12691 | <context-group purpose="location"> | 12691 | <context-group purpose="location"> |
12692 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context> | 12692 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context> |
12693 | <context context-type="linenumber">11,14</context> | 12693 | <context context-type="linenumber">11,14</context> |
@@ -12799,7 +12799,7 @@ | |||
12799 | </trans-unit> | 12799 | </trans-unit> |
12800 | <trans-unit id="5297709903228580202" datatype="html"> | 12800 | <trans-unit id="5297709903228580202" datatype="html"> |
12801 | <source>Your video quota is exceeded with this video ( video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> | 12801 | <source>Your video quota is exceeded with this video ( video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> |
12802 | <target state="translated">Votre quota vidéo est dépassé avec cette vidéo ( taille de la vidéo : <x id="PH" equiv-text="videoSizeBytes"/>, utilisé : <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota : <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 12802 | <target state="translated">Votre quota vidéo est dépassé avec cette vidéo ( taille de la vidéo : <x id="PH" equiv-text="videoSizeBytes"/>, utilisé : <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota : <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
12803 | <context-group purpose="location"> | 12803 | <context-group purpose="location"> |
12804 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 12804 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
12805 | <context context-type="linenumber">289,290</context> | 12805 | <context context-type="linenumber">289,290</context> |
@@ -13742,7 +13742,7 @@ | |||
13742 | </trans-unit> | 13742 | </trans-unit> |
13743 | <trans-unit id="1952020204339597057" datatype="html"> | 13743 | <trans-unit id="1952020204339597057" datatype="html"> |
13744 | <source>Short text to tell people how they can support you (membership platform...).</source> | 13744 | <source>Short text to tell people how they can support you (membership platform...).</source> |
13745 | <target state="translated">Un court texte pour dire aux gens comment ils peuvent vous soutenir (plateforme d'adhésion...).</target> | 13745 | <target state="translated">Un court texte pour dire aux gens comment ils peuvent vous soutenir (plateforme d'adhésion…).</target> |
13746 | <context-group purpose="location"> | 13746 | <context-group purpose="location"> |
13747 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 13747 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
13748 | <context context-type="linenumber">280,281</context> | 13748 | <context context-type="linenumber">280,281</context> |
@@ -13934,7 +13934,7 @@ | |||
13934 | </trans-unit> | 13934 | </trans-unit> |
13935 | <trans-unit id="4678289986918934018" datatype="html"> | 13935 | <trans-unit id="4678289986918934018" datatype="html"> |
13936 | <source>Block reason:</source> | 13936 | <source>Block reason:</source> |
13937 | <target state="translated">Raison du blocage :</target> | 13937 | <target state="translated">Raison du blocage :</target> |
13938 | <context-group purpose="location"> | 13938 | <context-group purpose="location"> |
13939 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> | 13939 | <context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context> |
13940 | <context context-type="linenumber">104</context> | 13940 | <context context-type="linenumber">104</context> |
@@ -14046,7 +14046,7 @@ | |||
14046 | </trans-unit> | 14046 | </trans-unit> |
14047 | <trans-unit id="3894950702316166331" datatype="html"> | 14047 | <trans-unit id="3894950702316166331" datatype="html"> |
14048 | <source>Loading...</source> | 14048 | <source>Loading...</source> |
14049 | <target state="translated">Chargement...</target> | 14049 | <target state="translated">Chargement…</target> |
14050 | <context-group purpose="location"> | 14050 | <context-group purpose="location"> |
14051 | <context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context> | 14051 | <context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context> |
14052 | <context context-type="linenumber">38</context> | 14052 | <context context-type="linenumber">38</context> |
@@ -14206,7 +14206,7 @@ | |||
14206 | </trans-unit> | 14206 | </trans-unit> |
14207 | <trans-unit id="3203902538239082422" datatype="html"> | 14207 | <trans-unit id="3203902538239082422" datatype="html"> |
14208 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> | 14208 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> |
14209 | <target state="translated">Vous avez activé l'inscription : nous avons automatiquement activé la case à cocher "Bloquer automatiquement les nouvelles vidéos" de la section "Vidéos" juste en dessous.</target> | 14209 | <target state="translated">Vous avez activé l'inscription : nous avons automatiquement activé la case à cocher « Bloquer automatiquement les nouvelles vidéos » de la section « Vidéos » immédiatement en dessous.</target> |
14210 | <context-group purpose="location"> | 14210 | <context-group purpose="location"> |
14211 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | 14211 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
14212 | <context context-type="linenumber">473</context> | 14212 | <context context-type="linenumber">473</context> |
@@ -14902,7 +14902,7 @@ | |||
14902 | </trans-unit> | 14902 | </trans-unit> |
14903 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 14903 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
14904 | <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" ctype="lb" equiv-text="<br /> "/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> 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" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to see if you instance is allowed. </source> | 14904 | <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" ctype="lb" equiv-text="<br /> "/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> 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" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to see if you instance is allowed. </source> |
14905 | <target state="translated">Si votre instance est explicitement autorisée par Twitter, un lecteur vidéo sera intégré au fil Twitter sur votre partage de vidéo PeerTube.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Si l'instance ne l'est pas, nous utilisons une fiche lien image qui redirige vers votre instance PeerTube.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Cochez cette case, enregistrez la configuration et testez avec l'URL d'une vidéo de votre instance (https://exemple.com/videos/regarder/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> pour voir si votre instance est autorisée. </target> | 14905 | <target state="translated">Si votre instance est explicitement autorisée par Twitter, un lecteur vidéo sera intégré au fil Twitter sur votre partage de vidéo PeerTube.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Si l’instance ne l’est pas, nous utilisons une fiche lien image qui redirige vers votre instance PeerTube.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Cochez cette case, enregistrez la configuration et testez avec l’URL d’une vidéo de votre instance (https://exemple.com/videos/regarder/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> pour voir si votre instance est autorisée. </target> |
14906 | <context-group purpose="location"> | 14906 | <context-group purpose="location"> |
14907 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 14907 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
14908 | <context context-type="linenumber">682,687</context> | 14908 | <context context-type="linenumber">682,687</context> |
@@ -15066,7 +15066,7 @@ | |||
15066 | </trans-unit> | 15066 | </trans-unit> |
15067 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | 15067 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> |
15068 | <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 plain WebTorrent:<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 especially 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> | 15068 | <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 plain WebTorrent:<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 especially 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> |
15069 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Nécessite ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Génère des listes de lecture HLS et des fichiers MP4 fragmentés, ce qui permet une meilleure lecture qu'avec le WebTorrent classique :<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>"/>Le changement de résolution se fait plus en douceur<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Lecture plus rapide, surtout pour les vidéos longues<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Lecture plus stable (moins de bogues/charge infinie)<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>"/>Si vous avez également activé la prise en charge de WebTorrent, le stockage des vidéos sera multiplié par 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 15069 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Nécessite ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Génère des listes de lecture HLS et des fichiers MP4 fragmentés, ce qui permet une meilleure lecture qu'avec le WebTorrent classique :<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>"/>Le changement de résolution se fait plus en douceur<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Lecture plus rapide, surtout pour les vidéos longues<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Lecture plus stable (moins de bogues/charge infinie)<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>"/>Si vous avez également activé la prise en charge de WebTorrent, le stockage des vidéos sera multiplié par 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
15070 | <context-group purpose="location"> | 15070 | <context-group purpose="location"> |
15071 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 15071 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
15072 | <context context-type="linenumber">805,814</context> | 15072 | <context context-type="linenumber">805,814</context> |
@@ -15310,7 +15310,7 @@ | |||
15310 | </trans-unit> | 15310 | </trans-unit> |
15311 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 15311 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
15312 | <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> | 15312 | <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> |
15313 | <target state="translated">Écrivez votre code JavaScript directement.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/>Exemple : <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('mon instance est formidable');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | 15313 | <target state="translated">Écrivez votre code JavaScript directement.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/>Exemple : <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('mon instance est formidable');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
15314 | <context-group purpose="location"> | 15314 | <context-group purpose="location"> |
15315 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 15315 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
15316 | <context context-type="linenumber">1077</context> | 15316 | <context context-type="linenumber">1077</context> |
@@ -15318,7 +15318,7 @@ | |||
15318 | </trans-unit> | 15318 | </trans-unit> |
15319 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 15319 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
15320 | <source>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>"/></source> | 15320 | <source>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>"/></source> |
15321 | <target state="translated">Écrivez directement le code CSS. Exemple : <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=" {{ '{' }"/> couleur : rouge ; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Précisez avec <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> pour passer outre les styles. Exemple : <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> | 15321 | <target state="translated">Écrivez directement le code CSS. Exemple : <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=" {{ '{' }"/> couleur : rouge ; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Précisez avec <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> pour passer outre les styles. Exemple : <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> |
15322 | <context-group purpose="location"> | 15322 | <context-group purpose="location"> |
15323 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 15323 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
15324 | <context context-type="linenumber">1096,1107</context> | 15324 | <context context-type="linenumber">1096,1107</context> |
diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 8d1e2d26d..f52c2d9ea 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf | |||
@@ -5,8 +5,8 @@ | |||
5 | <trans-unit id="ngb.alert.close" datatype="html"> | 5 | <trans-unit id="ngb.alert.close" datatype="html"> |
6 | <source>Close</source> | 6 | <source>Close</source> |
7 | <target state="translated">Pechar</target> | 7 | <target state="translated">Pechar</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/alert/alert.ts</context><context context-type="linenumber">79</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/alert/alert.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
11 | <source>Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source> | 11 | <source>Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source> |
12 | <target state="translated">Páxina <x id="INTERPOLATION" equiv-text="get wrap("/> de <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target> | 12 | <target state="translated">Páxina <x id="INTERPOLATION" equiv-text="get wrap("/> de <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target> |
@@ -27,8 +27,8 @@ | |||
27 | <trans-unit id="ngb.carousel.next" datatype="html"> | 27 | <trans-unit id="ngb.carousel.next" datatype="html"> |
28 | <source>Next</source> | 28 | <source>Next</source> |
29 | <target state="translated">Seguinte</target> | 29 | <target state="translated">Seguinte</target> |
30 | 30 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context><context context-type="linenumber">197</context></context-group> | |
31 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context><context context-type="linenumber">197</context></context-group></trans-unit> | 31 | </trans-unit> |
32 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 32 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
33 | <source>Select month</source> | 33 | <source>Select month</source> |
34 | <target state="translated">Elexir mes</target> | 34 | <target state="translated">Elexir mes</target> |
@@ -80,98 +80,98 @@ | |||
80 | <trans-unit id="ngb.pagination.first" datatype="html"> | 80 | <trans-unit id="ngb.pagination.first" datatype="html"> |
81 | <source>««</source> | 81 | <source>««</source> |
82 | <target state="translated">««</target> | 82 | <target state="translated">««</target> |
83 | 83 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group> | |
84 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group></trans-unit> | 84 | </trans-unit> |
85 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 85 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
86 | <source>«</source> | 86 | <source>«</source> |
87 | <target state="translated">«</target> | 87 | <target state="translated">«</target> |
88 | 88 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group> | |
89 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 89 | </trans-unit> |
90 | <trans-unit id="ngb.pagination.next" datatype="html"> | 90 | <trans-unit id="ngb.pagination.next" datatype="html"> |
91 | <source>»</source> | 91 | <source>»</source> |
92 | <target state="translated">»</target> | 92 | <target state="translated">»</target> |
93 | 93 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group> | |
94 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 94 | </trans-unit> |
95 | <trans-unit id="ngb.pagination.last" datatype="html"> | 95 | <trans-unit id="ngb.pagination.last" datatype="html"> |
96 | <source>»»</source> | 96 | <source>»»</source> |
97 | <target state="translated">»»</target> | 97 | <target state="translated">»»</target> |
98 | 98 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group> | |
99 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 99 | </trans-unit> |
100 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 100 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
101 | <source>First</source> | 101 | <source>First</source> |
102 | <target state="translated">Primeiro</target> | 102 | <target state="translated">Primeiro</target> |
103 | 103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group> | |
104 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group></trans-unit> | 104 | </trans-unit> |
105 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 105 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
106 | <source>Previous</source> | 106 | <source>Previous</source> |
107 | <target state="translated">Anterior</target> | 107 | <target state="translated">Anterior</target> |
108 | 108 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group> | |
109 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group></trans-unit> | 109 | </trans-unit> |
110 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 110 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
111 | <source>Next</source> | 111 | <source>Next</source> |
112 | <target state="translated">Seguinte</target> | 112 | <target state="translated">Seguinte</target> |
113 | 113 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group> | |
114 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group></trans-unit> | 114 | </trans-unit> |
115 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 115 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
116 | <source>Last</source> | 116 | <source>Last</source> |
117 | <target state="translated">Último</target> | 117 | <target state="translated">Último</target> |
118 | 118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group> | |
119 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> | 119 | </trans-unit> |
120 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 120 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
121 | <source><x id="INTERPOLATION" equiv-text="nd so on. *"/></source> | 121 | <source><x id="INTERPOLATION" equiv-text="nd so on. *"/></source> |
122 | <target state="translated"><x id="INTERPOLATION" equiv-text="nd so on. *"/></target> | 122 | <target state="translated"><x id="INTERPOLATION" equiv-text="nd so on. *"/></target> |
123 | 123 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context><context context-type="linenumber">60</context></context-group> | |
124 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 124 | </trans-unit> |
125 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 125 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
126 | <source>HH</source> | 126 | <source>HH</source> |
127 | <target state="translated">HH</target> | 127 | <target state="translated">HH</target> |
128 | 128 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">133</context></context-group> | |
129 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 129 | </trans-unit> |
130 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 130 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
131 | <source>Hours</source> | 131 | <source>Hours</source> |
132 | <target state="translated">Horas</target> | 132 | <target state="translated">Horas</target> |
133 | 133 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">155</context></context-group> | |
134 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 134 | </trans-unit> |
135 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 135 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
136 | <source>MM</source> | 136 | <source>MM</source> |
137 | <target state="translated">MM</target> | 137 | <target state="translated">MM</target> |
138 | 138 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">173</context></context-group> | |
139 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 139 | </trans-unit> |
140 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 140 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
141 | <source>Minutes</source> | 141 | <source>Minutes</source> |
142 | <target state="translated">Minutos</target> | 142 | <target state="translated">Minutos</target> |
143 | 143 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">188</context></context-group> | |
144 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">188</context></context-group></trans-unit> | 144 | </trans-unit> |
145 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 145 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
146 | <source>Increment hours</source> | 146 | <source>Increment hours</source> |
147 | <target state="translated">Aumentar horas</target> | 147 | <target state="translated">Aumentar horas</target> |
148 | 148 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">201</context></context-group> | |
149 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 149 | </trans-unit> |
150 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 150 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
151 | <source>Decrement hours</source> | 151 | <source>Decrement hours</source> |
152 | <target state="translated">DiminuÃr horas</target> | 152 | <target state="translated">DiminuÃr horas</target> |
153 | 153 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">223</context></context-group> | |
154 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">223</context></context-group></trans-unit> | 154 | </trans-unit> |
155 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 155 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
156 | <source>Increment minutes</source> | 156 | <source>Increment minutes</source> |
157 | <target state="translated">Aumentar minutos</target> | 157 | <target state="translated">Aumentar minutos</target> |
158 | 158 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">243</context></context-group> | |
159 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">243</context></context-group></trans-unit> | 159 | </trans-unit> |
160 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 160 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
161 | <source>Decrement minutes</source> | 161 | <source>Decrement minutes</source> |
162 | <target state="translated">DiminuÃr minutos</target> | 162 | <target state="translated">DiminuÃr minutos</target> |
163 | 163 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">264</context></context-group> | |
164 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 164 | </trans-unit> |
165 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 165 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
166 | <source>SS</source> | 166 | <source>SS</source> |
167 | <target state="translated">SS</target> | 167 | <target state="translated">SS</target> |
168 | 168 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">283</context></context-group> | |
169 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">283</context></context-group></trans-unit> | 169 | </trans-unit> |
170 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 170 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
171 | <source>Seconds</source> | 171 | <source>Seconds</source> |
172 | <target state="translated">Segundos</target> | 172 | <target state="translated">Segundos</target> |
173 | 173 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">295</context></context-group> | |
174 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 174 | </trans-unit> |
175 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 175 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
176 | <source>Increment seconds</source> | 176 | <source>Increment seconds</source> |
177 | <target state="translated">Aumentar segundos</target> | 177 | <target state="translated">Aumentar segundos</target> |
@@ -207,8 +207,8 @@ | |||
207 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 207 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
208 | <source>Close</source> | 208 | <source>Close</source> |
209 | <target state="translated">Pechar</target> | 209 | <target state="translated">Pechar</target> |
210 | 210 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group> | |
211 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group></trans-unit> | 211 | </trans-unit> |
212 | <trans-unit id="219462505467671767" datatype="html"> | 212 | <trans-unit id="219462505467671767" datatype="html"> |
213 | <source>Close the left menu</source> | 213 | <source>Close the left menu</source> |
214 | <target state="translated">Pechar o menú da esquerda</target> | 214 | <target state="translated">Pechar o menú da esquerda</target> |
@@ -316,8 +316,8 @@ | |||
316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> | 316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> |
317 | </trans-unit> | 317 | </trans-unit> |
318 | <trans-unit id="5504059606863599420" datatype="html"> | 318 | <trans-unit id="5504059606863599420" datatype="html"> |
319 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 319 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
320 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mencionoute en <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>vÃdeo <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 320 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mencionoute en <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>vÃdeo <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
321 | <context-group purpose="location"> | 321 | <context-group purpose="location"> |
322 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 322 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
323 | <context context-type="linenumber">164</context> | 323 | <context context-type="linenumber">164</context> |
@@ -334,16 +334,16 @@ | |||
334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> | 334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> |
335 | </trans-unit> | 335 | </trans-unit> |
336 | <trans-unit id="363592786729553688" datatype="html"> | 336 | <trans-unit id="363592786729553688" datatype="html"> |
337 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> | 337 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> |
338 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>Unha nova versión do complemento/decorado <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> está dispoñible: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> | 338 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>Unha nova versión do complemento/decorado <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> está dispoñible: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> |
339 | <context-group purpose="location"> | 339 | <context-group purpose="location"> |
340 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 340 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
341 | <context context-type="linenumber">198,199</context> | 341 | <context context-type="linenumber">198,199</context> |
342 | </context-group> | 342 | </context-group> |
343 | </trans-unit> | 343 | </trans-unit> |
344 | <trans-unit id="5055099158245592648" datatype="html"> | 344 | <trans-unit id="5055099158245592648" datatype="html"> |
345 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> | 345 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> |
346 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>Nova versión de PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> dispoñible: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> | 346 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>Nova versión de PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> dispoñible: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> |
347 | <context-group purpose="location"> | 347 | <context-group purpose="location"> |
348 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 348 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
349 | <context context-type="linenumber">206,207</context> | 349 | <context context-type="linenumber">206,207</context> |
@@ -367,13 +367,13 @@ | |||
367 | <trans-unit id="8817917090143649804" datatype="html"> | 367 | <trans-unit id="8817917090143649804" datatype="html"> |
368 | <source>Account muted</source> | 368 | <source>Account muted</source> |
369 | <target state="translated">Conta acalada</target> | 369 | <target state="translated">Conta acalada</target> |
370 | 370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group> | |
371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 371 | </trans-unit> |
372 | <trans-unit id="1684597533616494551" datatype="html"> | 372 | <trans-unit id="1684597533616494551" datatype="html"> |
373 | <source>Server muted</source> | 373 | <source>Server muted</source> |
374 | <target state="translated">Servidor acalado</target> | 374 | <target state="translated">Servidor acalado</target> |
375 | 375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">80</context></context-group> | |
376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 376 | </trans-unit> |
377 | <trans-unit id="5924559757556526785"> | 377 | <trans-unit id="5924559757556526785"> |
378 | <source>Save to</source> | 378 | <source>Save to</source> |
379 | <target>Gardar en</target> | 379 | <target>Gardar en</target> |
@@ -434,9 +434,8 @@ | |||
434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | 434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> |
435 | </trans-unit> | 435 | </trans-unit> |
436 | <trans-unit id="2193037168694505715" datatype="html"> | 436 | <trans-unit id="2193037168694505715" datatype="html"> |
437 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> | 437 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> |
438 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> | 438 | <target state="translated">Texto curto para dicirlle á audiencia de que xeito poden apoiar a canle (plataforma de membresÃa...).<br /><br /> Cando se sube un vÃdeo a esta canle, o campo de apoio completarase automáticamente con este texto.</target> |
439 | <target state="translated">Texto curto para dicirlle á audiencia de que xeito poden apoiar a canle (plataforma de membresÃa...).<br /><br /> Cando se sube un vÃdeo a esta canle, o campo de apoio completarase automáticamente con este texto.</target> | ||
440 | <context-group purpose="location"> | 439 | <context-group purpose="location"> |
441 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> | 440 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> |
442 | <context context-type="linenumber">67,68</context> | 441 | <context context-type="linenumber">67,68</context> |
@@ -510,9 +509,11 @@ | |||
510 | <trans-unit id="6325096236207614377"> | 509 | <trans-unit id="6325096236207614377"> |
511 | <source>Reason...</source> | 510 | <source>Reason...</source> |
512 | <target>Razón...</target> | 511 | <target>Razón...</target> |
513 | 512 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">16</context></context-group> | |
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="1781854282711822539" datatype="html"> | 513 | </trans-unit> |
515 | <source>Mute to also hide videos/comments</source><target state="new">Mute to also hide videos/comments</target> | 514 | <trans-unit id="1781854282711822539" datatype="html"> |
515 | <source>Mute to also hide videos/comments</source> | ||
516 | <target state="translated">Acalar para agochar tamén vÃdeos/comentarios</target> | ||
516 | <context-group purpose="location"> | 517 | <context-group purpose="location"> |
517 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 518 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
518 | <context context-type="linenumber">27</context> | 519 | <context context-type="linenumber">27</context> |
@@ -594,9 +595,9 @@ | |||
594 | <trans-unit id="9081463435738465430" datatype="html"> | 595 | <trans-unit id="9081463435738465430" datatype="html"> |
595 | <source>Blocked</source> | 596 | <source>Blocked</source> |
596 | <target state="translated">Bloqueado</target> | 597 | <target state="translated">Bloqueado</target> |
597 | 598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
598 | 599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">59</context></context-group> | |
599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 600 | </trans-unit> |
600 | <trans-unit id="870586304593427318" datatype="html"> | 601 | <trans-unit id="870586304593427318" datatype="html"> |
601 | <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source> | 602 | <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source> |
602 | <target state="translated">Tes a certeza de querer eliminar estos <x id="PH" equiv-text="videos.length"/> vÃdeos?</target> | 603 | <target state="translated">Tes a certeza de querer eliminar estos <x id="PH" equiv-text="videos.length"/> vÃdeos?</target> |
@@ -655,8 +656,8 @@ | |||
655 | <target> | 656 | <target> |
656 | Sensible | 657 | Sensible |
657 | </target> | 658 | </target> |
658 | 659 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">63</context></context-group> | |
659 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 660 | </trans-unit> |
660 | <trans-unit id="7708270344948043036"> | 661 | <trans-unit id="7708270344948043036"> |
661 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 662 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
662 | <target> | 663 | <target> |
@@ -718,15 +719,16 @@ | |||
718 | <trans-unit id="7585826646011739428"> | 719 | <trans-unit id="7585826646011739428"> |
719 | <source>Edit</source> | 720 | <source>Edit</source> |
720 | <target>Editar</target> | 721 | <target>Editar</target> |
721 | 722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
722 | 723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
723 | 724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
724 | 725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
725 | 726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
726 | 727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
727 | 728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group> | |
728 | 729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">310</context></context-group> | |
729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">310</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group> |
731 | </trans-unit> | ||
730 | <trans-unit id="5293515551330482519"> | 732 | <trans-unit id="5293515551330482519"> |
731 | <source>Truncated preview</source> | 733 | <source>Truncated preview</source> |
732 | <target>Vista previa recortada</target> | 734 | <target>Vista previa recortada</target> |
@@ -738,8 +740,8 @@ | |||
738 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> | 740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> |
739 | </trans-unit> | 741 | </trans-unit> |
740 | <trans-unit id="8644431249513874405" datatype="html"> | 742 | <trans-unit id="8644431249513874405" datatype="html"> |
741 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 743 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
742 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible que soporta:</target> | 744 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible que soporta:</target> |
743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
744 | </trans-unit> | 746 | </trans-unit> |
745 | <trans-unit id="146235964740293376" datatype="html"> | 747 | <trans-unit id="146235964740293376" datatype="html"> |
@@ -773,33 +775,33 @@ | |||
773 | <trans-unit id="7639191791633609999" datatype="html"> | 775 | <trans-unit id="7639191791633609999" datatype="html"> |
774 | <source>The live stream will be automatically terminated.</source> | 776 | <source>The live stream will be automatically terminated.</source> |
775 | <target state="translated">A retransmisión en directo rematará automáticamente.</target> | 777 | <target state="translated">A retransmisión en directo rematará automáticamente.</target> |
776 | 778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group> | |
777 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit> | 779 | </trans-unit> |
778 | <trans-unit id="8023282004085823427" datatype="html"> | 780 | <trans-unit id="8023282004085823427" datatype="html"> |
779 | <source><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</source> | 781 | <source><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</source> |
780 | <target state="translated"><x id="PH" equiv-text="this.video.name"/> vaise duplicar na túa instancia.</target> | 782 | <target state="translated"><x id="PH" equiv-text="this.video.name"/> vaise duplicar na túa instancia.</target> |
781 | 783 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">249</context></context-group> | |
782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit> | 784 | </trans-unit> |
783 | <trans-unit id="4140366911638662173" datatype="html"> | 785 | <trans-unit id="4140366911638662173" datatype="html"> |
784 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> | 786 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> |
785 | <target state="translated">Queres eliminar "<x id="PH" equiv-text="this.video.name"/>" ficheiros?</target> | 787 | <target state="translated">Queres eliminar "<x id="PH" equiv-text="this.video.name"/>" ficheiros?</target> |
786 | 788 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
787 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 789 | </trans-unit> |
788 | <trans-unit id="2955645766721124100" datatype="html"> | 790 | <trans-unit id="2955645766721124100" datatype="html"> |
789 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> | 791 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> |
790 | <target state="translated">Eliminar "<x id="PH" equiv-text="this.video.name"/>" ficheiros</target> | 792 | <target state="translated">Eliminar "<x id="PH" equiv-text="this.video.name"/>" ficheiros</target> |
791 | 793 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | |
792 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit> | 794 | </trans-unit> |
793 | <trans-unit id="7758350391886784213" datatype="html"> | 795 | <trans-unit id="7758350391886784213" datatype="html"> |
794 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> | 796 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> |
795 | <target state="translated">Eliminados os ficheiros de <x id="PH" equiv-text="video.name"/>.</target> | 797 | <target state="translated">Eliminados os ficheiros de <x id="PH" equiv-text="video.name"/>.</target> |
796 | 798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> | |
797 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 799 | </trans-unit> |
798 | <trans-unit id="6279087330074580345" datatype="html"> | 800 | <trans-unit id="6279087330074580345" datatype="html"> |
799 | <source>Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</source> | 801 | <source>Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</source> |
800 | <target state="translated">Traballos de transcodificación creados para <x id="PH" equiv-text="video.name"/>.</target> | 802 | <target state="translated">Traballos de transcodificación creados para <x id="PH" equiv-text="video.name"/>.</target> |
801 | 803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group> | |
802 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit> | 804 | </trans-unit> |
803 | <trans-unit id="2949829240129672512"> | 805 | <trans-unit id="2949829240129672512"> |
804 | <source>Using a syndication feed</source> | 806 | <source>Using a syndication feed</source> |
805 | <target>Utilizando unha fonte sindicada</target> | 807 | <target>Utilizando unha fonte sindicada</target> |
@@ -889,11 +891,11 @@ | |||
889 | <trans-unit id="2602586221576511475"> | 891 | <trans-unit id="2602586221576511475"> |
890 | <source>Video quota</source> | 892 | <source>Video quota</source> |
891 | <target>Cota de vÃdeo</target> | 893 | <target>Cota de vÃdeo</target> |
892 | 894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
893 | 895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
894 | 896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
895 | 897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group> | |
896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 898 | </trans-unit> |
897 | <trans-unit id="1502595455339510144"> | 899 | <trans-unit id="1502595455339510144"> |
898 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 900 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
899 | <target>Sen lÃmite <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> diario)<x id="CLOSE_TAG_NG_CONTAINER"/></target> | 901 | <target>Sen lÃmite <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> diario)<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
@@ -935,8 +937,10 @@ | |||
935 | <source>Loading instance statistics...</source> | 937 | <source>Loading instance statistics...</source> |
936 | <target state="translated">Cargando estatÃsticas da instancia...</target> | 938 | <target state="translated">Cargando estatÃsticas da instancia...</target> |
937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> | 939 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> |
938 | </trans-unit><trans-unit id="5851173629316588976" datatype="html"> | 940 | </trans-unit> |
939 | <source>By users on this instance</source><target state="new">By users on this instance</target> | 941 | <trans-unit id="5851173629316588976" datatype="html"> |
942 | <source>By users on this instance</source> | ||
943 | <target state="translated">Por usuarias nesta instancia</target> | ||
940 | <context-group purpose="location"> | 944 | <context-group purpose="location"> |
941 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 945 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
942 | <context context-type="linenumber">4</context> | 946 | <context context-type="linenumber">4</context> |
@@ -945,9 +949,8 @@ | |||
945 | <trans-unit id="2906587845957718064"> | 949 | <trans-unit id="2906587845957718064"> |
946 | <source>Local</source> | 950 | <source>Local</source> |
947 | <target>Local</target> | 951 | <target>Local</target> |
948 | 952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group> | |
949 | 953 | </trans-unit> | |
950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | ||
951 | <trans-unit id="1670306451865226564" datatype="html"> | 954 | <trans-unit id="1670306451865226564" datatype="html"> |
952 | <source>users</source> | 955 | <source>users</source> |
953 | <target state="translated">usuarias</target> | 956 | <target state="translated">usuarias</target> |
@@ -958,14 +961,18 @@ | |||
958 | <target state="translated">vÃdeos</target> | 961 | <target state="translated">vÃdeos</target> |
959 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> | 962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> |
960 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> | 963 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> |
961 | </trans-unit><trans-unit id="1408045022812097780" datatype="html"> | 964 | </trans-unit> |
962 | <source>views</source><target state="new">views</target> | 965 | <trans-unit id="1408045022812097780" datatype="html"> |
966 | <source>views</source> | ||
967 | <target state="translated">visualizacións</target> | ||
963 | <context-group purpose="location"> | 968 | <context-group purpose="location"> |
964 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 969 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
965 | <context context-type="linenumber">31</context> | 970 | <context context-type="linenumber">31</context> |
966 | </context-group> | 971 | </context-group> |
967 | </trans-unit><trans-unit id="117954017715534854" datatype="html"> | 972 | </trans-unit> |
968 | <source>comments</source><target state="new">comments</target> | 973 | <trans-unit id="117954017715534854" datatype="html"> |
974 | <source>comments</source> | ||
975 | <target state="translated">comentarios</target> | ||
969 | <context-group purpose="location"> | 976 | <context-group purpose="location"> |
970 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 977 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
971 | <context context-type="linenumber">41</context> | 978 | <context context-type="linenumber">41</context> |
@@ -974,36 +981,37 @@ | |||
974 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 981 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
975 | <context context-type="linenumber">75</context> | 982 | <context context-type="linenumber">75</context> |
976 | </context-group> | 983 | </context-group> |
977 | </trans-unit><trans-unit id="6090561122481711127" datatype="html"> | 984 | </trans-unit> |
978 | <source>hosted video</source><target state="new">hosted video</target> | 985 | <trans-unit id="6090561122481711127" datatype="html"> |
986 | <source>hosted video</source> | ||
987 | <target state="translated">vÃdeo hospedado</target> | ||
979 | <context-group purpose="location"> | 988 | <context-group purpose="location"> |
980 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 989 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
981 | <context context-type="linenumber">51</context> | 990 | <context context-type="linenumber">51</context> |
982 | </context-group> | 991 | </context-group> |
983 | </trans-unit><trans-unit id="6827125739942610231" datatype="html"> | 992 | </trans-unit> |
984 | <source>In this instance federation</source><target state="new">In this instance federation</target> | 993 | <trans-unit id="6827125739942610231" datatype="html"> |
994 | <source>In this instance federation</source> | ||
995 | <target state="translated">Na federación desta instancia</target> | ||
985 | <context-group purpose="location"> | 996 | <context-group purpose="location"> |
986 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 997 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
987 | <context context-type="linenumber">58</context> | 998 | <context context-type="linenumber">58</context> |
988 | </context-group> | 999 | </context-group> |
989 | </trans-unit> | 1000 | </trans-unit> |
990 | |||
991 | |||
992 | |||
993 | <trans-unit id="8726138323871139597" datatype="html"> | 1001 | <trans-unit id="8726138323871139597" datatype="html"> |
994 | <source>Following</source> | 1002 | <source>Following</source> |
995 | <target state="translated">Seguindo</target> | 1003 | <target state="translated">Seguindo</target> |
996 | 1004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">75</context></context-group> | |
997 | 1005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
998 | 1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">26</context></context-group> | |
999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1007 | </trans-unit> |
1000 | <trans-unit id="4914577418256256836" datatype="html"> | 1008 | <trans-unit id="4914577418256256836" datatype="html"> |
1001 | <source>Followers</source> | 1009 | <source>Followers</source> |
1002 | <target state="translated">Seguidoras</target> | 1010 | <target state="translated">Seguidoras</target> |
1003 | 1011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">80</context></context-group> | |
1004 | 1012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group> | |
1005 | 1013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">72</context></context-group> | |
1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1014 | </trans-unit> |
1007 | <trans-unit id="3541687134897970106" datatype="html"> | 1015 | <trans-unit id="3541687134897970106" datatype="html"> |
1008 | <source>followers</source> | 1016 | <source>followers</source> |
1009 | <target state="translated">seguidoras</target> | 1017 | <target state="translated">seguidoras</target> |
@@ -1042,10 +1050,8 @@ | |||
1042 | <trans-unit id="7908493851025027368"> | 1050 | <trans-unit id="7908493851025027368"> |
1043 | <source>A banned user will no longer be able to login.</source> | 1051 | <source>A banned user will no longer be able to login.</source> |
1044 | <target>Unha usuaria vetada non pode acceder.</target> | 1052 | <target>Unha usuaria vetada non pode acceder.</target> |
1045 | 1053 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">9</context></context-group> | |
1046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 1054 | </trans-unit> |
1047 | |||
1048 | |||
1049 | <trans-unit id="4526499522377118108" datatype="html"> | 1055 | <trans-unit id="4526499522377118108" datatype="html"> |
1050 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 1056 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
1051 | <target state="translated">Bloquear vÃdeo "<x id="INTERPOLATION"/>"</target> | 1057 | <target state="translated">Bloquear vÃdeo "<x id="INTERPOLATION"/>"</target> |
@@ -1142,13 +1148,13 @@ | |||
1142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | 1148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
1143 | </trans-unit> | 1149 | </trans-unit> |
1144 | <trans-unit id="7252854992688790751" datatype="html"> | 1150 | <trans-unit id="7252854992688790751" datatype="html"> |
1145 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1151 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1146 | <target state="translated">Esta instancia ten o rexistro aberto. Non obstante, pon tino en comprobar <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Os Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> antes de crear unha conta. Podes atopar outra instancia máis acorde ás túas necesidades en: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1152 | <target state="translated">Esta instancia ten o rexistro aberto. Non obstante, pon tino en comprobar <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Os Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> antes de crear unha conta. Podes atopar outra instancia máis acorde ás túas necesidades en: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | 1153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> |
1148 | </trans-unit> | 1154 | </trans-unit> |
1149 | <trans-unit id="7215649348148521605" datatype="html"> | 1155 | <trans-unit id="7215649348148521605" datatype="html"> |
1150 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1156 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1151 | <target state="translated">Actualmente esta instancia non permite abrir unha conta, podes ler os <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para saber máis ou atopar outra instancia co rexistro aberto e poder subir alà os teus vÃdeos. Atopa a túa entre varias opcións en: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1157 | <target state="translated">Actualmente esta instancia non permite abrir unha conta, podes ler os <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para saber máis ou atopar outra instancia co rexistro aberto e poder subir alà os teus vÃdeos. Atopa a túa entre varias opcións en: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | 1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> |
1153 | </trans-unit> | 1159 | </trans-unit> |
1154 | <trans-unit id="2392488717875840729"> | 1160 | <trans-unit id="2392488717875840729"> |
@@ -1216,23 +1222,22 @@ | |||
1216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> | 1222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> |
1217 | </trans-unit> | 1223 | </trans-unit> |
1218 | <trans-unit id="1190256911880544559" datatype="html"> | 1224 | <trans-unit id="1190256911880544559" datatype="html"> |
1219 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1225 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. The link will expire within 1 hour.</source> |
1220 | The link will expire within 1 hour.</source> | ||
1221 | <target state="translated">Enviaremos un email con instruccións para o restablecemento a <x id="PH" equiv-text="this.forgotPasswordEmail"/>. A ligazón caduca nunha hora.</target> | 1226 | <target state="translated">Enviaremos un email con instruccións para o restablecemento a <x id="PH" equiv-text="this.forgotPasswordEmail"/>. A ligazón caduca nunha hora.</target> |
1222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> | 1227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> |
1223 | </trans-unit> | 1228 | </trans-unit> |
1224 | <trans-unit id="4768749765465246664"> | 1229 | <trans-unit id="4768749765465246664"> |
1225 | <source>Email</source> | 1230 | <source>Email</source> |
1226 | <target>Correo electrónico</target> | 1231 | <target>Correo electrónico</target> |
1227 | 1232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1228 | 1233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1229 | 1234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
1230 | 1235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group> | |
1231 | 1236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group> | |
1232 | 1237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group> | |
1233 | 1238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group> | |
1234 | 1239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group> | |
1235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1240 | </trans-unit> |
1236 | <trans-unit id="3967269098753656610"> | 1241 | <trans-unit id="3967269098753656610"> |
1237 | <source>Email address</source> | 1242 | <source>Email address</source> |
1238 | <target>Enderezo de correo electrónico</target> | 1243 | <target>Enderezo de correo electrónico</target> |
@@ -1256,8 +1261,8 @@ The link will expire within 1 hour.</source> | |||
1256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | 1261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> |
1257 | </trans-unit> | 1262 | </trans-unit> |
1258 | <trans-unit id="8434369348784683733" datatype="html"> | 1263 | <trans-unit id="8434369348784683733" datatype="html"> |
1259 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 1264 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
1260 | <target state="translated">para <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 1265 | <target state="translated">para <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
1261 | <context-group purpose="location"> | 1266 | <context-group purpose="location"> |
1262 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1267 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1263 | <context context-type="linenumber">10</context> | 1268 | <context context-type="linenumber">10</context> |
@@ -1605,8 +1610,8 @@ The link will expire within 1 hour.</source> | |||
1605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> | 1610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> |
1606 | </trans-unit> | 1611 | </trans-unit> |
1607 | <trans-unit id="2095604754338363597" datatype="html"> | 1612 | <trans-unit id="2095604754338363597" datatype="html"> |
1608 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> | 1613 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> |
1609 | <target state="translated">âš ï¸ Se está activo, recomendamos utilizar <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>un proxy HTTP<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para o acceso privado a URL desde o teu servidor PeerTube</target> | 1614 | <target state="translated">âš ï¸ Se está activo, recomendamos utilizar <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>un proxy HTTP<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para o acceso privado a URL desde o teu servidor PeerTube</target> |
1610 | <context-group purpose="location"> | 1615 | <context-group purpose="location"> |
1611 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 1616 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
1612 | <context context-type="linenumber">272</context> | 1617 | <context context-type="linenumber">272</context> |
@@ -1670,18 +1675,18 @@ The link will expire within 1 hour.</source> | |||
1670 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> | 1675 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
1671 | </trans-unit> | 1676 | </trans-unit> |
1672 | <trans-unit id="7239874680342223476" datatype="html"> | 1677 | <trans-unit id="7239874680342223476" datatype="html"> |
1673 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> | 1678 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> |
1674 | <target state="translated">Cóntalle a outras usuarias e á moderación <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>quen es<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> con:</target> | 1679 | <target state="translated">Cóntalle a outras usuarias e á moderación <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>quen es<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> con:</target> |
1675 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> | 1680 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> |
1676 | </trans-unit> | 1681 | </trans-unit> |
1677 | <trans-unit id="5856432243446401016" datatype="html"> | 1682 | <trans-unit id="5856432243446401016" datatype="html"> |
1678 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 1683 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
1679 | <target state="translated">Subindo un <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1684 | <target state="translated">Subindo un <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1680 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> | 1685 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> |
1681 | </trans-unit> | 1686 | </trans-unit> |
1682 | <trans-unit id="3221645359464920754" datatype="html"> | 1687 | <trans-unit id="3221645359464920754" datatype="html"> |
1683 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 1688 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
1684 | <target state="translated">Escribindo unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>descrición<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1689 | <target state="translated">Escribindo unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>descrición<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1685 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | 1690 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> |
1686 | </trans-unit> | 1691 | </trans-unit> |
1687 | <trans-unit id="2218100934178971211" datatype="html"> | 1692 | <trans-unit id="2218100934178971211" datatype="html"> |
@@ -2035,20 +2040,26 @@ The link will expire within 1 hour.</source> | |||
2035 | <source>Add this caption</source> | 2040 | <source>Add this caption</source> |
2036 | <target>Engadir este subtÃtulo</target> | 2041 | <target>Engadir este subtÃtulo</target> |
2037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> | 2042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> |
2038 | </trans-unit><trans-unit id="480001148850006323" datatype="html"> | 2043 | </trans-unit> |
2039 | <source>Edit caption</source><target state="new">Edit caption</target> | 2044 | <trans-unit id="480001148850006323" datatype="html"> |
2045 | <source>Edit caption</source> | ||
2046 | <target state="translated">Editar lenda</target> | ||
2040 | <context-group purpose="location"> | 2047 | <context-group purpose="location"> |
2041 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2048 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2042 | <context context-type="linenumber">5</context> | 2049 | <context context-type="linenumber">5</context> |
2043 | </context-group> | 2050 | </context-group> |
2044 | </trans-unit><trans-unit id="6838559377527923778" datatype="html"> | 2051 | </trans-unit> |
2045 | <source>Caption</source><target state="new">Caption</target> | 2052 | <trans-unit id="6838559377527923778" datatype="html"> |
2053 | <source>Caption</source> | ||
2054 | <target state="translated">Lenda</target> | ||
2046 | <context-group purpose="location"> | 2055 | <context-group purpose="location"> |
2047 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2056 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2048 | <context context-type="linenumber">10</context> | 2057 | <context context-type="linenumber">10</context> |
2049 | </context-group> | 2058 | </context-group> |
2050 | </trans-unit><trans-unit id="1989971680596153649" datatype="html"> | 2059 | </trans-unit> |
2051 | <source>Edit this caption</source><target state="new">Edit this caption</target> | 2060 | <trans-unit id="1989971680596153649" datatype="html"> |
2061 | <source>Edit this caption</source> | ||
2062 | <target state="translated">Editar esta lenda</target> | ||
2052 | <context-group purpose="location"> | 2063 | <context-group purpose="location"> |
2053 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2064 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2054 | <context context-type="linenumber">31</context> | 2065 | <context context-type="linenumber">31</context> |
@@ -2118,8 +2129,8 @@ The link will expire within 1 hour.</source> | |||
2118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> | 2129 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> |
2119 | </trans-unit> | 2130 | </trans-unit> |
2120 | <trans-unit id="1358902062258458923" datatype="html"> | 2131 | <trans-unit id="1358902062258458923" datatype="html"> |
2121 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 2132 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
2122 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Compatible con markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> e con soporte tamén para <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>etiquetas HTML personalizadas de PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2133 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Compatible con markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> e con soporte tamén para <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>etiquetas HTML personalizadas de PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
2123 | <context-group purpose="location"> | 2134 | <context-group purpose="location"> |
2124 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> | 2135 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> |
2125 | <context context-type="linenumber">2</context> | 2136 | <context context-type="linenumber">2</context> |
@@ -2165,12 +2176,12 @@ The link will expire within 1 hour.</source> | |||
2165 | <trans-unit id="1460134385691851101" datatype="html"> | 2176 | <trans-unit id="1460134385691851101" datatype="html"> |
2166 | <source>Advanced filters</source> | 2177 | <source>Advanced filters</source> |
2167 | <target state="translated">Filtros avanzados</target> | 2178 | <target state="translated">Filtros avanzados</target> |
2168 | 2179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group> | |
2169 | 2180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group> | |
2170 | 2181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">41</context></context-group> | |
2171 | 2182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group> | |
2172 | 2183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group> | |
2173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 2184 | </trans-unit> |
2174 | <trans-unit id="2504502765849142619" datatype="html"> | 2185 | <trans-unit id="2504502765849142619" datatype="html"> |
2175 | <source>No items found</source> | 2186 | <source>No items found</source> |
2176 | <target state="translated">Sen resultados</target> | 2187 | <target state="translated">Sen resultados</target> |
@@ -2194,8 +2205,8 @@ The link will expire within 1 hour.</source> | |||
2194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> | 2205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> |
2195 | </trans-unit> | 2206 | </trans-unit> |
2196 | <trans-unit id="2090254132451149776" datatype="html"> | 2207 | <trans-unit id="2090254132451149776" datatype="html"> |
2197 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> | 2208 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> |
2198 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Elixe<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> a licenza axeitada para o teu traballo. </target> | 2209 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Elixe<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> a licenza axeitada para o teu traballo. </target> |
2199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> | 2210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> |
2200 | </trans-unit> | 2211 | </trans-unit> |
2201 | <trans-unit id="5462361983940693567"> | 2212 | <trans-unit id="5462361983940693567"> |
@@ -2271,27 +2282,31 @@ The link will expire within 1 hour.</source> | |||
2271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> | 2282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> |
2272 | </trans-unit> | 2283 | </trans-unit> |
2273 | <trans-unit id="5600963353867835532"> | 2284 | <trans-unit id="5600963353867835532"> |
2274 | <source>Already uploaded ✔</source> | 2285 | <source>Already uploaded ✔</source> |
2275 | <target>Xa subido ✔</target> | 2286 | <target>Xa subido ✔</target> |
2276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> | 2287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> |
2277 | </trans-unit> | 2288 | </trans-unit> |
2278 | <trans-unit id="73284819990858102"> | 2289 | <trans-unit id="73284819990858102"> |
2279 | <source>Will be created on update</source> | 2290 | <source>Will be created on update</source> |
2280 | <target>Será creado tras a subida</target> | 2291 | <target>Será creado tras a subida</target> |
2281 | 2292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">196</context></context-group> | |
2282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">196</context></context-group></trans-unit> | 2293 | </trans-unit> |
2283 | <trans-unit id="7044449271109607418"> | 2294 | <trans-unit id="7044449271109607418"> |
2284 | <source>Cancel create</source> | 2295 | <source>Cancel create</source> |
2285 | <target>Cancelar a creación</target> | 2296 | <target>Cancelar a creación</target> |
2286 | 2297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">198</context></context-group> | |
2287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit><trans-unit id="8541869921865486762" datatype="html"> | 2298 | </trans-unit> |
2288 | <source>Will be edited on update</source><target state="new">Will be edited on update</target> | 2299 | <trans-unit id="8541869921865486762" datatype="html"> |
2300 | <source>Will be edited on update</source> | ||
2301 | <target state="translated">Vaise editar ao actualizar</target> | ||
2289 | <context-group purpose="location"> | 2302 | <context-group purpose="location"> |
2290 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2303 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2291 | <context context-type="linenumber">204</context> | 2304 | <context context-type="linenumber">204</context> |
2292 | </context-group> | 2305 | </context-group> |
2293 | </trans-unit><trans-unit id="4013233634947488312" datatype="html"> | 2306 | </trans-unit> |
2294 | <source>Cancel edition</source><target state="new">Cancel edition</target> | 2307 | <trans-unit id="4013233634947488312" datatype="html"> |
2308 | <source>Cancel edition</source> | ||
2309 | <target state="translated">Desbotar edición</target> | ||
2295 | <context-group purpose="location"> | 2310 | <context-group purpose="location"> |
2296 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2311 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2297 | <context context-type="linenumber">206</context> | 2312 | <context context-type="linenumber">206</context> |
@@ -2300,46 +2315,46 @@ The link will expire within 1 hour.</source> | |||
2300 | <trans-unit id="7879454016898626211"> | 2315 | <trans-unit id="7879454016898626211"> |
2301 | <source>Will be deleted on update</source> | 2316 | <source>Will be deleted on update</source> |
2302 | <target>Será borrado tras actualizar</target> | 2317 | <target>Será borrado tras actualizar</target> |
2303 | 2318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">212</context></context-group> | |
2304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> | 2319 | </trans-unit> |
2305 | <trans-unit id="305832955565133216"> | 2320 | <trans-unit id="305832955565133216"> |
2306 | <source>Cancel deletion</source> | 2321 | <source>Cancel deletion</source> |
2307 | <target>Deter a eliminación</target> | 2322 | <target>Deter a eliminación</target> |
2308 | 2323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">214</context></context-group> | |
2309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">214</context></context-group></trans-unit> | 2324 | </trans-unit> |
2310 | <trans-unit id="360396717319152766"> | 2325 | <trans-unit id="360396717319152766"> |
2311 | <source>No captions for now.</source> | 2326 | <source>No captions for now.</source> |
2312 | <target> | 2327 | <target> |
2313 | Sen subtÃtulos ata o momento. | 2328 | Sen subtÃtulos ata o momento. |
2314 | </target> | 2329 | </target> |
2315 | 2330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
2316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> | 2331 | </trans-unit> |
2317 | <trans-unit id="8508836953540308271" datatype="html"> | 2332 | <trans-unit id="8508836953540308271" datatype="html"> |
2318 | <source>Live settings</source> | 2333 | <source>Live settings</source> |
2319 | <target state="translated">Axustes do Directo</target> | 2334 | <target state="translated">Axustes do Directo</target> |
2320 | 2335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">235</context></context-group> | |
2321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">235</context></context-group></trans-unit> | 2336 | </trans-unit> |
2322 | <trans-unit id="1212376766715456139" datatype="html"> | 2337 | <trans-unit id="1212376766715456139" datatype="html"> |
2323 | <source>âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</source> | 2338 | <source>âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</source> |
2324 | <target state="translated">âš ï¸ Se activas esta opción, o teu directo rematará se excediches a túa cota de vÃdeo</target> | 2339 | <target state="translated">âš ï¸ Se activas esta opción, o teu directo rematará se excediches a túa cota de vÃdeo</target> |
2325 | 2340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">288</context></context-group> | |
2326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">288</context></context-group></trans-unit> | 2341 | </trans-unit> |
2327 | <trans-unit id="8891497955962997247" datatype="html"> | 2342 | <trans-unit id="8891497955962997247" datatype="html"> |
2328 | <source>Automatically publish a replay when your live ends</source> | 2343 | <source>Automatically publish a replay when your live ends</source> |
2329 | <target state="translated">Publicar automáticamente unha repetición cando remata o directo</target> | 2344 | <target state="translated">Publicar automáticamente unha repetición cando remata o directo</target> |
2330 | 2345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group> | |
2331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group></trans-unit> | 2346 | </trans-unit> |
2332 | <trans-unit id="1168086599577356916"> | 2347 | <trans-unit id="1168086599577356916"> |
2333 | <source>Video preview</source> | 2348 | <source>Video preview</source> |
2334 | <target>Vista previa</target> | 2349 | <target>Vista previa</target> |
2335 | 2350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">307</context></context-group> | |
2336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">307</context></context-group></trans-unit> | 2351 | </trans-unit> |
2337 | <trans-unit id="2288513108450439427"> | 2352 | <trans-unit id="2288513108450439427"> |
2338 | <source>Support</source> | 2353 | <source>Support</source> |
2339 | <target>Axuda</target> | 2354 | <target>Axuda</target> |
2340 | 2355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group> | |
2341 | 2356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">316</context></context-group> | |
2342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">316</context></context-group></trans-unit> | 2357 | </trans-unit> |
2343 | <trans-unit id="1359533927353954373" datatype="html"> | 2358 | <trans-unit id="1359533927353954373" datatype="html"> |
2344 | <source>View account</source> | 2359 | <source>View account</source> |
2345 | <target state="translated">Ver conta</target> | 2360 | <target state="translated">Ver conta</target> |
@@ -2373,44 +2388,44 @@ The link will expire within 1 hour.</source> | |||
2373 | <trans-unit id="1952020204339597057" datatype="html"> | 2388 | <trans-unit id="1952020204339597057" datatype="html"> |
2374 | <source>Short text to tell people how they can support you (membership platform...).</source> | 2389 | <source>Short text to tell people how they can support you (membership platform...).</source> |
2375 | <target state="translated">Texto curto para dicirlle á xente como pode axudarche (plataformas de doazón...).</target> | 2390 | <target state="translated">Texto curto para dicirlle á xente como pode axudarche (plataformas de doazón...).</target> |
2376 | 2391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">319</context></context-group> | |
2377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">319</context></context-group></trans-unit> | 2392 | </trans-unit> |
2378 | <trans-unit id="7958716262877895706"> | 2393 | <trans-unit id="7958716262877895706"> |
2379 | <source>Original publication date</source> | 2394 | <source>Original publication date</source> |
2380 | <target>Data da publicación orixinal</target> | 2395 | <target>Data da publicación orixinal</target> |
2381 | 2396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">336</context></context-group> | |
2382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">336</context></context-group></trans-unit> | 2397 | </trans-unit> |
2383 | <trans-unit id="50985514722149155" datatype="html"> | 2398 | <trans-unit id="50985514722149155" datatype="html"> |
2384 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> | 2399 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> |
2385 | <target state="translated">Esta é a data na que foi publicado orixinalmente o contido (ex. a data de lanzamento da pelÃcula)</target> | 2400 | <target state="translated">Esta é a data na que foi publicado orixinalmente o contido (ex. a data de lanzamento da pelÃcula)</target> |
2386 | 2401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">339</context></context-group> | |
2387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">339</context></context-group></trans-unit> | 2402 | </trans-unit> |
2388 | <trans-unit id="1669378369440073270" datatype="html"> | 2403 | <trans-unit id="1669378369440073270" datatype="html"> |
2389 | <source>Plugin settings</source> | 2404 | <source>Plugin settings</source> |
2390 | <target state="translated">Axustes do Plugin</target> | 2405 | <target state="translated">Axustes do Plugin</target> |
2391 | 2406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">370</context></context-group> | |
2392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">370</context></context-group></trans-unit> | 2407 | </trans-unit> |
2393 | <trans-unit id="8693603235657020323" datatype="html"> | 2408 | <trans-unit id="8693603235657020323" datatype="html"> |
2394 | <source>Other</source> | 2409 | <source>Other</source> |
2395 | <target state="translated">Outro</target> | 2410 | <target state="translated">Outro</target> |
2396 | 2411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">190</context></context-group> | |
2397 | 2412 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group> | |
2398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">190</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 2413 | </trans-unit> |
2399 | <trans-unit id="2200003513633568069"> | 2414 | <trans-unit id="2200003513633568069"> |
2400 | <source>Enable video comments</source> | 2415 | <source>Enable video comments</source> |
2401 | <target>Activar comentarios ao vÃdeo</target> | 2416 | <target>Activar comentarios ao vÃdeo</target> |
2402 | 2417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">357</context></context-group> | |
2403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">357</context></context-group></trans-unit> | 2418 | </trans-unit> |
2404 | <trans-unit id="8896564060463626070"> | 2419 | <trans-unit id="8896564060463626070"> |
2405 | <source>Enable download</source> | 2420 | <source>Enable download</source> |
2406 | <target>Activar descarga</target> | 2421 | <target>Activar descarga</target> |
2407 | 2422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">362</context></context-group> | |
2408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">362</context></context-group></trans-unit> | 2423 | </trans-unit> |
2409 | <trans-unit id="8821221480638803282"> | 2424 | <trans-unit id="8821221480638803282"> |
2410 | <source>Advanced settings</source> | 2425 | <source>Advanced settings</source> |
2411 | <target>Axustes avanzados</target> | 2426 | <target>Axustes avanzados</target> |
2412 | 2427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group> | |
2413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit> | 2428 | </trans-unit> |
2414 | <trans-unit id="2375260419993138758"> | 2429 | <trans-unit id="2375260419993138758"> |
2415 | <source>URL</source> | 2430 | <source>URL</source> |
2416 | <target>URL</target> | 2431 | <target>URL</target> |
@@ -2445,13 +2460,13 @@ The link will expire within 1 hour.</source> | |||
2445 | <trans-unit id="9172233176401579786"> | 2460 | <trans-unit id="9172233176401579786"> |
2446 | <source>Scheduled</source> | 2461 | <source>Scheduled</source> |
2447 | <target>Programado</target> | 2462 | <target>Programado</target> |
2448 | 2463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">209</context></context-group> | |
2449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">209</context></context-group></trans-unit> | 2464 | </trans-unit> |
2450 | <trans-unit id="1435317307066082710" datatype="html"> | 2465 | <trans-unit id="1435317307066082710" datatype="html"> |
2451 | <source>Hide the video until a specific date</source> | 2466 | <source>Hide the video until a specific date</source> |
2452 | <target state="translated">Agochar o vÃdeo ata unha data concreta</target> | 2467 | <target state="translated">Agochar o vÃdeo ata unha data concreta</target> |
2453 | 2468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">210</context></context-group> | |
2454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 2469 | </trans-unit> |
2455 | <trans-unit id="1087181129481039628" datatype="html"> | 2470 | <trans-unit id="1087181129481039628" datatype="html"> |
2456 | <source>Normal live</source> | 2471 | <source>Normal live</source> |
2457 | <target state="translated">Directo normal</target> | 2472 | <target state="translated">Directo normal</target> |
@@ -2497,9 +2512,9 @@ The link will expire within 1 hour.</source> | |||
2497 | <trans-unit id="2127094963121208963" datatype="html"> | 2512 | <trans-unit id="2127094963121208963" datatype="html"> |
2498 | <source>Total video quota</source> | 2513 | <source>Total video quota</source> |
2499 | <target state="translated">Cota total de vÃdeo</target> | 2514 | <target state="translated">Cota total de vÃdeo</target> |
2500 | 2515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">131</context></context-group> | |
2501 | 2516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group> | |
2502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">131</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2517 | </trans-unit> |
2503 | <trans-unit id="1522676094837508187" datatype="html"> | 2518 | <trans-unit id="1522676094837508187" datatype="html"> |
2504 | <source>Congratulations! Your video is now available in your private library.</source> | 2519 | <source>Congratulations! Your video is now available in your private library.</source> |
2505 | <target state="translated">Parabéns! O vÃdeo xa está dispoñible na túa biblioteca privada.</target> | 2520 | <target state="translated">Parabéns! O vÃdeo xa está dispoñible na túa biblioteca privada.</target> |
@@ -2799,9 +2814,10 @@ The link will expire within 1 hour.</source> | |||
2799 | <trans-unit id="3959826834147169200" datatype="html"> | 2814 | <trans-unit id="3959826834147169200" datatype="html"> |
2800 | <source>Muted</source> | 2815 | <source>Muted</source> |
2801 | <target state="translated">Acalado</target> | 2816 | <target state="translated">Acalado</target> |
2802 | 2817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">104</context></context-group> | |
2803 | 2818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group> | |
2804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2819 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group> |
2820 | </trans-unit> | ||
2805 | <trans-unit id="2784956659778044823" datatype="html"> | 2821 | <trans-unit id="2784956659778044823" datatype="html"> |
2806 | <source>Loop</source> | 2822 | <source>Loop</source> |
2807 | <target state="translated">Bucle</target> | 2823 | <target state="translated">Bucle</target> |
@@ -2848,13 +2864,13 @@ The link will expire within 1 hour.</source> | |||
2848 | <trans-unit id="4416005356063364306" datatype="html"> | 2864 | <trans-unit id="4416005356063364306" datatype="html"> |
2849 | <source>This video is blocked.</source> | 2865 | <source>This video is blocked.</source> |
2850 | <target state="translated">VÃdeo bloqueado.</target> | 2866 | <target state="translated">VÃdeo bloqueado.</target> |
2851 | 2867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">38</context></context-group> | |
2852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 2868 | </trans-unit> |
2853 | <trans-unit id="2482137713226830428" datatype="html"> | 2869 | <trans-unit id="2482137713226830428" datatype="html"> |
2854 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2870 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2855 | <target state="translated">Publicado <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2871 | <target state="translated">Publicado <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2856 | 2872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group> | |
2857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 2873 | </trans-unit> |
2858 | <trans-unit id="1813238393038053050" datatype="html"> | 2874 | <trans-unit id="1813238393038053050" datatype="html"> |
2859 | <source>SUPPORT</source> | 2875 | <source>SUPPORT</source> |
2860 | <target state="translated">APOIAR</target> | 2876 | <target state="translated">APOIAR</target> |
@@ -2888,13 +2904,13 @@ The link will expire within 1 hour.</source> | |||
2888 | <trans-unit id="4001371302469308813" datatype="html"> | 2904 | <trans-unit id="4001371302469308813" datatype="html"> |
2889 | <source>Support options for this video</source> | 2905 | <source>Support options for this video</source> |
2890 | <target state="translated">Xeitos de axudar a este vÃdeo</target> | 2906 | <target state="translated">Xeitos de axudar a este vÃdeo</target> |
2891 | 2907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">57</context></context-group> | |
2892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 2908 | </trans-unit> |
2893 | <trans-unit id="687548610091961489" datatype="html"> | 2909 | <trans-unit id="687548610091961489" datatype="html"> |
2894 | <source>By <x id="INTERPOLATION"/></source> | 2910 | <source>By <x id="INTERPOLATION"/></source> |
2895 | <target state="translated">Por <x id="INTERPOLATION"/></target> | 2911 | <target state="translated">Por <x id="INTERPOLATION"/></target> |
2896 | 2912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group> | |
2897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 2913 | </trans-unit> |
2898 | <trans-unit id="1144407473317535723" datatype="html"> | 2914 | <trans-unit id="1144407473317535723" datatype="html"> |
2899 | <source>Subscribe</source> | 2915 | <source>Subscribe</source> |
2900 | <target state="translated">SubscrÃbete</target> | 2916 | <target state="translated">SubscrÃbete</target> |
@@ -2966,9 +2982,9 @@ The link will expire within 1 hour.</source> | |||
2966 | <trans-unit id="1465291804668949243" datatype="html"> | 2982 | <trans-unit id="1465291804668949243" datatype="html"> |
2967 | <source>NSFW</source> | 2983 | <source>NSFW</source> |
2968 | <target state="translated">NSFW</target> | 2984 | <target state="translated">NSFW</target> |
2969 | 2985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
2970 | 2986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">75</context></context-group> | |
2971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 2987 | </trans-unit> |
2972 | <trans-unit id="4512155674928869984" datatype="html"> | 2988 | <trans-unit id="4512155674928869984" datatype="html"> |
2973 | <source>Get more information</source> | 2989 | <source>Get more information</source> |
2974 | <target state="translated">Máis información</target> | 2990 | <target state="translated">Máis información</target> |
@@ -3004,10 +3020,10 @@ The link will expire within 1 hour.</source> | |||
3004 | <source>The video is being transcoded, it may not work properly.</source> | 3020 | <source>The video is being transcoded, it may not work properly.</source> |
3005 | <target state="translated">Estase transcodificando o vÃdeo, poderÃa non funcionar ben.</target> | 3021 | <target state="translated">Estase transcodificando o vÃdeo, poderÃa non funcionar ben.</target> |
3006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group> | 3022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group> |
3007 | </trans-unit><trans-unit id="1353168089968436742" datatype="html"> | 3023 | </trans-unit> |
3008 | <source> The video is being edited, it may not work properly. | 3024 | <trans-unit id="1353168089968436742" datatype="html"> |
3009 | </source><target state="new"> The video is being edited, it may not work properly. | 3025 | <source>The video is being edited, it may not work properly.</source> |
3010 | </target> | 3026 | <target state="translated">Este vÃdeo está a ser editado, poderÃa non verse ben.</target> |
3011 | <context-group purpose="location"> | 3027 | <context-group purpose="location"> |
3012 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3028 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3013 | <context context-type="linenumber">17,19</context> | 3029 | <context context-type="linenumber">17,19</context> |
@@ -3016,23 +3032,23 @@ The link will expire within 1 hour.</source> | |||
3016 | <trans-unit id="9080034597841586171" datatype="html"> | 3032 | <trans-unit id="9080034597841586171" datatype="html"> |
3017 | <source>The video is being moved to an external server, it may not work properly.</source> | 3033 | <source>The video is being moved to an external server, it may not work properly.</source> |
3018 | <target state="translated">Moveuse o vÃdeo a un servidor externo, poderÃa non reproducirse correctamente.</target> | 3034 | <target state="translated">Moveuse o vÃdeo a un servidor externo, poderÃa non reproducirse correctamente.</target> |
3019 | 3035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group> | |
3020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3036 | </trans-unit> |
3021 | <trans-unit id="8619499607322327082" datatype="html"> | 3037 | <trans-unit id="8619499607322327082" datatype="html"> |
3022 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> | 3038 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
3023 | <target state="translated">O vÃdeo vai ser publicado o <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </target> | 3039 | <target state="translated">O vÃdeo vai ser publicado o <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </target> |
3024 | 3040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group> | |
3025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 3041 | </trans-unit> |
3026 | <trans-unit id="4262297989675590582" datatype="html"> | 3042 | <trans-unit id="4262297989675590582" datatype="html"> |
3027 | <source>This live has not started yet.</source> | 3043 | <source>This live has not started yet.</source> |
3028 | <target state="translated">AÃnda non comezou este directo.</target> | 3044 | <target state="translated">AÃnda non comezou este directo.</target> |
3029 | 3045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group> | |
3030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3046 | </trans-unit> |
3031 | <trans-unit id="4926204350710628499" datatype="html"> | 3047 | <trans-unit id="4926204350710628499" datatype="html"> |
3032 | <source>This live has ended.</source> | 3048 | <source>This live has ended.</source> |
3033 | <target state="translated">O directo xa rematou.</target> | 3049 | <target state="translated">O directo xa rematou.</target> |
3034 | 3050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">33</context></context-group> | |
3035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3051 | </trans-unit> |
3036 | <trans-unit id="8518611938109939710" datatype="html"> | 3052 | <trans-unit id="8518611938109939710" datatype="html"> |
3037 | <source>SORT BY</source> | 3053 | <source>SORT BY</source> |
3038 | <target state="translated">ORDE POR</target> | 3054 | <target state="translated">ORDE POR</target> |
@@ -3189,8 +3205,8 @@ The link will expire within 1 hour.</source> | |||
3189 | <trans-unit id="9031514421077169181" datatype="html"> | 3205 | <trans-unit id="9031514421077169181" datatype="html"> |
3190 | <source>Video redundancies</source> | 3206 | <source>Video redundancies</source> |
3191 | <target state="translated">Redundancias do vÃdeo</target> | 3207 | <target state="translated">Redundancias do vÃdeo</target> |
3192 | 3208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">85</context></context-group> | |
3193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3209 | </trans-unit> |
3194 | <trans-unit id="3516494528184217808" datatype="html"> | 3210 | <trans-unit id="3516494528184217808" datatype="html"> |
3195 | <source>1 host (without "http://") per line</source> | 3211 | <source>1 host (without "http://") per line</source> |
3196 | <target state="translated">1 host (sen "http://") á vez</target> | 3212 | <target state="translated">1 host (sen "http://") á vez</target> |
@@ -3409,12 +3425,12 @@ The link will expire within 1 hour.</source> | |||
3409 | <trans-unit id="5248717555542428023"> | 3425 | <trans-unit id="5248717555542428023"> |
3410 | <source>Username</source> | 3426 | <source>Username</source> |
3411 | <target>Nome de usuaria</target> | 3427 | <target>Nome de usuaria</target> |
3412 | 3428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3413 | 3429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3414 | 3430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
3415 | 3431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group> | |
3416 | 3432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group> | |
3417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3433 | </trans-unit> |
3418 | <trans-unit id="5428411040014095392" datatype="html"> | 3434 | <trans-unit id="5428411040014095392" datatype="html"> |
3419 | <source>e.g. jane_doe</source> | 3435 | <source>e.g. jane_doe</source> |
3420 | <target state="translated">ex. ugio_ben</target> | 3436 | <target state="translated">ex. ugio_ben</target> |
@@ -3442,10 +3458,10 @@ The link will expire within 1 hour.</source> | |||
3442 | <trans-unit id="4145496584631696119" datatype="html"> | 3458 | <trans-unit id="4145496584631696119" datatype="html"> |
3443 | <source>Role</source> | 3459 | <source>Role</source> |
3444 | <target state="translated">Rol</target> | 3460 | <target state="translated">Rol</target> |
3445 | 3461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3446 | 3462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3447 | 3463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
3448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 3464 | </trans-unit> |
3449 | <trans-unit id="7046347992315328430" datatype="html"> | 3465 | <trans-unit id="7046347992315328430" datatype="html"> |
3450 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> | 3466 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> |
3451 | <target state="translated">Recodificación activada. A cota de vÃdeo só ten en conta o tamaño <x id="START_TAG_STRONG"/>orixinal<x id="CLOSE_TAG_STRONG"/> do vÃdeo. <x id="LINE_BREAK"/> Como moito, esta usuaria poderÃa subir ~ <x id="INTERPOLATION"/>. </target> | 3467 | <target state="translated">Recodificación activada. A cota de vÃdeo só ten en conta o tamaño <x id="START_TAG_STRONG"/>orixinal<x id="CLOSE_TAG_STRONG"/> do vÃdeo. <x id="LINE_BREAK"/> Como moito, esta usuaria poderÃa subir ~ <x id="INTERPOLATION"/>. </target> |
@@ -3462,10 +3478,10 @@ The link will expire within 1 hour.</source> | |||
3462 | <trans-unit id="2622255144026150901" datatype="html"> | 3478 | <trans-unit id="2622255144026150901" datatype="html"> |
3463 | <source>Auth plugin</source> | 3479 | <source>Auth plugin</source> |
3464 | <target state="translated">Complemento Auth</target> | 3480 | <target state="translated">Complemento Auth</target> |
3465 | 3481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3466 | 3482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3467 | 3483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">135</context></context-group> | |
3468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 3484 | </trans-unit> |
3469 | <trans-unit id="588099657508661970" datatype="html"> | 3485 | <trans-unit id="588099657508661970" datatype="html"> |
3470 | <source>None (local authentication)</source> | 3486 | <source>None (local authentication)</source> |
3471 | <target state="translated">Ningún (autenticación local)</target> | 3487 | <target state="translated">Ningún (autenticación local)</target> |
@@ -3514,25 +3530,25 @@ The link will expire within 1 hour.</source> | |||
3514 | <trans-unit id="7049348886126005391" datatype="html"> | 3530 | <trans-unit id="7049348886126005391" datatype="html"> |
3515 | <source>Batch actions</source> | 3531 | <source>Batch actions</source> |
3516 | <target state="translated">Accións en grupo</target> | 3532 | <target state="translated">Accións en grupo</target> |
3517 | 3533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> | |
3518 | 3534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group> | |
3519 | 3535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group> | |
3520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3536 | </trans-unit> |
3521 | <trans-unit id="675721269041534709" datatype="html"> | 3537 | <trans-unit id="675721269041534709" datatype="html"> |
3522 | <source>The user was banned</source> | 3538 | <source>The user was banned</source> |
3523 | <target state="translated">Esta usuaria foi bloqueada</target> | 3539 | <target state="translated">Esta usuaria foi bloqueada</target> |
3524 | 3540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">109</context></context-group> | |
3525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 3541 | </trans-unit> |
3526 | <trans-unit id="2348557406282409966" datatype="html"> | 3542 | <trans-unit id="2348557406282409966" datatype="html"> |
3527 | <source>Open account in a new tab</source> | 3543 | <source>Open account in a new tab</source> |
3528 | <target state="translated">Abrir conta nunha nova lapela</target> | 3544 | <target state="translated">Abrir conta nunha nova lapela</target> |
3529 | 3545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">69</context></context-group> | |
3530 | 3546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">94</context></context-group> | |
3531 | 3547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group> | |
3532 | 3548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group> | |
3533 | 3549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group> | |
3534 | 3550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group> | |
3535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 3551 | </trans-unit> |
3536 | <trans-unit id="3111569165173971676" datatype="html"> | 3552 | <trans-unit id="3111569165173971676" datatype="html"> |
3537 | <source>Deleted account</source> | 3553 | <source>Deleted account</source> |
3538 | <target state="translated">Conta eliminada</target> | 3554 | <target state="translated">Conta eliminada</target> |
@@ -3541,28 +3557,28 @@ The link will expire within 1 hour.</source> | |||
3541 | <trans-unit id="3254358851993549668" datatype="html"> | 3557 | <trans-unit id="3254358851993549668" datatype="html"> |
3542 | <source>User's email must be verified to login</source> | 3558 | <source>User's email must be verified to login</source> |
3543 | <target state="translated">O email da usuaria debe ser verificado para entrar</target> | 3559 | <target state="translated">O email da usuaria debe ser verificado para entrar</target> |
3544 | 3560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group> | |
3545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group></trans-unit> | 3561 | </trans-unit> |
3546 | <trans-unit id="3939342579126794385" datatype="html"> | 3562 | <trans-unit id="3939342579126794385" datatype="html"> |
3547 | <source>User's email is verified / User can login without email verification</source> | 3563 | <source>User's email is verified / User can login without email verification</source> |
3548 | <target state="translated">Email da usuaria verificado / A usuaria pode acceder sen verificar o email</target> | 3564 | <target state="translated">Email da usuaria verificado / A usuaria pode acceder sen verificar o email</target> |
3549 | 3565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">124</context></context-group> | |
3550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3566 | </trans-unit> |
3551 | <trans-unit id="242888077027281874" datatype="html"> | 3567 | <trans-unit id="242888077027281874" datatype="html"> |
3552 | <source>Total daily video quota</source> | 3568 | <source>Total daily video quota</source> |
3553 | <target state="translated">Cota diaria total de vÃdeo</target> | 3569 | <target state="translated">Cota diaria total de vÃdeo</target> |
3554 | 3570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group> | |
3555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 3571 | </trans-unit> |
3556 | <trans-unit id="1242902302929086301" datatype="html"> | 3572 | <trans-unit id="1242902302929086301" datatype="html"> |
3557 | <source>Ban reason:</source> | 3573 | <source>Ban reason:</source> |
3558 | <target state="translated">Razón do bloqueo:</target> | 3574 | <target state="translated">Razón do bloqueo:</target> |
3559 | 3575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">163</context></context-group> | |
3560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 3576 | </trans-unit> |
3561 | <trans-unit id="6124612368324200166" datatype="html"> | 3577 | <trans-unit id="6124612368324200166" datatype="html"> |
3562 | <source>Banned users</source> | 3578 | <source>Banned users</source> |
3563 | <target state="translated">Usuarias bloqueadas</target> | 3579 | <target state="translated">Usuarias bloqueadas</target> |
3564 | 3580 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">45</context></context-group> | |
3565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 3581 | </trans-unit> |
3566 | <trans-unit id="5642198289374753866" datatype="html"> | 3582 | <trans-unit id="5642198289374753866" datatype="html"> |
3567 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 3583 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
3568 | <target state="translated">Mostrando <x id="INTERPOLATION"/> a <x id="INTERPOLATION_1"/> de <x id="INTERPOLATION_2"/> usuarias</target> | 3584 | <target state="translated">Mostrando <x id="INTERPOLATION"/> a <x id="INTERPOLATION_1"/> de <x id="INTERPOLATION_2"/> usuarias</target> |
@@ -3571,26 +3587,26 @@ The link will expire within 1 hour.</source> | |||
3571 | <trans-unit id="2049290282534091182" datatype="html"> | 3587 | <trans-unit id="2049290282534091182" datatype="html"> |
3572 | <source>Moderation</source> | 3588 | <source>Moderation</source> |
3573 | <target state="translated">Moderación</target> | 3589 | <target state="translated">Moderación</target> |
3574 | 3590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | |
3575 | 3591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">70</context></context-group> | |
3576 | 3592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group> | |
3577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3593 | </trans-unit> |
3578 | <trans-unit id="746099155736913817" datatype="html"> | 3594 | <trans-unit id="746099155736913817" datatype="html"> |
3579 | <source>Video blocks</source> | 3595 | <source>Video blocks</source> |
3580 | <target state="translated">Bloqueo de vÃdeos</target> | 3596 | <target state="translated">Bloqueo de vÃdeos</target> |
3581 | 3597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group> | |
3582 | 3598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3599 | </trans-unit> |
3584 | <trans-unit id="7815838401315213887" datatype="html"> | 3600 | <trans-unit id="7815838401315213887" datatype="html"> |
3585 | <source>Muted accounts</source> | 3601 | <source>Muted accounts</source> |
3586 | <target state="translated">Contas acaladas</target> | 3602 | <target state="translated">Contas acaladas</target> |
3587 | 3603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group> | |
3588 | 3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">90</context></context-group> | |
3589 | 3605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group> | |
3590 | 3606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group> | |
3591 | 3607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3592 | 3608 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3609 | </trans-unit> |
3594 | <trans-unit id="5668793810321242853" datatype="html"> | 3610 | <trans-unit id="5668793810321242853" datatype="html"> |
3595 | <source>Muted servers</source> | 3611 | <source>Muted servers</source> |
3596 | <target state="translated">Servidores acalados</target> | 3612 | <target state="translated">Servidores acalados</target> |
@@ -3666,30 +3682,30 @@ The link will expire within 1 hour.</source> | |||
3666 | <trans-unit id="7692347838587821095" datatype="html"> | 3682 | <trans-unit id="7692347838587821095" datatype="html"> |
3667 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3683 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3668 | <target state="translated">Data <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> | 3684 | <target state="translated">Data <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
3669 | 3685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> | |
3670 | 3686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> | |
3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3687 | </trans-unit> |
3672 | <trans-unit id="1451763834047485033" datatype="html"> | 3688 | <trans-unit id="1451763834047485033" datatype="html"> |
3673 | <source>Select this row</source> | 3689 | <source>Select this row</source> |
3674 | <target state="translated">Escoller esta fila</target> | 3690 | <target state="translated">Escoller esta fila</target> |
3675 | 3691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">54</context></context-group> | |
3676 | 3692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group> | |
3677 | 3693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">51</context></context-group> | |
3678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 3694 | </trans-unit> |
3679 | <trans-unit id="4043531994869127329" datatype="html"> | 3695 | <trans-unit id="4043531994869127329" datatype="html"> |
3680 | <source>See full comment</source> | 3696 | <source>See full comment</source> |
3681 | <target state="translated">Ver comentario completo</target> | 3697 | <target state="translated">Ver comentario completo</target> |
3682 | 3698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">58</context></context-group> | |
3683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 3699 | </trans-unit> |
3684 | <trans-unit id="3193976279273491157" datatype="html"> | 3700 | <trans-unit id="3193976279273491157" datatype="html"> |
3685 | <source>Actions</source> | 3701 | <source>Actions</source> |
3686 | <target state="translated">Accións</target> | 3702 | <target state="translated">Accións</target> |
3687 | 3703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
3688 | 3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3689 | 3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">64</context></context-group> | |
3690 | 3706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group> | |
3691 | 3707 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group> | |
3692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 3708 | </trans-unit> |
3693 | <trans-unit id="8390803680962035202" datatype="html"> | 3709 | <trans-unit id="8390803680962035202" datatype="html"> |
3694 | <source>Follower</source> | 3710 | <source>Follower</source> |
3695 | <target state="translated">Seguidora</target> | 3711 | <target state="translated">Seguidora</target> |
@@ -3701,28 +3717,28 @@ The link will expire within 1 hour.</source> | |||
3701 | <trans-unit id="4691552465058437520" datatype="html"> | 3717 | <trans-unit id="4691552465058437520" datatype="html"> |
3702 | <source>Commented video</source> | 3718 | <source>Commented video</source> |
3703 | <target state="translated">VÃdeo comentado</target> | 3719 | <target state="translated">VÃdeo comentado</target> |
3704 | 3720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">81</context></context-group> | |
3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3721 | </trans-unit> |
3706 | <trans-unit id="7266085473379376028" datatype="html"> | 3722 | <trans-unit id="7266085473379376028" datatype="html"> |
3707 | <source>No comments found matching current filters.</source> | 3723 | <source>No comments found matching current filters.</source> |
3708 | <target state="translated">Sen comentarios que cumpran cos filtros actuais.</target> | 3724 | <target state="translated">Sen comentarios que cumpran cos filtros actuais.</target> |
3709 | 3725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">106</context></context-group> | |
3710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 3726 | </trans-unit> |
3711 | <trans-unit id="2398388496754671928" datatype="html"> | 3727 | <trans-unit id="2398388496754671928" datatype="html"> |
3712 | <source>No comments found.</source> | 3728 | <source>No comments found.</source> |
3713 | <target state="translated">Non hai comentarios.</target> | 3729 | <target state="translated">Non hai comentarios.</target> |
3714 | 3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group> | |
3715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3731 | </trans-unit> |
3716 | <trans-unit id="4604870995665811499" datatype="html"> | 3732 | <trans-unit id="4604870995665811499" datatype="html"> |
3717 | <source>Local comments</source> | 3733 | <source>Local comments</source> |
3718 | <target state="translated">Comentarios locais</target> | 3734 | <target state="translated">Comentarios locais</target> |
3719 | 3735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">51</context></context-group> | |
3720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 3736 | </trans-unit> |
3721 | <trans-unit id="2721988499779041837" datatype="html"> | 3737 | <trans-unit id="2721988499779041837" datatype="html"> |
3722 | <source>Remote comments</source> | 3738 | <source>Remote comments</source> |
3723 | <target state="translated">Comentarios remotos</target> | 3739 | <target state="translated">Comentarios remotos</target> |
3724 | 3740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">55</context></context-group> | |
3725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 3741 | </trans-unit> |
3726 | <trans-unit id="1420624050293070194" datatype="html"> | 3742 | <trans-unit id="1420624050293070194" datatype="html"> |
3727 | <source>No abuses found matching current filters.</source> | 3743 | <source>No abuses found matching current filters.</source> |
3728 | <target state="translated">Non se atoparon abusos concordantes cos filtros establecidos.</target> | 3744 | <target state="translated">Non se atoparon abusos concordantes cos filtros establecidos.</target> |
@@ -3791,11 +3807,11 @@ The link will expire within 1 hour.</source> | |||
3791 | <trans-unit id="1868606282505332204" datatype="html"> | 3807 | <trans-unit id="1868606282505332204" datatype="html"> |
3792 | <source>Reports</source> | 3808 | <source>Reports</source> |
3793 | <target state="translated">Denuncias</target> | 3809 | <target state="translated">Denuncias</target> |
3794 | 3810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group> | |
3795 | 3811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3796 | 3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">34</context></context-group> | |
3797 | 3813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3814 | </trans-unit> |
3799 | <trans-unit id="7075448128175750939" datatype="html"> | 3815 | <trans-unit id="7075448128175750939" datatype="html"> |
3800 | <source>Moderation comment</source> | 3816 | <source>Moderation comment</source> |
3801 | <target state="translated">Comentario da Moderación</target> | 3817 | <target state="translated">Comentario da Moderación</target> |
@@ -3820,18 +3836,18 @@ The link will expire within 1 hour.</source> | |||
3820 | <trans-unit id="6549265851868599441" datatype="html"> | 3836 | <trans-unit id="6549265851868599441" datatype="html"> |
3821 | <source>Video</source> | 3837 | <source>Video</source> |
3822 | <target state="translated">VÃdeo</target> | 3838 | <target state="translated">VÃdeo</target> |
3823 | 3839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3824 | 3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">40</context></context-group> | |
3825 | 3841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | |
3826 | 3842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group> | |
3827 | 3843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group> | |
3828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 3844 | </trans-unit> |
3829 | <trans-unit id="2662644497259948010" datatype="html"> | 3845 | <trans-unit id="2662644497259948010" datatype="html"> |
3830 | <source>Comment</source> | 3846 | <source>Comment</source> |
3831 | <target state="translated">Comentar</target> | 3847 | <target state="translated">Comentar</target> |
3832 | 3848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group> | |
3833 | 3849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group> | |
3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3850 | </trans-unit> |
3835 | <trans-unit id="1359961255805685312" datatype="html"> | 3851 | <trans-unit id="1359961255805685312" datatype="html"> |
3836 | <source>This video has been reported multiple times.</source> | 3852 | <source>This video has been reported multiple times.</source> |
3837 | <target state="translated">Este vÃdeo foi denunciado en múltiples ocasións.</target> | 3853 | <target state="translated">Este vÃdeo foi denunciado en múltiples ocasións.</target> |
@@ -3895,8 +3911,8 @@ The link will expire within 1 hour.</source> | |||
3895 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> | 3911 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> |
3896 | </trans-unit> | 3912 | </trans-unit> |
3897 | <trans-unit id="1258618443362430782" datatype="html"> | 3913 | <trans-unit id="1258618443362430782" datatype="html"> |
3898 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> | 3914 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> |
3899 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 denuncia} other {{{ abuse.countReportsForReportee }} denuncias}}"/><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>"/></target> | 3915 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 denuncia} other {{{ abuse.countReportsForReportee }} denuncias}}"/><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>"/></target> |
3900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> | 3916 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> |
3901 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> | 3917 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> |
3902 | </trans-unit> | 3918 | </trans-unit> |
@@ -3973,10 +3989,10 @@ The link will expire within 1 hour.</source> | |||
3973 | <trans-unit id="4086606389696938932" datatype="html"> | 3989 | <trans-unit id="4086606389696938932" datatype="html"> |
3974 | <source>Account</source> | 3990 | <source>Account</source> |
3975 | <target state="translated">Conta</target> | 3991 | <target state="translated">Conta</target> |
3976 | 3992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3977 | 3993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
3978 | 3994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3995 | </trans-unit> |
3980 | <trans-unit id="8564972645418093229" datatype="html"> | 3996 | <trans-unit id="8564972645418093229" datatype="html"> |
3981 | <source>No account found matching current filters.</source> | 3997 | <source>No account found matching current filters.</source> |
3982 | <target state="translated">Sen contas que cumpran cos filtros establecidos.</target> | 3998 | <target state="translated">Sen contas que cumpran cos filtros establecidos.</target> |
@@ -4164,34 +4180,36 @@ The link will expire within 1 hour.</source> | |||
4164 | <trans-unit id="8949443215142664126" datatype="html"> | 4180 | <trans-unit id="8949443215142664126" datatype="html"> |
4165 | <source>Delete this comment</source> | 4181 | <source>Delete this comment</source> |
4166 | <target state="translated">Elimina este comentario</target> | 4182 | <target state="translated">Elimina este comentario</target> |
4167 | 4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">80</context></context-group> | |
4168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 4184 | </trans-unit> |
4169 | <trans-unit id="3327751240218085797" datatype="html"> | 4185 | <trans-unit id="3327751240218085797" datatype="html"> |
4170 | <source>Delete all comments of this account</source> | 4186 | <source>Delete all comments of this account</source> |
4171 | <target state="translated">Elimina tódolos comentarios desta conta</target> | 4187 | <target state="translated">Elimina tódolos comentarios desta conta</target> |
4172 | 4188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
4173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 4189 | </trans-unit> |
4174 | <trans-unit id="2850960459131251840" datatype="html"> | 4190 | <trans-unit id="2850960459131251840" datatype="html"> |
4175 | <source>Comments are deleted after a few minutes</source> | 4191 | <source>Comments are deleted after a few minutes</source> |
4176 | <target state="translated">Os comentarios son eliminados após poucos minutos</target> | 4192 | <target state="translated">Os comentarios son eliminados após poucos minutos</target> |
4177 | 4193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
4178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 4194 | </trans-unit> |
4179 | <trans-unit id="545410448674339480" datatype="html"> | 4195 | <trans-unit id="545410448674339480" datatype="html"> |
4180 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4196 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
4181 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> comentarios eliminados.</target> | 4197 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> comentarios eliminados.</target> |
4182 | 4198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">148</context></context-group> | |
4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 4199 | </trans-unit> |
4184 | <trans-unit id="379090446060940062" datatype="html"> | 4200 | <trans-unit id="379090446060940062" datatype="html"> |
4185 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4201 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
4186 | <target state="translated">Queres eliminar tódolos comentarios de <x id="PH"/>?</target> | 4202 | <target state="translated">Queres eliminar tódolos comentarios de <x id="PH"/>?</target> |
4187 | 4203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">168</context></context-group> | |
4188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 4204 | </trans-unit> |
4189 | <trans-unit id="4539246224625965241" datatype="html"> | 4205 | <trans-unit id="4539246224625965241" datatype="html"> |
4190 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4206 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
4191 | <target state="translated">Os comentarios de <x id="PH"/> eliminaranse nuns minutos</target> | 4207 | <target state="translated">Os comentarios de <x id="PH"/> eliminaranse nuns minutos</target> |
4192 | 4208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">180</context></context-group> | |
4193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">180</context></context-group></trans-unit><trans-unit id="3204306399736151644" datatype="html"> | 4209 | </trans-unit> |
4194 | <source>Comments list</source><target state="new">Comments list</target> | 4210 | <trans-unit id="3204306399736151644" datatype="html"> |
4211 | <source>Comments list</source> | ||
4212 | <target state="translated">Lista de comentarios</target> | ||
4195 | <context-group purpose="location"> | 4213 | <context-group purpose="location"> |
4196 | <context context-type="sourcefile">src/app/+admin/overview/comments/video-comment.routes.ts</context> | 4214 | <context context-type="sourcefile">src/app/+admin/overview/comments/video-comment.routes.ts</context> |
4197 | <context context-type="linenumber">24</context> | 4215 | <context context-type="linenumber">24</context> |
@@ -4200,27 +4218,25 @@ The link will expire within 1 hour.</source> | |||
4200 | <trans-unit id="7427986413651551775" datatype="html"> | 4218 | <trans-unit id="7427986413651551775" datatype="html"> |
4201 | <source>Video comments</source> | 4219 | <source>Video comments</source> |
4202 | <target state="translated">Comentarios do vÃdeo</target> | 4220 | <target state="translated">Comentarios do vÃdeo</target> |
4203 | 4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
4204 | 4222 | </trans-unit> | |
4205 | |||
4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
4207 | <trans-unit id="289582790179344391" datatype="html"> | 4223 | <trans-unit id="289582790179344391" datatype="html"> |
4208 | <source>This view also shows comments from muted accounts.</source> | 4224 | <source>This view also shows comments from muted accounts.</source> |
4209 | <target state="translated">Esta vista tamén mostra comentarios de contas acaladas.</target> | 4225 | <target state="translated">Esta vista tamén mostra comentarios de contas acaladas.</target> |
4210 | 4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">8</context></context-group> | |
4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 4227 | </trans-unit> |
4212 | <trans-unit id="4523382115569186450" datatype="html"> | 4228 | <trans-unit id="4523382115569186450" datatype="html"> |
4213 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | 4229 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> |
4214 | <target state="translated">Mostrando <x id="INTERPOLATION"/> a <x id="INTERPOLATION_1"/> de <x id="INTERPOLATION_2"/> comentarios</target> | 4230 | <target state="translated">Mostrando <x id="INTERPOLATION"/> a <x id="INTERPOLATION_1"/> de <x id="INTERPOLATION_2"/> comentarios</target> |
4215 | 4231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group> | |
4216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4232 | </trans-unit> |
4217 | <trans-unit id="6110554376228744887" datatype="html"> | 4233 | <trans-unit id="6110554376228744887" datatype="html"> |
4218 | <source>Select all rows</source> | 4234 | <source>Select all rows</source> |
4219 | <target state="translated">Escoller tódalas filas</target> | 4235 | <target state="translated">Escoller tódalas filas</target> |
4220 | 4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
4221 | 4237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
4222 | 4238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">36</context></context-group> | |
4223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4239 | </trans-unit> |
4224 | <trans-unit id="2719284837486030903" datatype="html"> | 4240 | <trans-unit id="2719284837486030903" datatype="html"> |
4225 | <source>Job type</source> | 4241 | <source>Job type</source> |
4226 | <target state="translated">Tipo de tarefa</target> | 4242 | <target state="translated">Tipo de tarefa</target> |
@@ -4251,8 +4267,8 @@ The link will expire within 1 hour.</source> | |||
4251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> | 4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> |
4252 | </trans-unit> | 4268 | </trans-unit> |
4253 | <trans-unit id="3901868627411944813" datatype="html"> | 4269 | <trans-unit id="3901868627411944813" datatype="html"> |
4254 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> | 4270 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> |
4255 | <target state="translated">Prioridade <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = a prioridade máis alta)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> | 4271 | <target state="translated">Prioridade <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = a prioridade máis alta)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> |
4256 | <context-group purpose="location"> | 4272 | <context-group purpose="location"> |
4257 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4273 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4258 | <context context-type="linenumber">47</context> | 4274 | <context context-type="linenumber">47</context> |
@@ -4272,8 +4288,8 @@ The link will expire within 1 hour.</source> | |||
4272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> | 4288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> |
4273 | </trans-unit> | 4289 | </trans-unit> |
4274 | <trans-unit id="2713421326605345655" datatype="html"> | 4290 | <trans-unit id="2713421326605345655" datatype="html"> |
4275 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | 4291 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> |
4276 | <target state="translated">Non <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> se atoparon tarefas.</target> | 4292 | <target state="translated">Non <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> se atoparon tarefas.</target> |
4277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> | 4293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> |
4278 | </trans-unit> | 4294 | </trans-unit> |
4279 | <trans-unit id="2384897339170501794" datatype="html"> | 4295 | <trans-unit id="2384897339170501794" datatype="html"> |
@@ -4289,10 +4305,11 @@ The link will expire within 1 hour.</source> | |||
4289 | <trans-unit id="1102717806459547726" datatype="html"> | 4305 | <trans-unit id="1102717806459547726" datatype="html"> |
4290 | <source>Refresh</source> | 4306 | <source>Refresh</source> |
4291 | <target state="translated">Actualizar</target> | 4307 | <target state="translated">Actualizar</target> |
4292 | 4308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
4293 | 4309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
4294 | 4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group> | |
4295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group> |
4312 | </trans-unit> | ||
4296 | <trans-unit id="6052766076365105714" datatype="html"> | 4313 | <trans-unit id="6052766076365105714" datatype="html"> |
4297 | <source>now</source> | 4314 | <source>now</source> |
4298 | <target state="translated">agora</target> | 4315 | <target state="translated">agora</target> |
@@ -4320,8 +4337,8 @@ The link will expire within 1 hour.</source> | |||
4320 | </context-group> | 4337 | </context-group> |
4321 | </trans-unit> | 4338 | </trans-unit> |
4322 | <trans-unit id="2232767208623640457" datatype="html"> | 4339 | <trans-unit id="2232767208623640457" datatype="html"> |
4323 | <source>By <x id="INTERPOLATION"/> -></source> | 4340 | <source>By <x id="INTERPOLATION"/> -></source> |
4324 | <target state="translated">Por <x id="INTERPOLATION"/> -></target> | 4341 | <target state="translated">Por <x id="INTERPOLATION"/> -></target> |
4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> | 4342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> |
4326 | </trans-unit> | 4343 | </trans-unit> |
4327 | <trans-unit id="7396175500300709096" datatype="html"> | 4344 | <trans-unit id="7396175500300709096" datatype="html"> |
@@ -4393,8 +4410,8 @@ The link will expire within 1 hour.</source> | |||
4393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> | 4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> |
4394 | </trans-unit> | 4411 | </trans-unit> |
4395 | <trans-unit id="4423835119021329687" datatype="html"> | 4412 | <trans-unit id="4423835119021329687" datatype="html"> |
4396 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> | 4413 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> |
4397 | <target state="translated">Xestionar <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>usuarias<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para crear equipo de moderación. </target> | 4414 | <target state="translated">Xestionar <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>usuarias<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para crear equipo de moderación. </target> |
4398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> | 4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> |
4399 | </trans-unit> | 4416 | </trans-unit> |
4400 | <trans-unit id="7030031694783481217" datatype="html"> | 4417 | <trans-unit id="7030031694783481217" datatype="html"> |
@@ -4403,8 +4420,8 @@ The link will expire within 1 hour.</source> | |||
4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> | 4420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> |
4404 | </trans-unit> | 4421 | </trans-unit> |
4405 | <trans-unit id="4620493570088713907" datatype="html"> | 4422 | <trans-unit id="4620493570088713907" datatype="html"> |
4406 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> | 4423 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> |
4407 | <target state="translated">Activándoo permitirás que outras administradoras saiban que principalmente federas contido sensible.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Ademáis, incluirá automáticamente a marca NSFW na subida do vÃdeo. </target> | 4424 | <target state="translated">Activándoo permitirás que outras administradoras saiban que principalmente federas contido sensible.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Ademáis, incluirá automáticamente a marca NSFW na subida do vÃdeo. </target> |
4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> | 4425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> |
4409 | </trans-unit> | 4426 | </trans-unit> |
4410 | <trans-unit id="7497677457560701935"> | 4427 | <trans-unit id="7497677457560701935"> |
@@ -4523,8 +4540,8 @@ The link will expire within 1 hour.</source> | |||
4523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> | 4540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> |
4524 | </trans-unit> | 4541 | </trans-unit> |
4525 | <trans-unit id="2107098695989136934" datatype="html"> | 4542 | <trans-unit id="2107098695989136934" datatype="html"> |
4526 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4543 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4527 | <target state="translated">Usa <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>complementos & decorados<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para cambios máis relevantes, ou <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>engade pequenas personalizacións<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4544 | <target state="translated">Usa <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>complementos & decorados<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para cambios máis relevantes, ou <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>engade pequenas personalizacións<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> | 4545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> |
4529 | </trans-unit> | 4546 | </trans-unit> |
4530 | <trans-unit id="6855462350544488601" datatype="html"> | 4547 | <trans-unit id="6855462350544488601" datatype="html"> |
@@ -4630,8 +4647,8 @@ The link will expire within 1 hour.</source> | |||
4630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> | 4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> |
4631 | </trans-unit> | 4648 | </trans-unit> |
4632 | <trans-unit id="2669509104300979449" datatype="html"> | 4649 | <trans-unit id="2669509104300979449" datatype="html"> |
4633 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> | 4650 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> |
4634 | <target state="translated">Xestionar <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>usuarias<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para establecer a súa cota individualmente. </target> | 4651 | <target state="translated">Xestionar <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>usuarias<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para establecer a súa cota individualmente. </target> |
4635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> | 4652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> |
4636 | </trans-unit> | 4653 | </trans-unit> |
4637 | <trans-unit id="4497115134891299867" datatype="html"> | 4654 | <trans-unit id="4497115134891299867" datatype="html"> |
@@ -4676,8 +4693,10 @@ The link will expire within 1 hour.</source> | |||
4676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | 4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | 4694 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group> | 4695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group> |
4679 | </trans-unit><trans-unit id="3807699453257291879" datatype="html"> | 4696 | </trans-unit> |
4680 | <source>Comments</source><target state="new">Comments</target> | 4697 | <trans-unit id="3807699453257291879" datatype="html"> |
4698 | <source>Comments</source> | ||
4699 | <target state="translated">Comentarios</target> | ||
4681 | <context-group purpose="location"> | 4700 | <context-group purpose="location"> |
4682 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 4701 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
4683 | <context context-type="linenumber">57</context> | 4702 | <context context-type="linenumber">57</context> |
@@ -4820,8 +4839,8 @@ The link will expire within 1 hour.</source> | |||
4820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> | 4839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> |
4821 | </trans-unit> | 4840 | </trans-unit> |
4822 | <trans-unit id="1886227550697837417" datatype="html"> | 4841 | <trans-unit id="1886227550697837417" datatype="html"> |
4823 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4842 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4824 | <target state="translated">Só deberÃas usar Ãndices de busca moderados en produción, ou <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>hospedar o teu propio<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4843 | <target state="translated">Só deberÃas usar Ãndices de busca moderados en produción, ou <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>hospedar o teu propio<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> | 4844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> |
4826 | </trans-unit> | 4845 | </trans-unit> |
4827 | <trans-unit id="2331464426553277323" datatype="html"> | 4846 | <trans-unit id="2331464426553277323" datatype="html"> |
@@ -4855,8 +4874,8 @@ The link will expire within 1 hour.</source> | |||
4855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> | 4874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> |
4856 | </trans-unit> | 4875 | </trans-unit> |
4857 | <trans-unit id="252719899360434356" datatype="html"> | 4876 | <trans-unit id="252719899360434356" datatype="html"> |
4858 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> | 4877 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> |
4859 | <target state="translated">Xestionar <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relacións<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> con outras instancias. </target> | 4878 | <target state="translated">Xestionar <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relacións<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> con outras instancias. </target> |
4860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> | 4879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> |
4861 | </trans-unit> | 4880 | </trans-unit> |
4862 | <trans-unit id="9119248927271669654" datatype="html"> | 4881 | <trans-unit id="9119248927271669654" datatype="html"> |
@@ -4892,8 +4911,8 @@ The link will expire within 1 hour.</source> | |||
4892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> | 4911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> |
4893 | </trans-unit> | 4912 | </trans-unit> |
4894 | <trans-unit id="9076632742417302918" datatype="html"> | 4913 | <trans-unit id="9076632742417302918" datatype="html"> |
4895 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> | 4914 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> |
4896 | <target state="translated">Le <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>a documentación<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para saber máis acerca do URL agardado. </target> | 4915 | <target state="translated">Le <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>a documentación<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para saber máis acerca do URL agardado. </target> |
4897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> | 4916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> |
4898 | </trans-unit> | 4917 | </trans-unit> |
4899 | <trans-unit id="3946988229617310200" datatype="html"> | 4918 | <trans-unit id="3946988229617310200" datatype="html"> |
@@ -4942,8 +4961,8 @@ The link will expire within 1 hour.</source> | |||
4942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> | 4961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> |
4943 | </trans-unit> | 4962 | </trans-unit> |
4944 | <trans-unit id="2076338542820061819" datatype="html"> | 4963 | <trans-unit id="2076338542820061819" datatype="html"> |
4945 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> | 4964 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> |
4946 | <target state="translated">Se a túa instancia está explÃcitamente autorizada por Twitter, incluirase un reprodutor de vÃdeo de PeerTube na cronoloxÃa de Twitter.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Se non o está, usamos unha tarxeta con imaxe que redirixirá á túa instancia PeerTube.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Marca esta opción, garda a configuración e proba cun vÃdeo da túa instancia (https://example.com/w/blabla) en <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para comprobar se a túa instancia está permitida. </target> | 4965 | <target state="translated">Se a túa instancia está explÃcitamente autorizada por Twitter, incluirase un reprodutor de vÃdeo de PeerTube na cronoloxÃa de Twitter.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Se non o está, usamos unha tarxeta con imaxe que redirixirá á túa instancia PeerTube.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Marca esta opción, garda a configuración e proba cun vÃdeo da túa instancia (https://example.com/w/blabla) en <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> para comprobar se a túa instancia está permitida. </target> |
4947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> | 4966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> |
4948 | </trans-unit> | 4967 | </trans-unit> |
4949 | <trans-unit id="493135676263039396" datatype="html"> | 4968 | <trans-unit id="493135676263039396" datatype="html"> |
@@ -4981,13 +5000,13 @@ The link will expire within 1 hour.</source> | |||
4981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> | 5000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> |
4982 | </trans-unit> | 5001 | </trans-unit> |
4983 | <trans-unit id="4420104899393268652" datatype="html"> | 5002 | <trans-unit id="4420104899393268652" datatype="html"> |
4984 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5003 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4985 | <target state="translated">Número máximo de directos simultáneos permitidos na túa instancia <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 para "sen lÃmite")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5004 | <target state="translated">Número máximo de directos simultáneos permitidos na túa instancia <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 para "sen lÃmite")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> | 5005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> |
4987 | </trans-unit> | 5006 | </trans-unit> |
4988 | <trans-unit id="7210210728441530221" datatype="html"> | 5007 | <trans-unit id="7210210728441530221" datatype="html"> |
4989 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5008 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4990 | <target state="translated">Número máximo de directos simultáneos por usuaria <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 para "sen lÃmite")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5009 | <target state="translated">Número máximo de directos simultáneos por usuaria <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 para "sen lÃmite")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> | 5010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> |
4992 | </trans-unit> | 5011 | </trans-unit> |
4993 | <trans-unit id="6830777508073747241" datatype="html"> | 5012 | <trans-unit id="6830777508073747241" datatype="html"> |
@@ -5131,8 +5150,8 @@ The link will expire within 1 hour.</source> | |||
5131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> | 5150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> |
5132 | </trans-unit> | 5151 | </trans-unit> |
5133 | <trans-unit id="7334484418359079994" datatype="html"> | 5152 | <trans-unit id="7334484418359079994" datatype="html"> |
5134 | <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 plain WebTorrent:<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 especially 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> | 5153 | <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 plain WebTorrent:<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 especially 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> |
5135 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Require ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Crear listas HLS e ficheiros MP4 fragmentados resultando nunha mellor reprodución que con WebTorrent plano:<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>"/>O cambio de resolución é máis suave<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Reprodución máis rápida especialmente cos vÃdeos longos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Reprodución máis estable (menos fallos/carga infinita)<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>"/>Se tamén activaches o soporte WebTorrent, multiplicarás a almacenaxe dos vÃdeos por 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 5154 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Require ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Crear listas HLS e ficheiros MP4 fragmentados resultando nunha mellor reprodución que con WebTorrent plano:<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>"/>O cambio de resolución é máis suave<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Reprodución máis rápida especialmente cos vÃdeos longos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Reprodución máis estable (menos fallos/carga infinita)<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>"/>Se tamén activaches o soporte WebTorrent, multiplicarás a almacenaxe dos vÃdeos por 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
5136 | <context-group purpose="location"> | 5155 | <context-group purpose="location"> |
5137 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5156 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5138 | <context context-type="linenumber">99,108</context> | 5157 | <context context-type="linenumber">99,108</context> |
@@ -5194,26 +5213,34 @@ The link will expire within 1 hour.</source> | |||
5194 | <source>new transcoding profiles can be added by PeerTube plugins</source> | 5213 | <source>new transcoding profiles can be added by PeerTube plugins</source> |
5195 | <target state="translated">pódense engadir novos perfÃs de transcodificación con complementos PeerTube</target> | 5214 | <target state="translated">pódense engadir novos perfÃs de transcodificación con complementos PeerTube</target> |
5196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">179</context></context-group> | 5215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">179</context></context-group> |
5197 | </trans-unit><trans-unit id="5216455244039448125" datatype="html"> | 5216 | </trans-unit> |
5198 | <source>VIDEO EDITOR</source><target state="new">VIDEO EDITOR</target> | 5217 | <trans-unit id="5216455244039448125" datatype="html"> |
5218 | <source>VIDEO EDITOR</source> | ||
5219 | <target state="translated">EDITOR DE VÃDEO</target> | ||
5199 | <context-group purpose="location"> | 5220 | <context-group purpose="location"> |
5200 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5221 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5201 | <context context-type="linenumber">198</context> | 5222 | <context context-type="linenumber">198</context> |
5202 | </context-group> | 5223 | </context-group> |
5203 | </trans-unit><trans-unit id="4078329985026583770" datatype="html"> | 5224 | </trans-unit> |
5204 | <source> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </source><target state="new"> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </target> | 5225 | <trans-unit id="4078329985026583770" datatype="html"> |
5226 | <source>Allows your users to edit their video (cut, add intro/outro, add a watermark etc)</source> | ||
5227 | <target state="translated">PermÃtelle ás usuarias editar os vÃdeos (cortar, engadir intro/coda, engadir marca de auga, etc)</target> | ||
5205 | <context-group purpose="location"> | 5228 | <context-group purpose="location"> |
5206 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5229 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5207 | <context context-type="linenumber">199,201</context> | 5230 | <context context-type="linenumber">199,201</context> |
5208 | </context-group> | 5231 | </context-group> |
5209 | </trans-unit><trans-unit id="6675276142886460097" datatype="html"> | 5232 | </trans-unit> |
5210 | <source>Enable video editor</source><target state="new">Enable video editor</target> | 5233 | <trans-unit id="6675276142886460097" datatype="html"> |
5234 | <source>Enable video editor</source> | ||
5235 | <target state="translated">Activar editor de vÃdeo</target> | ||
5211 | <context-group purpose="location"> | 5236 | <context-group purpose="location"> |
5212 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5237 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5213 | <context context-type="linenumber">210</context> | 5238 | <context context-type="linenumber">210</context> |
5214 | </context-group> | 5239 | </context-group> |
5215 | </trans-unit><trans-unit id="1618687984822075464" datatype="html"> | 5240 | </trans-unit> |
5216 | <source>âš ï¸ You need to enable transcoding first to enable video editor</source><target state="new">âš ï¸ You need to enable transcoding first to enable video editor</target> | 5241 | <trans-unit id="1618687984822075464" datatype="html"> |
5242 | <source>âš ï¸ You need to enable transcoding first to enable video editor</source> | ||
5243 | <target state="translated">âš ï¸ Primeiro tes que activar a transcodificación para activar o editor</target> | ||
5217 | <context-group purpose="location"> | 5244 | <context-group purpose="location"> |
5218 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5245 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5219 | <context context-type="linenumber">213</context> | 5246 | <context context-type="linenumber">213</context> |
@@ -5287,19 +5314,13 @@ The link will expire within 1 hour.</source> | |||
5287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> | 5314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> |
5288 | </trans-unit> | 5315 | </trans-unit> |
5289 | <trans-unit id="4067880101082150743" datatype="html"> | 5316 | <trans-unit id="4067880101082150743" datatype="html"> |
5290 | <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> | 5317 | <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> |
5291 | <target state="translated">Escribir código JavaScript directamente.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/>Examplo: <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('teño unha instancia que é un primor');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | 5318 | <target state="translated">Escribir código JavaScript directamente.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/>Examplo: <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('teño unha instancia que é un primor');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
5292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> | 5319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> |
5293 | </trans-unit> | 5320 | </trans-unit> |
5294 | <trans-unit id="5464209657969421100" datatype="html"> | 5321 | <trans-unit id="5464209657969421100" datatype="html"> |
5295 | <source> 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="{{ '{' }}"/> | 5322 | <source>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>"/></source> |
5296 | color: red; | 5323 | <target state="translated">Escribir código CSS directamente. Examplo:<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>"/> Anteceder con <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> para sobrescribir estilos. Exemplo:<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> |
5297 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | ||
5298 | <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="{{ '{' }}"/> | ||
5299 | color: red; | ||
5300 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | ||
5301 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | ||
5302 | <target state="translated">Escribir código CSS directamente. Examplo:<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>"/> Anteceder con <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> para sobrescribir estilos. Exemplo:<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> | ||
5303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> | 5324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> |
5304 | </trans-unit> | 5325 | </trans-unit> |
5305 | <trans-unit id="283725429207896837" datatype="html"> | 5326 | <trans-unit id="283725429207896837" datatype="html"> |
@@ -5316,8 +5337,8 @@ color: red; | |||
5316 | </context-group> | 5337 | </context-group> |
5317 | </trans-unit> | 5338 | </trans-unit> |
5318 | <trans-unit id="8167543029214637769" datatype="html"> | 5339 | <trans-unit id="8167543029214637769" datatype="html"> |
5319 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> | 5340 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> |
5320 | <target state="translated">Hai erros no formulario: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> | 5341 | <target state="translated">Hai erros no formulario: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> |
5321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> | 5342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> |
5322 | </trans-unit> | 5343 | </trans-unit> |
5323 | <trans-unit id="1445676851449000175"> | 5344 | <trans-unit id="1445676851449000175"> |
@@ -5393,8 +5414,8 @@ color: red; | |||
5393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> | 5414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> |
5394 | </trans-unit> | 5415 | </trans-unit> |
5395 | <trans-unit id="6317170736181476800" datatype="html"> | 5416 | <trans-unit id="6317170736181476800" datatype="html"> |
5396 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> | 5417 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> |
5397 | <target state="translated">Actualiza <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>os axustes<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> | 5418 | <target state="translated">Actualiza <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>os axustes<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> |
5398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> | 5419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> |
5399 | </trans-unit> | 5420 | </trans-unit> |
5400 | <trans-unit id="1405600824334286337" datatype="html"> | 5421 | <trans-unit id="1405600824334286337" datatype="html"> |
@@ -5414,40 +5435,40 @@ color: red; | |||
5414 | </context-group> | 5435 | </context-group> |
5415 | </trans-unit> | 5436 | </trans-unit> |
5416 | <trans-unit id="7028708681117573961" datatype="html"> | 5437 | <trans-unit id="7028708681117573961" datatype="html"> |
5417 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5438 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5418 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Engadido recentemente"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5439 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Engadido recentemente"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5419 | <context-group purpose="location"> | 5440 | <context-group purpose="location"> |
5420 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5441 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5421 | <context context-type="linenumber">46</context> | 5442 | <context context-type="linenumber">46</context> |
5422 | </context-group> | 5443 | </context-group> |
5423 | </trans-unit> | 5444 | </trans-unit> |
5424 | <trans-unit id="8190023086228606960" datatype="html"> | 5445 | <trans-unit id="8190023086228606960" datatype="html"> |
5425 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5446 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5426 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Visto recentemente"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5447 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Visto recentemente"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5427 | <context-group purpose="location"> | 5448 | <context-group purpose="location"> |
5428 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5449 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5429 | <context context-type="linenumber">48</context> | 5450 | <context context-type="linenumber">48</context> |
5430 | </context-group> | 5451 | </context-group> |
5431 | </trans-unit> | 5452 | </trans-unit> |
5432 | <trans-unit id="3224510615614621760" datatype="html"> | 5453 | <trans-unit id="3224510615614621760" datatype="html"> |
5433 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5454 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5434 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Popularidade"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5455 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Popularidade"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5435 | <context-group purpose="location"> | 5456 | <context-group purpose="location"> |
5436 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5457 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5437 | <context context-type="linenumber">49</context> | 5458 | <context context-type="linenumber">49</context> |
5438 | </context-group> | 5459 | </context-group> |
5439 | </trans-unit> | 5460 | </trans-unit> |
5440 | <trans-unit id="3082811226222076503" datatype="html"> | 5461 | <trans-unit id="3082811226222076503" datatype="html"> |
5441 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5462 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5442 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Mellor"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5463 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Mellor"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5443 | <context-group purpose="location"> | 5464 | <context-group purpose="location"> |
5444 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5465 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5445 | <context context-type="linenumber">50</context> | 5466 | <context context-type="linenumber">50</context> |
5446 | </context-group> | 5467 | </context-group> |
5447 | </trans-unit> | 5468 | </trans-unit> |
5448 | <trans-unit id="4322133526902910662" datatype="html"> | 5469 | <trans-unit id="4322133526902910662" datatype="html"> |
5449 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5470 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5450 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Gústame"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5471 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Gústame"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5451 | <context-group purpose="location"> | 5472 | <context-group purpose="location"> |
5452 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5473 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5453 | <context context-type="linenumber">51</context> | 5474 | <context context-type="linenumber">51</context> |
@@ -5563,8 +5584,8 @@ color: red; | |||
5563 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> | 5584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> |
5564 | </trans-unit> | 5585 | </trans-unit> |
5565 | <trans-unit id="7350483582490037954" datatype="html"> | 5586 | <trans-unit id="7350483582490037954" datatype="html"> |
5566 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> | 5587 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> |
5567 | <target state="translated">Con <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Agochar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> ou <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Difuminar miniaturas<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, pedirase confirmación para ver o vÃdeo. </target> | 5588 | <target state="translated">Con <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Agochar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> ou <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Difuminar miniaturas<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, pedirase confirmación para ver o vÃdeo. </target> |
5568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> | 5589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> |
5569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> | 5590 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> |
5570 | </trans-unit> | 5591 | </trans-unit> |
@@ -5684,9 +5705,9 @@ color: red; | |||
5684 | <trans-unit id="5417361655914085905" datatype="html"> | 5705 | <trans-unit id="5417361655914085905" datatype="html"> |
5685 | <source>Account page</source> | 5706 | <source>Account page</source> |
5686 | <target state="translated">Páxina da conta</target> | 5707 | <target state="translated">Páxina da conta</target> |
5687 | 5708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">66</context></context-group> | |
5688 | 5709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">72</context></context-group> | |
5689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 5710 | </trans-unit> |
5690 | <trans-unit id="2000373220662583633" datatype="html"> | 5711 | <trans-unit id="2000373220662583633" datatype="html"> |
5691 | <source>No ownership change request found.</source> | 5712 | <source>No ownership change request found.</source> |
5692 | <target state="translated">Non se atopan solicitudes de cambio de propiedade.</target> | 5713 | <target state="translated">Non se atopan solicitudes de cambio de propiedade.</target> |
@@ -5784,10 +5805,10 @@ color: red; | |||
5784 | <trans-unit id="4000980858407872649" datatype="html"> | 5805 | <trans-unit id="4000980858407872649" datatype="html"> |
5785 | <source>Channel page</source> | 5806 | <source>Channel page</source> |
5786 | <target state="translated">Páxina da canle</target> | 5807 | <target state="translated">Páxina da canle</target> |
5787 | 5808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">25</context></context-group> | |
5788 | 5809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5789 | 5810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">63</context></context-group> | |
5790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 5811 | </trans-unit> |
5791 | <trans-unit id="9131836378905533756" datatype="html"> | 5812 | <trans-unit id="9131836378905533756" datatype="html"> |
5792 | <source>Created by <x id="INTERPOLATION"/></source> | 5813 | <source>Created by <x id="INTERPOLATION"/></source> |
5793 | <target state="translated">Creada por <x id="INTERPOLATION"/></target> | 5814 | <target state="translated">Creada por <x id="INTERPOLATION"/></target> |
@@ -5824,8 +5845,8 @@ color: red; | |||
5824 | </context-group> | 5845 | </context-group> |
5825 | </trans-unit> | 5846 | </trans-unit> |
5826 | <trans-unit id="5511928240200239994" datatype="html"> | 5847 | <trans-unit id="5511928240200239994" datatype="html"> |
5827 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | 5848 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> |
5828 | <target state="translated">Algunha das túas canles non están totalmente configuradas. Fainas máis amigables indicando de xeito explÃcito o seu contido engadindo unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>cabeceira<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, un <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> e unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>descrición<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 5849 | <target state="translated">Algunha das túas canles non están totalmente configuradas. Fainas máis amigables indicando de xeito explÃcito o seu contido engadindo unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>cabeceira<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, un <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> e unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>descrición<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
5829 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
5830 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5851 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5831 | <context context-type="linenumber">5</context> | 5852 | <context context-type="linenumber">5</context> |
@@ -5934,8 +5955,8 @@ color: red; | |||
5934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> | 5955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> |
5935 | </trans-unit> | 5956 | </trans-unit> |
5936 | <trans-unit id="8844610145426272276" datatype="html"> | 5957 | <trans-unit id="8844610145426272276" datatype="html"> |
5937 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> | 5958 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> |
5938 | <target state="translated">Axuda á moderación e outras usuarias a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>saber quen es<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, non esquezas <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>completar o perfil da túa conta<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> engadindo un <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> e unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>descrición<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> | 5959 | <target state="translated">Axuda á moderación e outras usuarias a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>saber quen es<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, non esquezas <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>completar o perfil da túa conta<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> engadindo un <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> e unha <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>descrición<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> |
5939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> | 5960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> |
5940 | </trans-unit> | 5961 | </trans-unit> |
5941 | <trans-unit id="3030338154442300172" datatype="html"> | 5962 | <trans-unit id="3030338154442300172" datatype="html"> |
@@ -6009,8 +6030,9 @@ color: red; | |||
6009 | <trans-unit id="2999492056553212422" datatype="html"> | 6030 | <trans-unit id="2999492056553212422" datatype="html"> |
6010 | <source>Banned</source> | 6031 | <source>Banned</source> |
6011 | <target state="translated">Prohibido</target> | 6032 | <target state="translated">Prohibido</target> |
6012 | 6033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group> | |
6013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 6034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">105</context></context-group> |
6035 | </trans-unit> | ||
6014 | <trans-unit id="4572885137800697555" datatype="html"> | 6036 | <trans-unit id="4572885137800697555" datatype="html"> |
6015 | <source>Instance muted</source> | 6037 | <source>Instance muted</source> |
6016 | <target state="translated">Instancia acalada</target> | 6038 | <target state="translated">Instancia acalada</target> |
@@ -6066,36 +6088,36 @@ color: red; | |||
6066 | <trans-unit id="403587185492002456" datatype="html"> | 6088 | <trans-unit id="403587185492002456" datatype="html"> |
6067 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6089 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6068 | <target state="translated">{VAR_PLURAL, plural, =1 {1 subscritora} other {<x id="INTERPOLATION"/> subscritoras}}</target> | 6090 | <target state="translated">{VAR_PLURAL, plural, =1 {1 subscritora} other {<x id="INTERPOLATION"/> subscritoras}}</target> |
6069 | 6091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group> | |
6070 | 6092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> | |
6071 | 6093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group> | |
6072 | 6094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group> | |
6073 | 6095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group> | |
6074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 6096 | </trans-unit> |
6075 | <trans-unit id="3068011377000255023" datatype="html"> | 6097 | <trans-unit id="3068011377000255023" datatype="html"> |
6076 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6098 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6077 | <target state="translated">{VAR_PLURAL, plural, =1 {1 vÃdeo} other {<x id="INTERPOLATION"/> vÃdeos}}</target> | 6099 | <target state="translated">{VAR_PLURAL, plural, =1 {1 vÃdeo} other {<x id="INTERPOLATION"/> vÃdeos}}</target> |
6078 | 6100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> | |
6079 | 6101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group> | |
6080 | 6102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group> | |
6081 | 6103 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group> | |
6082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 6104 | </trans-unit> |
6083 | <trans-unit id="8856905278208146821" datatype="html"> | 6105 | <trans-unit id="8856905278208146821" datatype="html"> |
6084 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> | 6106 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> |
6085 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 visualización} other {{{ video.views | myNumberFormatter }} visualizacións}} "/> </target> | 6107 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 visualización} other {{{ video.views | myNumberFormatter }} visualizacións}} "/> </target> |
6086 | 6108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group> | |
6087 | 6109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | |
6088 | 6110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group> | |
6089 | 6111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group> | |
6090 | 6112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group> | |
6091 | 6113 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group> | |
6092 | 6114 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group> | |
6093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 6115 | </trans-unit> |
6094 | <trans-unit id="4071627711041975501" datatype="html"> | 6116 | <trans-unit id="4071627711041975501" datatype="html"> |
6095 | <source>Show this channel</source> | 6117 | <source>Show this channel</source> |
6096 | <target state="translated">Mostrar esta canle</target> | 6118 | <target state="translated">Mostrar esta canle</target> |
6097 | 6119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">38</context></context-group> | |
6098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6120 | </trans-unit> |
6099 | <trans-unit id="7766488542631150871" datatype="html"> | 6121 | <trans-unit id="7766488542631150871" datatype="html"> |
6100 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 6122 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
6101 | <target state="translated">{VAR_PLURAL, plural, =0 {Sen vÃdeos} =1 {1 vÃdeo} other {<x id="INTERPOLATION"/> vÃdeos}}</target> | 6123 | <target state="translated">{VAR_PLURAL, plural, =0 {Sen vÃdeos} =1 {1 vÃdeo} other {<x id="INTERPOLATION"/> vÃdeos}}</target> |
@@ -6103,9 +6125,7 @@ color: red; | |||
6103 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> | 6125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> |
6104 | </trans-unit> | 6126 | </trans-unit> |
6105 | <trans-unit id="7152797255397280410" datatype="html"> | 6127 | <trans-unit id="7152797255397280410" datatype="html"> |
6106 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 6128 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
6107 | It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another | ||
6108 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | ||
6109 | <target state="translated">Desexas eliminar <x id="PH" equiv-text="videoChannel.displayName"/>? Asà eliminarás <x id="PH_1" equiv-text="videoChannel.videosCount"/> vÃdeos subidos a esta canle, e non poderás volver a crear outra canle co mesmo nome (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> | 6129 | <target state="translated">Desexas eliminar <x id="PH" equiv-text="videoChannel.displayName"/>? Asà eliminarás <x id="PH_1" equiv-text="videoChannel.videosCount"/> vÃdeos subidos a esta canle, e non poderás volver a crear outra canle co mesmo nome (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> |
6110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> | 6130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> |
6111 | </trans-unit> | 6131 | </trans-unit> |
@@ -6126,21 +6146,21 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6126 | <trans-unit id="7828153032795614080"> | 6146 | <trans-unit id="7828153032795614080"> |
6127 | <source>See this video channel</source> | 6147 | <source>See this video channel</source> |
6128 | <target>Ver esta canle de vÃdeo</target> | 6148 | <target>Ver esta canle de vÃdeo</target> |
6129 | 6149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">15</context></context-group> | |
6130 | 6150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group> | |
6131 | 6151 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">4</context></context-group> | |
6132 | 6152 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">7</context></context-group> | |
6133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 6153 | </trans-unit> |
6134 | <trans-unit id="1545109431751219382" datatype="html"> | 6154 | <trans-unit id="1545109431751219382" datatype="html"> |
6135 | <source>This channel doesn't have any videos.</source> | 6155 | <source>This channel doesn't have any videos.</source> |
6136 | <target state="translated">Esta canle non ten vÃdeos.</target> | 6156 | <target state="translated">Esta canle non ten vÃdeos.</target> |
6137 | 6157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group> | |
6138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6158 | </trans-unit> |
6139 | <trans-unit id="2705478076887104088" datatype="html"> | 6159 | <trans-unit id="2705478076887104088" datatype="html"> |
6140 | <source>SHOW THIS CHANNEL ></source> | 6160 | <source>SHOW THIS CHANNEL ></source> |
6141 | <target state="translated">MOSTRAR ESTA CANLE ></target> | 6161 | <target state="translated">MOSTRAR ESTA CANLE ></target> |
6142 | 6162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group> | |
6143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 6163 | </trans-unit> |
6144 | <trans-unit id="4088311569349098646"> | 6164 | <trans-unit id="4088311569349098646"> |
6145 | <source>Stats</source> | 6165 | <source>Stats</source> |
6146 | <target>EstatÃsticas</target> | 6166 | <target>EstatÃsticas</target> |
@@ -6386,8 +6406,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> | 6406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> |
6387 | </trans-unit> | 6407 | </trans-unit> |
6388 | <trans-unit id="1120376809358109718" datatype="html"> | 6408 | <trans-unit id="1120376809358109718" datatype="html"> |
6389 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 6409 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
6390 | <target state="translated">Os parceiros da web non son públicamente accesibles: porque usamos websocket transport, o protocolo é diferente ó clásico rastrexador BitTorrent. Cando usas un navegador web, envÃas ó rastrexador un sinal que contén o teu enderezo IP que escollerá aleatoriamente outros parceiros ós que enviar a información. Le <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>este documento<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para ter máis información </target> | 6410 | <target state="translated">Os parceiros da web non son públicamente accesibles: porque usamos websocket transport, o protocolo é diferente ó clásico rastrexador BitTorrent. Cando usas un navegador web, envÃas ó rastrexador un sinal que contén o teu enderezo IP que escollerá aleatoriamente outros parceiros ós que enviar a información. Le <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>este documento<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para ter máis información </target> |
6391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> | 6411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> |
6392 | </trans-unit> | 6412 | </trans-unit> |
6393 | <trans-unit id="7812408733559506009" datatype="html"> | 6413 | <trans-unit id="7812408733559506009" datatype="html"> |
@@ -6488,8 +6508,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> | 6508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> |
6489 | </trans-unit> | 6509 | </trans-unit> |
6490 | <trans-unit id="4807161697338135032" datatype="html"> | 6510 | <trans-unit id="4807161697338135032" datatype="html"> |
6491 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | 6511 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
6492 | <target state="translated">Contacta coa administración <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 6512 | <target state="translated">Contacta coa administración <x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
6493 | <context-group purpose="location"> | 6513 | <context-group purpose="location"> |
6494 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6514 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6495 | <context context-type="linenumber">3</context> | 6515 | <context context-type="linenumber">3</context> |
@@ -6592,8 +6612,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> | 6612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> |
6593 | </trans-unit> | 6613 | </trans-unit> |
6594 | <trans-unit id="7440807341905682986" datatype="html"> | 6614 | <trans-unit id="7440807341905682986" datatype="html"> |
6595 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> | 6615 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> |
6596 | <target state="translated">Teño polo menos <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> anos de idade e acepto os <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> e o <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Código de conduta<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> desta instancia </target> | 6616 | <target state="translated">Teño polo menos <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> anos de idade e acepto os <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Termos<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> e o <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Código de conduta<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> desta instancia </target> |
6597 | <context-group purpose="location"> | 6617 | <context-group purpose="location"> |
6598 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 6618 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
6599 | <context context-type="linenumber">5,10</context> | 6619 | <context context-type="linenumber">5,10</context> |
@@ -6746,9 +6766,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6746 | <trans-unit id="25349740244798533" datatype="html"> | 6766 | <trans-unit id="25349740244798533" datatype="html"> |
6747 | <source>Username copied</source> | 6767 | <source>Username copied</source> |
6748 | <target state="translated">Nome de usuaria copiado</target> | 6768 | <target state="translated">Nome de usuaria copiado</target> |
6749 | 6769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">121</context></context-group> | |
6750 | 6770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">115</context></context-group> | |
6751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 6771 | </trans-unit> |
6752 | <trans-unit id="9221735175659318025" datatype="html"> | 6772 | <trans-unit id="9221735175659318025" datatype="html"> |
6753 | <source>1 subscriber</source> | 6773 | <source>1 subscriber</source> |
6754 | <target state="translated">1 subscritora</target> | 6774 | <target state="translated">1 subscritora</target> |
@@ -6765,8 +6785,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> | 6785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> |
6766 | </trans-unit> | 6786 | </trans-unit> |
6767 | <trans-unit id="8011855989482474311" datatype="html"> | 6787 | <trans-unit id="8011855989482474311" datatype="html"> |
6768 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 6788 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
6769 | <target state="translated">Un <code>.mp4</code> que mantén o audio orixinal, sen vÃdeo</target> | 6789 | <target state="translated">Un <code>.mp4</code> que mantén o audio orixinal, sen vÃdeo</target> |
6770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> | 6790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> |
6771 | </trans-unit> | 6791 | </trans-unit> |
6772 | <trans-unit id="7756250490108954499" datatype="html"> | 6792 | <trans-unit id="7756250490108954499" datatype="html"> |
@@ -6914,8 +6934,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6914 | <trans-unit id="2060042292048624940" datatype="html"> | 6934 | <trans-unit id="2060042292048624940" datatype="html"> |
6915 | <source>Configuration updated.</source> | 6935 | <source>Configuration updated.</source> |
6916 | <target state="translated">Configuración actualizada.</target> | 6936 | <target state="translated">Configuración actualizada.</target> |
6917 | 6937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">309</context></context-group> | |
6918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 6938 | </trans-unit> |
6919 | <trans-unit id="6920964195632624609" datatype="html"> | 6939 | <trans-unit id="6920964195632624609" datatype="html"> |
6920 | <source>INSTANCE HOMEPAGE</source> | 6940 | <source>INSTANCE HOMEPAGE</source> |
6921 | <target state="translated">INICIO DA INSTANCIA</target> | 6941 | <target state="translated">INICIO DA INSTANCIA</target> |
@@ -7118,42 +7138,42 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7118 | <trans-unit id="7022070615528435141" datatype="html"> | 7138 | <trans-unit id="7022070615528435141" datatype="html"> |
7119 | <source>Delete</source> | 7139 | <source>Delete</source> |
7120 | <target state="translated">Eliminar</target> | 7140 | <target state="translated">Eliminar</target> |
7121 | 7141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7122 | 7142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group> | |
7123 | 7143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7124 | 7144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7125 | 7145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group> | |
7126 | 7146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7127 | 7147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">209</context></context-group> | |
7128 | 7148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7129 | 7149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group> | |
7130 | 7150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group> | |
7131 | 7151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group> | |
7132 | 7152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7133 | 7153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group> | |
7134 | 7154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group> | |
7135 | 7155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7136 | 7156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group> | |
7137 | 7157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">225</context></context-group> | |
7138 | 7158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">190</context></context-group> | |
7139 | 7159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | |
7140 | 7160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7141 | 7161 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group> | |
7142 | 7162 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group> | |
7143 | 7163 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group> | |
7144 | 7164 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group> | |
7145 | 7165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
7146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">209</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">225</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">190</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 7166 | </trans-unit> |
7147 | <trans-unit id="8312101634344200207" datatype="html"> | 7167 | <trans-unit id="8312101634344200207" datatype="html"> |
7148 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 7168 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
7149 | <target state="translated"><x id="PH" equiv-text="this.views"/> espectadoras</target> | 7169 | <target state="translated"><x id="PH" equiv-text="this.views"/> espectadoras</target> |
7150 | 7170 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">266</context></context-group> | |
7151 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 7171 | </trans-unit> |
7152 | <trans-unit id="7756087706411154095" datatype="html"> | 7172 | <trans-unit id="7756087706411154095" datatype="html"> |
7153 | <source><x id="PH" equiv-text="this.views"/> views</source> | 7173 | <source><x id="PH" equiv-text="this.views"/> views</source> |
7154 | <target state="translated"><x id="PH" equiv-text="this.views"/> visualizacións</target> | 7174 | <target state="translated"><x id="PH" equiv-text="this.views"/> visualizacións</target> |
7155 | 7175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">269</context></context-group> | |
7156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">269</context></context-group></trans-unit> | 7176 | </trans-unit> |
7157 | <trans-unit id="2452034338905853167" datatype="html"> | 7177 | <trans-unit id="2452034338905853167" datatype="html"> |
7158 | <source><x id="PH"/> removed from instance followers </source> | 7178 | <source><x id="PH"/> removed from instance followers </source> |
7159 | <target state="translated"><x id="PH"/> eliminada das seguidoras da instancia </target> | 7179 | <target state="translated"><x id="PH"/> eliminada das seguidoras da instancia </target> |
@@ -7425,17 +7445,17 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7425 | <trans-unit id="4859202148272511129" datatype="html"> | 7445 | <trans-unit id="4859202148272511129" datatype="html"> |
7426 | <source>Unblock</source> | 7446 | <source>Unblock</source> |
7427 | <target state="translated">Desbloquear</target> | 7447 | <target state="translated">Desbloquear</target> |
7428 | 7448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7429 | 7449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">133</context></context-group> | |
7430 | 7450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7431 | 7451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">354</context></context-group> | |
7432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">133</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 7452 | </trans-unit> |
7433 | <trans-unit id="4922469417589203720" datatype="html"> | 7453 | <trans-unit id="4922469417589203720" datatype="html"> |
7434 | <source>Video <x id="PH"/> unblocked.</source> | 7454 | <source>Video <x id="PH"/> unblocked.</source> |
7435 | <target state="translated">VÃdeo <x id="PH"/> desbloqueado.</target> | 7455 | <target state="translated">VÃdeo <x id="PH"/> desbloqueado.</target> |
7436 | 7456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
7437 | 7457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group> | |
7438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group></trans-unit> | 7458 | </trans-unit> |
7439 | <trans-unit id="6286037250766429054" datatype="html"> | 7459 | <trans-unit id="6286037250766429054" datatype="html"> |
7440 | <source>yes</source> | 7460 | <source>yes</source> |
7441 | <target state="translated">si</target> | 7461 | <target state="translated">si</target> |
@@ -7555,8 +7575,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7555 | </context-group> | 7575 | </context-group> |
7556 | </trans-unit> | 7576 | </trans-unit> |
7557 | <trans-unit id="7223931053738621590" datatype="html"> | 7577 | <trans-unit id="7223931053738621590" datatype="html"> |
7558 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | 7578 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> |
7559 | <target state="translated">PeerTube cre que o IP do teu navegador é <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 7579 | <target state="translated">PeerTube cre que o IP do teu navegador é <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
7560 | <context-group purpose="location"> | 7580 | <context-group purpose="location"> |
7561 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7581 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7562 | <context context-type="linenumber">4</context> | 7582 | <context context-type="linenumber">4</context> |
@@ -7603,16 +7623,16 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7603 | </context-group> | 7623 | </context-group> |
7604 | </trans-unit> | 7624 | </trans-unit> |
7605 | <trans-unit id="1285026053775066761" datatype="html"> | 7625 | <trans-unit id="1285026053775066761" datatype="html"> |
7606 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> | 7626 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> |
7607 | <target state="translated">Comproba a chave de configuración do <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/></target> | 7627 | <target state="translated">Comproba a chave de configuración do <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/></target> |
7608 | <context-group purpose="location"> | 7628 | <context-group purpose="location"> |
7609 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7629 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7610 | <context context-type="linenumber">15</context> | 7630 | <context context-type="linenumber">15</context> |
7611 | </context-group> | 7631 | </context-group> |
7612 | </trans-unit> | 7632 | </trans-unit> |
7613 | <trans-unit id="7014275542536964627" datatype="html"> | 7633 | <trans-unit id="7014275542536964627" datatype="html"> |
7614 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> | 7634 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> |
7615 | <target state="translated">Se instalaches PeerTube usando Docker, executa o <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> con <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (ler <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> | 7635 | <target state="translated">Se instalaches PeerTube usando Docker, executa o <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> con <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (ler <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> |
7616 | <context-group purpose="location"> | 7636 | <context-group purpose="location"> |
7617 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7637 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7618 | <context context-type="linenumber">16,17</context> | 7638 | <context context-type="linenumber">16,17</context> |
@@ -7662,19 +7682,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7662 | <trans-unit id="314315645942131479" datatype="html"> | 7682 | <trans-unit id="314315645942131479" datatype="html"> |
7663 | <source>Info</source> | 7683 | <source>Info</source> |
7664 | <target state="translated">Info</target> | 7684 | <target state="translated">Info</target> |
7665 | 7685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">41</context></context-group> | |
7666 | 7686 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group> | |
7667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7687 | </trans-unit> |
7668 | <trans-unit id="4116911651502837995" datatype="html"> | 7688 | <trans-unit id="4116911651502837995" datatype="html"> |
7669 | <source>Files</source> | 7689 | <source>Files</source> |
7670 | <target state="translated">Ficheiros</target> | 7690 | <target state="translated">Ficheiros</target> |
7671 | 7691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
7672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 7692 | </trans-unit> |
7673 | <trans-unit id="4767765747214995164" datatype="html"> | 7693 | <trans-unit id="4767765747214995164" datatype="html"> |
7674 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | 7694 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> |
7675 | <target state="translated">Publicado <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> | 7695 | <target state="translated">Publicado <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> |
7676 | 7696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
7677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7697 | </trans-unit> |
7678 | <trans-unit id="6759205696902713848" datatype="html"> | 7698 | <trans-unit id="6759205696902713848" datatype="html"> |
7679 | <source>Warning</source> | 7699 | <source>Warning</source> |
7680 | <target state="translated">Aviso</target> | 7700 | <target state="translated">Aviso</target> |
@@ -7710,13 +7730,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7710 | <trans-unit id="7098180453085889026" datatype="html"> | 7730 | <trans-unit id="7098180453085889026" datatype="html"> |
7711 | <source>Blocked videos</source> | 7731 | <source>Blocked videos</source> |
7712 | <target state="translated">VÃdeos bloqueados</target> | 7732 | <target state="translated">VÃdeos bloqueados</target> |
7713 | 7733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">66</context></context-group> | |
7714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 7734 | </trans-unit> |
7715 | <trans-unit id="7805059636749367886" datatype="html"> | 7735 | <trans-unit id="7805059636749367886" datatype="html"> |
7716 | <source>Muted instances</source> | 7736 | <source>Muted instances</source> |
7717 | <target state="translated">Instancias acaladas</target> | 7737 | <target state="translated">Instancias acaladas</target> |
7718 | 7738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">101</context></context-group> | |
7719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 7739 | </trans-unit> |
7720 | <trans-unit id="5974506725502681113" datatype="html"> | 7740 | <trans-unit id="5974506725502681113" datatype="html"> |
7721 | <source>Password changed for user <x id="PH"/>.</source> | 7741 | <source>Password changed for user <x id="PH"/>.</source> |
7722 | <target state="translated">Cambiado o contrasinal da usuaria <x id="PH"/>.</target> | 7742 | <target state="translated">Cambiado o contrasinal da usuaria <x id="PH"/>.</target> |
@@ -7810,105 +7830,103 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7810 | <trans-unit id="8564701209009684429" datatype="html"> | 7830 | <trans-unit id="8564701209009684429" datatype="html"> |
7811 | <source>Federation</source> | 7831 | <source>Federation</source> |
7812 | <target state="translated">Federación</target> | 7832 | <target state="translated">Federación</target> |
7813 | 7833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">72</context></context-group> | |
7814 | 7834 | </trans-unit> | |
7815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | ||
7816 | <trans-unit id="3767259920053407667" datatype="html"> | 7835 | <trans-unit id="3767259920053407667" datatype="html"> |
7817 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7836 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7818 | <target state="translated">Os vÃdeos serán eliminados, os comentarios serán soterrados.</target> | 7837 | <target state="translated">Os vÃdeos serán eliminados, os comentarios serán soterrados.</target> |
7819 | 7838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7820 | 7839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">345</context></context-group> | |
7821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> | 7840 | </trans-unit> |
7822 | <trans-unit id="4209525355702493436" datatype="html"> | 7841 | <trans-unit id="4209525355702493436" datatype="html"> |
7823 | <source>Ban</source> | 7842 | <source>Ban</source> |
7824 | <target state="translated">Vetar</target> | 7843 | <target state="translated">Vetar</target> |
7825 | 7844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
7826 | 7845 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">350</context></context-group> | |
7827 | 7846 | </trans-unit> | |
7828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">350</context></context-group></trans-unit> | ||
7829 | <trans-unit id="3855396975723886053" datatype="html"> | 7847 | <trans-unit id="3855396975723886053" datatype="html"> |
7830 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7848 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7831 | <target state="translated">A usuaria non poderá entrar, pero os vÃdeos e comentarios permanecerán visibles.</target> | 7849 | <target state="translated">A usuaria non poderá entrar, pero os vÃdeos e comentarios permanecerán visibles.</target> |
7832 | 7850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">102</context></context-group> | |
7833 | 7851 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group> | |
7834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7852 | </trans-unit> |
7835 | <trans-unit id="4451482225013335720" datatype="html"> | 7853 | <trans-unit id="4451482225013335720" datatype="html"> |
7836 | <source>Unban</source> | 7854 | <source>Unban</source> |
7837 | <target state="translated">Levantar veto</target> | 7855 | <target state="translated">Levantar veto</target> |
7838 | 7856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">107</context></context-group> | |
7839 | 7857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | |
7840 | 7858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | |
7841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 7859 | </trans-unit> |
7842 | <trans-unit id="7210277223053877333" datatype="html"> | 7860 | <trans-unit id="7210277223053877333" datatype="html"> |
7843 | <source>Set Email as Verified</source> | 7861 | <source>Set Email as Verified</source> |
7844 | <target state="translated">Establecer email como Verificado</target> | 7862 | <target state="translated">Establecer email como Verificado</target> |
7845 | 7863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7846 | 7864 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">362</context></context-group> | |
7847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">362</context></context-group></trans-unit> | 7865 | </trans-unit> |
7848 | <trans-unit id="4207916966377787111" datatype="html"> | 7866 | <trans-unit id="4207916966377787111" datatype="html"> |
7849 | <source>Created</source> | 7867 | <source>Created</source> |
7850 | <target state="translated">Creado</target> | 7868 | <target state="translated">Creado</target> |
7851 | 7869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">129</context></context-group> | |
7852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 7870 | </trans-unit> |
7853 | <trans-unit id="8140268298586972139" datatype="html"> | 7871 | <trans-unit id="8140268298586972139" datatype="html"> |
7854 | <source>Daily quota</source> | 7872 | <source>Daily quota</source> |
7855 | <target state="translated">Cota diaria</target> | 7873 | <target state="translated">Cota diaria</target> |
7856 | 7874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7875 | </trans-unit> |
7858 | <trans-unit id="7910076708497708162" datatype="html"> | 7876 | <trans-unit id="7910076708497708162" datatype="html"> |
7859 | <source>Last login</source> | 7877 | <source>Last login</source> |
7860 | <target state="translated">Última conexión</target> | 7878 | <target state="translated">Última conexión</target> |
7861 | 7879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 7880 | </trans-unit> |
7863 | <trans-unit id="3403978719736970622" datatype="html"> | 7881 | <trans-unit id="3403978719736970622" datatype="html"> |
7864 | <source>You cannot ban root.</source> | 7882 | <source>You cannot ban root.</source> |
7865 | <target state="translated">Non podes vetar a root.</target> | 7883 | <target state="translated">Non podes vetar a root.</target> |
7866 | 7884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">173</context></context-group> | |
7867 | 7885 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">71</context></context-group> | |
7868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">173</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 7886 | </trans-unit> |
7869 | <trans-unit id="4884272193574287483" datatype="html"> | 7887 | <trans-unit id="4884272193574287483" datatype="html"> |
7870 | <source>Do you really want to unban <x id="PH"/> users?</source> | 7888 | <source>Do you really want to unban <x id="PH"/> users?</source> |
7871 | <target state="translated">Quéreslle levantar o veto a <x id="PH"/> usuarias?</target> | 7889 | <target state="translated">Quéreslle levantar o veto a <x id="PH"/> usuarias?</target> |
7872 | 7890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | |
7873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 7891 | </trans-unit> |
7874 | <trans-unit id="8712248120167780385" datatype="html"> | 7892 | <trans-unit id="8712248120167780385" datatype="html"> |
7875 | <source><x id="PH"/> users unbanned. </source> | 7893 | <source><x id="PH"/> users unbanned. </source> |
7876 | <target state="translated"><x id="PH"/> usuarias sen veto. </target> | 7894 | <target state="translated"><x id="PH"/> usuarias sen veto. </target> |
7877 | 7895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">192</context></context-group> | |
7878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 7896 | </trans-unit> |
7879 | <trans-unit id="5325873477837320044" datatype="html"> | 7897 | <trans-unit id="5325873477837320044" datatype="html"> |
7880 | <source>You cannot delete root.</source> | 7898 | <source>You cannot delete root.</source> |
7881 | <target state="translated">Non podes eliminar a root.</target> | 7899 | <target state="translated">Non podes eliminar a root.</target> |
7882 | 7900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">203</context></context-group> | |
7883 | 7901 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">99</context></context-group> | |
7884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">203</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 7902 | </trans-unit> |
7885 | <trans-unit id="4086135983283545219" datatype="html"> | 7903 | <trans-unit id="4086135983283545219" datatype="html"> |
7886 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 7904 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
7887 | <target state="translated">Se eliminas estas usuarias, non poderás crear outras co mesmo nome de usuaria!</target> | 7905 | <target state="translated">Se eliminas estas usuarias, non poderás crear outras co mesmo nome de usuaria!</target> |
7888 | 7906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group> | |
7889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 7907 | </trans-unit> |
7890 | <trans-unit id="7166936623843420016" datatype="html"> | 7908 | <trans-unit id="7166936623843420016" datatype="html"> |
7891 | <source><x id="PH"/> users deleted. </source> | 7909 | <source><x id="PH"/> users deleted. </source> |
7892 | <target state="translated"><x id="PH"/> usuarias eliminadas. </target> | 7910 | <target state="translated"><x id="PH"/> usuarias eliminadas. </target> |
7893 | 7911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">215</context></context-group> | |
7894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 7912 | </trans-unit> |
7895 | <trans-unit id="8360664597512051242" datatype="html"> | 7913 | <trans-unit id="8360664597512051242" datatype="html"> |
7896 | <source><x id="PH"/> users email set as verified. </source> | 7914 | <source><x id="PH"/> users email set as verified. </source> |
7897 | <target state="translated"><x id="PH"/> email de usuaria marcado como verificado. </target> | 7915 | <target state="translated"><x id="PH"/> email de usuaria marcado como verificado. </target> |
7898 | 7916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">227</context></context-group> | |
7899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7917 | </trans-unit> |
7900 | <trans-unit id="7390990800435887351" datatype="html"> | 7918 | <trans-unit id="7390990800435887351" datatype="html"> |
7901 | <source>Account <x id="PH"/> unmuted.</source> | 7919 | <source>Account <x id="PH"/> unmuted.</source> |
7902 | <target state="translated">Conta <x id="PH"/> xa non está acalada.</target> | 7920 | <target state="translated">Conta <x id="PH"/> xa non está acalada.</target> |
7903 | 7921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7904 | 7922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group> | |
7905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 7923 | </trans-unit> |
7906 | <trans-unit id="7246356397085094208" datatype="html"> | 7924 | <trans-unit id="7246356397085094208" datatype="html"> |
7907 | <source>Instance <x id="PH"/> unmuted.</source> | 7925 | <source>Instance <x id="PH"/> unmuted.</source> |
7908 | <target state="translated">Instancia <x id="PH"/> xa non está acalada.</target> | 7926 | <target state="translated">Instancia <x id="PH"/> xa non está acalada.</target> |
7909 | 7927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> | |
7910 | 7928 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group> | |
7911 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group></trans-unit> | 7929 | </trans-unit> |
7912 | <trans-unit id="5551551295632950210" datatype="html"> | 7930 | <trans-unit id="5551551295632950210" datatype="html"> |
7913 | <source>Videos history is enabled</source> | 7931 | <source>Videos history is enabled</source> |
7914 | <target state="translated">O historial dos vÃdeos está activado</target> | 7932 | <target state="translated">O historial dos vÃdeos está activado</target> |
@@ -7946,8 +7964,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> | 7964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> |
7947 | </trans-unit> | 7965 | </trans-unit> |
7948 | <trans-unit id="778524577866863576" datatype="html"> | 7966 | <trans-unit id="778524577866863576" datatype="html"> |
7949 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> | 7967 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> |
7950 | <target state="translated"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Limpar historial </target> | 7968 | <target state="translated"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Limpar historial </target> |
7951 | <context-group purpose="location"> | 7969 | <context-group purpose="location"> |
7952 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7970 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
7953 | <context context-type="linenumber">17,19</context> | 7971 | <context context-type="linenumber">17,19</context> |
@@ -7969,8 +7987,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | 7987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> |
7970 | </trans-unit> | 7988 | </trans-unit> |
7971 | <trans-unit id="8553059323353586765" datatype="html"> | 7989 | <trans-unit id="8553059323353586765" datatype="html"> |
7972 | <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>"/>. It is never shown to the public. </source> | 7990 | <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>"/>. It is never shown to the public. </source> |
7973 | <target state="translated">O teu email actual <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>"/>. Non se mostra públicamente. </target> | 7991 | <target state="translated">O teu email actual <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>"/>. Non se mostra públicamente. </target> |
7974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> | 7992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> |
7975 | </trans-unit> | 7993 | </trans-unit> |
7976 | <trans-unit id="853586874765134886" datatype="html"> | 7994 | <trans-unit id="853586874765134886" datatype="html"> |
@@ -7984,31 +8002,36 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7984 | <target state="translated">Contrasinal actualizado.</target> | 8002 | <target state="translated">Contrasinal actualizado.</target> |
7985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">53</context></context-group> | 8003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">53</context></context-group> |
7986 | </trans-unit> | 8004 | </trans-unit> |
7987 | |||
7988 | <trans-unit id="6897292459203320054" datatype="html"> | 8005 | <trans-unit id="6897292459203320054" datatype="html"> |
7989 | <source>Type your username to confirm</source> | 8006 | <source>Type your username to confirm</source> |
7990 | <target state="translated">Escribe o teu nome de usuaria para confirmar</target> | 8007 | <target state="translated">Escribe o teu nome de usuaria para confirmar</target> |
7991 | 8008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">29</context></context-group> | |
7992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 8009 | </trans-unit> |
7993 | <trans-unit id="3122895472333547524" datatype="html"> | 8010 | <trans-unit id="3122895472333547524" datatype="html"> |
7994 | <source>Delete your account</source> | 8011 | <source>Delete your account</source> |
7995 | <target state="translated">Elimina a túa conta</target> | 8012 | <target state="translated">Elimina a túa conta</target> |
7996 | 8013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group> | |
7997 | 8014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">31</context></context-group> | |
7998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="577064441120663273" datatype="html"> | 8015 | </trans-unit> |
7999 | <source>Are you sure you want to delete your account?</source><target state="new">Are you sure you want to delete your account?</target> | 8016 | <trans-unit id="577064441120663273" datatype="html"> |
8017 | <source>Are you sure you want to delete your account?</source> | ||
8018 | <target state="translated">Tes certeza de querer eliminar a túa conta?</target> | ||
8000 | <context-group purpose="location"> | 8019 | <context-group purpose="location"> |
8001 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8020 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8002 | <context context-type="linenumber">22</context> | 8021 | <context context-type="linenumber">22</context> |
8003 | </context-group> | 8022 | </context-group> |
8004 | </trans-unit><trans-unit id="2740531699780274491" datatype="html"> | 8023 | </trans-unit> |
8005 | <source>This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</source><target state="new">This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</target> | 8024 | <trans-unit id="2740531699780274491" datatype="html"> |
8025 | <source>This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</source> | ||
8026 | <target state="translated">Esto vai eliminar tódolos teus datos, incluÃndo canles, vÃdeos, comentarios e non poderás crear outra usuaria nesta instancia usando <x id="PH" equiv-text="this.user.username"/> como identificador.</target> | ||
8006 | <context-group purpose="location"> | 8027 | <context-group purpose="location"> |
8007 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8028 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8008 | <context context-type="linenumber">25</context> | 8029 | <context context-type="linenumber">25</context> |
8009 | </context-group> | 8030 | </context-group> |
8010 | </trans-unit><trans-unit id="5422897685524094185" datatype="html"> | 8031 | </trans-unit> |
8011 | <source>Content cached by other servers and other third-parties might make longer to be deleted.</source><target state="new">Content cached by other servers and other third-parties might make longer to be deleted.</target> | 8032 | <trans-unit id="5422897685524094185" datatype="html"> |
8033 | <source>Content cached by other servers and other third-parties might make longer to be deleted.</source> | ||
8034 | <target state="new">Content cached by other servers and other third-parties might make longer to be deleted.</target> | ||
8012 | <context-group purpose="location"> | 8035 | <context-group purpose="location"> |
8013 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8036 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8014 | <context context-type="linenumber">27</context> | 8037 | <context context-type="linenumber">27</context> |
@@ -8017,13 +8040,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8017 | <trans-unit id="2520605306994744004" datatype="html"> | 8040 | <trans-unit id="2520605306994744004" datatype="html"> |
8018 | <source>Delete my account</source> | 8041 | <source>Delete my account</source> |
8019 | <target state="translated">Eliminar a miña conta</target> | 8042 | <target state="translated">Eliminar a miña conta</target> |
8020 | 8043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group> | |
8021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8044 | </trans-unit> |
8022 | <trans-unit id="3902597758945766483" datatype="html"> | 8045 | <trans-unit id="3902597758945766483" datatype="html"> |
8023 | <source>Your account is deleted.</source> | 8046 | <source>Your account is deleted.</source> |
8024 | <target state="translated">A túa conta foi eliminada.</target> | 8047 | <target state="translated">A túa conta foi eliminada.</target> |
8025 | 8048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">39</context></context-group> | |
8026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 8049 | </trans-unit> |
8027 | <trans-unit id="4776289814033837037" datatype="html"> | 8050 | <trans-unit id="4776289814033837037" datatype="html"> |
8028 | <source>Interface settings updated.</source> | 8051 | <source>Interface settings updated.</source> |
8029 | <target state="translated">Actualizados os axustes da interface.</target> | 8052 | <target state="translated">Actualizados os axustes da interface.</target> |
@@ -8379,9 +8402,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8379 | <trans-unit id="4844578664427956129" datatype="html"> | 8402 | <trans-unit id="4844578664427956129" datatype="html"> |
8380 | <source>Change ownership</source> | 8403 | <source>Change ownership</source> |
8381 | <target state="translated">Cambiar a propiedade</target> | 8404 | <target state="translated">Cambiar a propiedade</target> |
8382 | 8405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
8383 | 8406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">220</context></context-group> | |
8384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 8407 | </trans-unit> |
8385 | <trans-unit id="3380608219513805292" datatype="html"> | 8408 | <trans-unit id="3380608219513805292" datatype="html"> |
8386 | <source>Playlist <x id="PH"/> deleted.</source> | 8409 | <source>Playlist <x id="PH"/> deleted.</source> |
8387 | <target state="translated">Lista <x id="PH"/> eliminada.</target> | 8410 | <target state="translated">Lista <x id="PH"/> eliminada.</target> |
@@ -8416,18 +8439,20 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8416 | <trans-unit id="2027805873922338635" datatype="html"> | 8439 | <trans-unit id="2027805873922338635" datatype="html"> |
8417 | <source>Do you really want to delete <x id="PH"/>? </source> | 8440 | <source>Do you really want to delete <x id="PH"/>? </source> |
8418 | <target state="translated">Desexas eliminar <x id="PH"/>? </target> | 8441 | <target state="translated">Desexas eliminar <x id="PH"/>? </target> |
8419 | 8442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8420 | 8443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group> | |
8421 | 8444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group> | |
8422 | 8445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
8423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 8446 | </trans-unit> |
8424 | <trans-unit id="2767660806989176400" datatype="html"> | 8447 | <trans-unit id="2767660806989176400" datatype="html"> |
8425 | <source>Video <x id="PH"/> deleted.</source> | 8448 | <source>Video <x id="PH"/> deleted.</source> |
8426 | <target state="translated">VÃdeo <x id="PH"/> eliminado.</target> | 8449 | <target state="translated">VÃdeo <x id="PH"/> eliminado.</target> |
8427 | 8450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group> | |
8428 | 8451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group> | |
8429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group></trans-unit><trans-unit id="3742657416068781599" datatype="html"> | 8452 | </trans-unit> |
8430 | <source>Editor</source><target state="new">Editor</target> | 8453 | <trans-unit id="3742657416068781599" datatype="html"> |
8454 | <source>Editor</source> | ||
8455 | <target state="new">Editor</target> | ||
8431 | <context-group purpose="location"> | 8456 | <context-group purpose="location"> |
8432 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> | 8457 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> |
8433 | <context context-type="linenumber">208</context> | 8458 | <context context-type="linenumber">208</context> |
@@ -8561,122 +8586,162 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8561 | <source>PLAYLISTS</source> | 8586 | <source>PLAYLISTS</source> |
8562 | <target state="translated">LISTAXES</target> | 8587 | <target state="translated">LISTAXES</target> |
8563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group> | 8588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group> |
8564 | </trans-unit><trans-unit id="3862497674553063473" datatype="html"> | 8589 | </trans-unit> |
8565 | <source>Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></source><target state="new">Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></target> | 8590 | <trans-unit id="3862497674553063473" datatype="html"> |
8591 | <source>Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></source> | ||
8592 | <target state="new">Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></target> | ||
8566 | <context-group purpose="location"> | 8593 | <context-group purpose="location"> |
8567 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8594 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8568 | <context context-type="linenumber">2</context> | 8595 | <context context-type="linenumber">2</context> |
8569 | </context-group> | 8596 | </context-group> |
8570 | </trans-unit><trans-unit id="5470809226184152498" datatype="html"> | 8597 | </trans-unit> |
8571 | <source>CUT VIDEO</source><target state="new">CUT VIDEO</target> | 8598 | <trans-unit id="5470809226184152498" datatype="html"> |
8599 | <source>CUT VIDEO</source> | ||
8600 | <target state="new">CUT VIDEO</target> | ||
8572 | <context-group purpose="location"> | 8601 | <context-group purpose="location"> |
8573 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8602 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8574 | <context context-type="linenumber">8</context> | 8603 | <context context-type="linenumber">8</context> |
8575 | </context-group> | 8604 | </context-group> |
8576 | </trans-unit><trans-unit id="5639348768609905535" datatype="html"> | 8605 | </trans-unit> |
8577 | <source>Set a new start/end.</source><target state="new">Set a new start/end.</target> | 8606 | <trans-unit id="5639348768609905535" datatype="html"> |
8607 | <source>Set a new start/end.</source> | ||
8608 | <target state="new">Set a new start/end.</target> | ||
8578 | <context-group purpose="location"> | 8609 | <context-group purpose="location"> |
8579 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8610 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8580 | <context context-type="linenumber">10</context> | 8611 | <context context-type="linenumber">10</context> |
8581 | </context-group> | 8612 | </context-group> |
8582 | </trans-unit><trans-unit id="783359429228696335" datatype="html"> | 8613 | </trans-unit> |
8583 | <source>New start</source><target state="new">New start</target> | 8614 | <trans-unit id="783359429228696335" datatype="html"> |
8615 | <source>New start</source> | ||
8616 | <target state="new">New start</target> | ||
8584 | <context-group purpose="location"> | 8617 | <context-group purpose="location"> |
8585 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8618 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8586 | <context context-type="linenumber">13</context> | 8619 | <context context-type="linenumber">13</context> |
8587 | </context-group> | 8620 | </context-group> |
8588 | </trans-unit><trans-unit id="8910806821370505981" datatype="html"> | 8621 | </trans-unit> |
8589 | <source>New end</source><target state="new">New end</target> | 8622 | <trans-unit id="8910806821370505981" datatype="html"> |
8623 | <source>New end</source> | ||
8624 | <target state="new">New end</target> | ||
8590 | <context-group purpose="location"> | 8625 | <context-group purpose="location"> |
8591 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8626 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8592 | <context context-type="linenumber">18</context> | 8627 | <context context-type="linenumber">18</context> |
8593 | </context-group> | 8628 | </context-group> |
8594 | </trans-unit><trans-unit id="2502254344085150809" datatype="html"> | 8629 | </trans-unit> |
8595 | <source>ADD INTRO</source><target state="new">ADD INTRO</target> | 8630 | <trans-unit id="2502254344085150809" datatype="html"> |
8631 | <source>ADD INTRO</source> | ||
8632 | <target state="new">ADD INTRO</target> | ||
8596 | <context-group purpose="location"> | 8633 | <context-group purpose="location"> |
8597 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8634 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8598 | <context context-type="linenumber">24</context> | 8635 | <context context-type="linenumber">24</context> |
8599 | </context-group> | 8636 | </context-group> |
8600 | </trans-unit><trans-unit id="5030063045826839645" datatype="html"> | 8637 | </trans-unit> |
8601 | <source>Concatenate a file at the beginning of the video.</source><target state="new">Concatenate a file at the beginning of the video.</target> | 8638 | <trans-unit id="5030063045826839645" datatype="html"> |
8639 | <source>Concatenate a file at the beginning of the video.</source> | ||
8640 | <target state="new">Concatenate a file at the beginning of the video.</target> | ||
8602 | <context-group purpose="location"> | 8641 | <context-group purpose="location"> |
8603 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8642 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8604 | <context context-type="linenumber">26</context> | 8643 | <context context-type="linenumber">26</context> |
8605 | </context-group> | 8644 | </context-group> |
8606 | </trans-unit><trans-unit id="4798642303989337390" datatype="html"> | 8645 | </trans-unit> |
8607 | <source>Select the intro video file</source><target state="new">Select the intro video file</target> | 8646 | <trans-unit id="4798642303989337390" datatype="html"> |
8647 | <source>Select the intro video file</source> | ||
8648 | <target state="new">Select the intro video file</target> | ||
8608 | <context-group purpose="location"> | 8649 | <context-group purpose="location"> |
8609 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8650 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8610 | <context context-type="linenumber">30</context> | 8651 | <context context-type="linenumber">30</context> |
8611 | </context-group> | 8652 | </context-group> |
8612 | </trans-unit><trans-unit id="7698413240170540435" datatype="html"> | 8653 | </trans-unit> |
8613 | <source>ADD OUTRO</source><target state="new">ADD OUTRO</target> | 8654 | <trans-unit id="7698413240170540435" datatype="html"> |
8655 | <source>ADD OUTRO</source> | ||
8656 | <target state="new">ADD OUTRO</target> | ||
8614 | <context-group purpose="location"> | 8657 | <context-group purpose="location"> |
8615 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8658 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8616 | <context context-type="linenumber">38</context> | 8659 | <context context-type="linenumber">38</context> |
8617 | </context-group> | 8660 | </context-group> |
8618 | </trans-unit><trans-unit id="2832051749922509643" datatype="html"> | 8661 | </trans-unit> |
8619 | <source>Concatenate a file at the end of the video.</source><target state="new">Concatenate a file at the end of the video.</target> | 8662 | <trans-unit id="2832051749922509643" datatype="html"> |
8663 | <source>Concatenate a file at the end of the video.</source> | ||
8664 | <target state="new">Concatenate a file at the end of the video.</target> | ||
8620 | <context-group purpose="location"> | 8665 | <context-group purpose="location"> |
8621 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8666 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8622 | <context context-type="linenumber">40</context> | 8667 | <context context-type="linenumber">40</context> |
8623 | </context-group> | 8668 | </context-group> |
8624 | </trans-unit><trans-unit id="4368653199478595315" datatype="html"> | 8669 | </trans-unit> |
8625 | <source>Select the outro video file</source><target state="new">Select the outro video file</target> | 8670 | <trans-unit id="4368653199478595315" datatype="html"> |
8671 | <source>Select the outro video file</source> | ||
8672 | <target state="new">Select the outro video file</target> | ||
8626 | <context-group purpose="location"> | 8673 | <context-group purpose="location"> |
8627 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8674 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8628 | <context context-type="linenumber">44</context> | 8675 | <context context-type="linenumber">44</context> |
8629 | </context-group> | 8676 | </context-group> |
8630 | </trans-unit><trans-unit id="3463158361655332380" datatype="html"> | 8677 | </trans-unit> |
8631 | <source>ADD WATERMARK</source><target state="new">ADD WATERMARK</target> | 8678 | <trans-unit id="3463158361655332380" datatype="html"> |
8679 | <source>ADD WATERMARK</source> | ||
8680 | <target state="new">ADD WATERMARK</target> | ||
8632 | <context-group purpose="location"> | 8681 | <context-group purpose="location"> |
8633 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8682 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8634 | <context context-type="linenumber">52</context> | 8683 | <context context-type="linenumber">52</context> |
8635 | </context-group> | 8684 | </context-group> |
8636 | </trans-unit><trans-unit id="4472450670859114703" datatype="html"> | 8685 | </trans-unit> |
8637 | <source>Add a watermark image to the video.</source><target state="new">Add a watermark image to the video.</target> | 8686 | <trans-unit id="4472450670859114703" datatype="html"> |
8687 | <source>Add a watermark image to the video.</source> | ||
8688 | <target state="new">Add a watermark image to the video.</target> | ||
8638 | <context-group purpose="location"> | 8689 | <context-group purpose="location"> |
8639 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8690 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8640 | <context context-type="linenumber">54</context> | 8691 | <context context-type="linenumber">54</context> |
8641 | </context-group> | 8692 | </context-group> |
8642 | </trans-unit><trans-unit id="155510305759087510" datatype="html"> | 8693 | </trans-unit> |
8643 | <source>Select watermark image file</source><target state="new">Select watermark image file</target> | 8694 | <trans-unit id="155510305759087510" datatype="html"> |
8695 | <source>Select watermark image file</source> | ||
8696 | <target state="new">Select watermark image file</target> | ||
8644 | <context-group purpose="location"> | 8697 | <context-group purpose="location"> |
8645 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8698 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8646 | <context context-type="linenumber">58</context> | 8699 | <context context-type="linenumber">58</context> |
8647 | </context-group> | 8700 | </context-group> |
8648 | </trans-unit><trans-unit id="3926035808219061063" datatype="html"> | 8701 | </trans-unit> |
8649 | <source>Run video edition</source><target state="new">Run video edition</target> | 8702 | <trans-unit id="3926035808219061063" datatype="html"> |
8703 | <source>Run video edition</source> | ||
8704 | <target state="new">Run video edition</target> | ||
8650 | <context-group purpose="location"> | 8705 | <context-group purpose="location"> |
8651 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8706 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8652 | <context context-type="linenumber">66</context> | 8707 | <context context-type="linenumber">66</context> |
8653 | </context-group> | 8708 | </context-group> |
8654 | </trans-unit><trans-unit id="1514792472513458403" datatype="html"> | 8709 | </trans-unit> |
8655 | <source>Video before edition</source><target state="new">Video before edition</target> | 8710 | <trans-unit id="1514792472513458403" datatype="html"> |
8711 | <source>Video before edition</source> | ||
8712 | <target state="new">Video before edition</target> | ||
8656 | <context-group purpose="location"> | 8713 | <context-group purpose="location"> |
8657 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8714 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8658 | <context context-type="linenumber">75</context> | 8715 | <context context-type="linenumber">75</context> |
8659 | </context-group> | 8716 | </context-group> |
8660 | </trans-unit><trans-unit id="1109043661443571733" datatype="html"> | 8717 | </trans-unit> |
8661 | <source>Edition tasks:</source><target state="new">Edition tasks:</target> | 8718 | <trans-unit id="1109043661443571733" datatype="html"> |
8719 | <source>Edition tasks:</source> | ||
8720 | <target state="new">Edition tasks:</target> | ||
8662 | <context-group purpose="location"> | 8721 | <context-group purpose="location"> |
8663 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8722 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8664 | <context context-type="linenumber">80</context> | 8723 | <context context-type="linenumber">80</context> |
8665 | </context-group> | 8724 | </context-group> |
8666 | </trans-unit><trans-unit id="3541115907775840269" datatype="html"> | 8725 | </trans-unit> |
8667 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source><target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | 8726 | <trans-unit id="3541115907775840269" datatype="html"> |
8727 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source> | ||
8728 | <target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | ||
8668 | <context-group purpose="location"> | 8729 | <context-group purpose="location"> |
8669 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8730 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8670 | <context context-type="linenumber">72</context> | 8731 | <context context-type="linenumber">72</context> |
8671 | </context-group> | 8732 | </context-group> |
8672 | </trans-unit><trans-unit id="3858880927114551513" datatype="html"> | 8733 | </trans-unit> |
8673 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source><target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | 8734 | <trans-unit id="3858880927114551513" datatype="html"> |
8735 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source> | ||
8736 | <target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | ||
8674 | <context-group purpose="location"> | 8737 | <context-group purpose="location"> |
8675 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8738 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8676 | <context context-type="linenumber">76</context> | 8739 | <context context-type="linenumber">76</context> |
8677 | </context-group> | 8740 | </context-group> |
8678 | </trans-unit><trans-unit id="4876327655498234453" datatype="html"> | 8741 | </trans-unit> |
8679 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source><target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | 8742 | <trans-unit id="4876327655498234453" datatype="html"> |
8743 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source> | ||
8744 | <target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | ||
8680 | <context-group purpose="location"> | 8745 | <context-group purpose="location"> |
8681 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8746 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8682 | <context context-type="linenumber">77</context> | 8747 | <context context-type="linenumber">77</context> |
@@ -8738,8 +8803,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8738 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> | 8803 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> |
8739 | </trans-unit> | 8804 | </trans-unit> |
8740 | <trans-unit id="2013324644839511073" datatype="html"> | 8805 | <trans-unit id="2013324644839511073" datatype="html"> |
8741 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. | 8806 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8742 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
8743 | <target state="translated">Non se poden obter as credenciais OAuth Client: <x id="PH" equiv-text="error.text"/>. Asegúrate de ter configurado correctamente PeerTube (config/ directory), en particular a sección "webserver".</target> | 8807 | <target state="translated">Non se poden obter as credenciais OAuth Client: <x id="PH" equiv-text="error.text"/>. Asegúrate de ter configurado correctamente PeerTube (config/ directory), en particular a sección "webserver".</target> |
8744 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> | 8808 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> |
8745 | </trans-unit> | 8809 | </trans-unit> |
@@ -8837,41 +8901,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8837 | <trans-unit id="6048892649018070225" datatype="html"> | 8901 | <trans-unit id="6048892649018070225" datatype="html"> |
8838 | <source>Today</source> | 8902 | <source>Today</source> |
8839 | <target state="translated">Hoxe</target> | 8903 | <target state="translated">Hoxe</target> |
8840 | 8904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group> | |
8841 | 8905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group> | |
8842 | 8906 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group> | |
8843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 8907 | </trans-unit> |
8844 | <trans-unit id="4498682414491138092" datatype="html"> | 8908 | <trans-unit id="4498682414491138092" datatype="html"> |
8845 | <source>Yesterday</source> | 8909 | <source>Yesterday</source> |
8846 | <target state="translated">Onte</target> | 8910 | <target state="translated">Onte</target> |
8847 | 8911 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group> | |
8848 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 8912 | </trans-unit> |
8849 | <trans-unit id="5073473933031004097" datatype="html"> | 8913 | <trans-unit id="5073473933031004097" datatype="html"> |
8850 | <source>This week</source> | 8914 | <source>This week</source> |
8851 | <target state="translated">Nesta semana</target> | 8915 | <target state="translated">Nesta semana</target> |
8852 | 8916 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group> | |
8853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 8917 | </trans-unit> |
8854 | <trans-unit id="842657237693374355" datatype="html"> | 8918 | <trans-unit id="842657237693374355" datatype="html"> |
8855 | <source>This month</source> | 8919 | <source>This month</source> |
8856 | <target state="translated">Neste mes</target> | 8920 | <target state="translated">Neste mes</target> |
8857 | 8921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 8922 | </trans-unit> |
8859 | <trans-unit id="4463380307954693363" datatype="html"> | 8923 | <trans-unit id="4463380307954693363" datatype="html"> |
8860 | <source>Last month</source> | 8924 | <source>Last month</source> |
8861 | <target state="translated">Último mes</target> | 8925 | <target state="translated">Último mes</target> |
8862 | 8926 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group> | |
8863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group></trans-unit> | 8927 | </trans-unit> |
8864 | <trans-unit id="7473676707373218484" datatype="html"> | 8928 | <trans-unit id="7473676707373218484" datatype="html"> |
8865 | <source>Older</source> | 8929 | <source>Older</source> |
8866 | <target state="translated">Máis antigo</target> | 8930 | <target state="translated">Máis antigo</target> |
8867 | 8931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
8868 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 8932 | </trans-unit> |
8869 | <trans-unit id="5036991421517255667" datatype="html"> | 8933 | <trans-unit id="5036991421517255667" datatype="html"> |
8870 | <source>Cannot load more videos. Try again later.</source> | 8934 | <source>Cannot load more videos. Try again later.</source> |
8871 | <target state="translated">Non se poden cargar máis vÃdeo, inténtao máis tarde.</target> | 8935 | <target state="translated">Non se poden cargar máis vÃdeo, inténtao máis tarde.</target> |
8872 | 8936 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group> | |
8873 | 8937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8938 | </trans-unit> |
8875 | <trans-unit id="4873149362496451858" datatype="html"> | 8939 | <trans-unit id="4873149362496451858" datatype="html"> |
8876 | <source>Last 7 days</source> | 8940 | <source>Last 7 days</source> |
8877 | <target state="translated">Últimos 7 dÃas</target> | 8941 | <target state="translated">Últimos 7 dÃas</target> |
@@ -8912,8 +8976,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> | 8976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> |
8913 | </trans-unit> | 8977 | </trans-unit> |
8914 | <trans-unit id="6613870447286561244" datatype="html"> | 8978 | <trans-unit id="6613870447286561244" datatype="html"> |
8915 | <source>Long (> 10 min)</source> | 8979 | <source>Long (> 10 min)</source> |
8916 | <target state="translated">Longo (> 10 min)</target> | 8980 | <target state="translated">Longo (> 10 min)</target> |
8917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> | 8981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> |
8918 | </trans-unit> | 8982 | </trans-unit> |
8919 | <trans-unit id="1787083504545967" datatype="html"> | 8983 | <trans-unit id="1787083504545967" datatype="html"> |
@@ -9077,8 +9141,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9077 | <trans-unit id="9178182467454450952" datatype="html"> | 9141 | <trans-unit id="9178182467454450952" datatype="html"> |
9078 | <source>Confirm</source> | 9142 | <source>Confirm</source> |
9079 | <target state="translated">Confirmar</target> | 9143 | <target state="translated">Confirmar</target> |
9080 | 9144 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">40</context></context-group> | |
9081 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 9145 | </trans-unit> |
9082 | <trans-unit id="7784486624424057376" datatype="html"> | 9146 | <trans-unit id="7784486624424057376" datatype="html"> |
9083 | <source>Instance name is required.</source> | 9147 | <source>Instance name is required.</source> |
9084 | <target state="translated">RequÃrese un nome para a instancia.</target> | 9148 | <target state="translated">RequÃrese un nome para a instancia.</target> |
@@ -9540,8 +9604,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9540 | <source>Video caption file is required.</source> | 9604 | <source>Video caption file is required.</source> |
9541 | <target state="translated">RequÃrese un ficheiro para os subtÃtulos.</target> | 9605 | <target state="translated">RequÃrese un ficheiro para os subtÃtulos.</target> |
9542 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> | 9606 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> |
9543 | </trans-unit><trans-unit id="9145435275110757909" datatype="html"> | 9607 | </trans-unit> |
9544 | <source>Caption content is required.</source><target state="new">Caption content is required.</target> | 9608 | <trans-unit id="9145435275110757909" datatype="html"> |
9609 | <source>Caption content is required.</source> | ||
9610 | <target state="new">Caption content is required.</target> | ||
9545 | <context-group purpose="location"> | 9611 | <context-group purpose="location"> |
9546 | <context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context> | 9612 | <context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context> |
9547 | <context context-type="linenumber">21</context> | 9613 | <context context-type="linenumber">21</context> |
@@ -9588,8 +9654,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> | 9654 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> |
9589 | </trans-unit> | 9655 | </trans-unit> |
9590 | <trans-unit id="5637879201055173642" datatype="html"> | 9656 | <trans-unit id="5637879201055173642" datatype="html"> |
9591 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> | 9657 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
9592 | <target state="translated">Le a <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>documentación<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para saber cómo utilizar a función de retransmisión en directo de PeerTube. </target> | 9658 | <target state="translated">Le a <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>documentación<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> para saber cómo utilizar a función de retransmisión en directo de PeerTube. </target> |
9593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> | 9659 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> |
9594 | </trans-unit> | 9660 | </trans-unit> |
9595 | <trans-unit id="4267638333776227701" datatype="html"> | 9661 | <trans-unit id="4267638333776227701" datatype="html"> |
@@ -9638,47 +9704,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9638 | <trans-unit id="7220386604464537651" datatype="html"> | 9704 | <trans-unit id="7220386604464537651" datatype="html"> |
9639 | <source>Live RTMP Url</source> | 9705 | <source>Live RTMP Url</source> |
9640 | <target state="translated">URL RTMP do Directo</target> | 9706 | <target state="translated">URL RTMP do Directo</target> |
9641 | 9707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">245</context></context-group> | |
9642 | 9708 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group> | |
9643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">245</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 9709 | </trans-unit> |
9644 | <trans-unit id="4956017863340142734" datatype="html"> | 9710 | <trans-unit id="4956017863340142734" datatype="html"> |
9645 | <source>Live RTMPS Url</source> | 9711 | <source>Live RTMPS Url</source> |
9646 | <target state="translated">Url RTMPS do Directo</target> | 9712 | <target state="translated">Url RTMPS do Directo</target> |
9647 | 9713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group> | |
9648 | 9714 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group> | |
9649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 9715 | </trans-unit> |
9650 | <trans-unit id="1225050607125362052" datatype="html"> | 9716 | <trans-unit id="1225050607125362052" datatype="html"> |
9651 | <source>Live stream key</source> | 9717 | <source>Live stream key</source> |
9652 | <target state="translated">Chave da emisión en directo</target> | 9718 | <target state="translated">Chave da emisión en directo</target> |
9653 | 9719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">255</context></context-group> | |
9654 | 9720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group> | |
9655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">255</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 9721 | </trans-unit> |
9656 | <trans-unit id="5058286083557987083" datatype="html"> | 9722 | <trans-unit id="5058286083557987083" datatype="html"> |
9657 | <source>âš ï¸ Never share your stream key with anyone.</source> | 9723 | <source>âš ï¸ Never share your stream key with anyone.</source> |
9658 | <target state="translated">âš ï¸ Non compartas nunca con ninguén a chave do directo.</target> | 9724 | <target state="translated">âš ï¸ Non compartas nunca con ninguén a chave do directo.</target> |
9659 | 9725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">258</context></context-group> | |
9660 | 9726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group> | |
9661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">258</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 9727 | </trans-unit> |
9662 | <trans-unit id="5941639683192662500" datatype="html"> | 9728 | <trans-unit id="5941639683192662500" datatype="html"> |
9663 | <source>This is a normal live</source> | 9729 | <source>This is a normal live</source> |
9664 | <target state="translated">Este é un directo normal</target> | 9730 | <target state="translated">Este é un directo normal</target> |
9665 | 9731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">264</context></context-group> | |
9666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">264</context></context-group></trans-unit> | 9732 | </trans-unit> |
9667 | <trans-unit id="7263323611663811322" datatype="html"> | 9733 | <trans-unit id="7263323611663811322" datatype="html"> |
9668 | <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source> | 9734 | <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source> |
9669 | <target state="translated">Non podes emitir varias veces nun directo normal, pero podes gardar unha repetición del que utilizará o mesmo URL</target> | 9735 | <target state="translated">Non podes emitir varias veces nun directo normal, pero podes gardar unha repetición del que utilizará o mesmo URL</target> |
9670 | 9736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">266</context></context-group> | |
9671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">266</context></context-group></trans-unit> | 9737 | </trans-unit> |
9672 | <trans-unit id="2261925229535541622" datatype="html"> | 9738 | <trans-unit id="2261925229535541622" datatype="html"> |
9673 | <source>This is a permanent/recurring live</source> | 9739 | <source>This is a permanent/recurring live</source> |
9674 | <target state="translated">Este é un directo permanente/recurrente</target> | 9740 | <target state="translated">Este é un directo permanente/recurrente</target> |
9675 | 9741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">273</context></context-group> | |
9676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">273</context></context-group></trans-unit> | 9742 | </trans-unit> |
9677 | <trans-unit id="6791299537270100091" datatype="html"> | 9743 | <trans-unit id="6791299537270100091" datatype="html"> |
9678 | <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source> | 9744 | <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source> |
9679 | <target state="translated">Podes emitir varias veces nun directo permanente/recurrente. O URL para as espectadoras non cambiará pero non podes gardar repeticións dos teus directos</target> | 9745 | <target state="translated">Podes emitir varias veces nun directo permanente/recurrente. O URL para as espectadoras non cambiará pero non podes gardar repeticións dos teus directos</target> |
9680 | 9746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">275</context></context-group> | |
9681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">275</context></context-group></trans-unit> | 9747 | </trans-unit> |
9682 | <trans-unit id="3112273530390098557" datatype="html"> | 9748 | <trans-unit id="3112273530390098557" datatype="html"> |
9683 | <source>Replay will be saved</source> | 9749 | <source>Replay will be saved</source> |
9684 | <target state="translated">Gardarase a repetición</target> | 9750 | <target state="translated">Gardarase a repetición</target> |
@@ -10175,14 +10241,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10175 | <trans-unit id="2830831449226931729" datatype="html"> | 10241 | <trans-unit id="2830831449226931729" datatype="html"> |
10176 | <source>Instance languages</source> | 10242 | <source>Instance languages</source> |
10177 | <target state="translated">Idiomas da instancia</target> | 10243 | <target state="translated">Idiomas da instancia</target> |
10178 | 10244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">193</context></context-group> | |
10179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> | 10245 | </trans-unit> |
10180 | <trans-unit id="40119547597591062" datatype="html"> | 10246 | <trans-unit id="40119547597591062" datatype="html"> |
10181 | <source>All languages</source> | 10247 | <source>All languages</source> |
10182 | <target state="translated">Tódolos idiomas</target> | 10248 | <target state="translated">Tódolos idiomas</target> |
10183 | 10249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">194</context></context-group> | |
10184 | 10250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group> | |
10185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">194</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 10251 | </trans-unit> |
10186 | <trans-unit id="996392855508119363" datatype="html"> | 10252 | <trans-unit id="996392855508119363" datatype="html"> |
10187 | <source>Hidden</source> | 10253 | <source>Hidden</source> |
10188 | <target state="translated">Agochado</target> | 10254 | <target state="translated">Agochado</target> |
@@ -10272,20 +10338,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10272 | <trans-unit id="5708680277917691451" datatype="html"> | 10338 | <trans-unit id="5708680277917691451" datatype="html"> |
10273 | <source><x id="PH"/> users banned. </source> | 10339 | <source><x id="PH"/> users banned. </source> |
10274 | <target state="translated"><x id="PH"/> usuarias vetadas. </target> | 10340 | <target state="translated"><x id="PH"/> usuarias vetadas. </target> |
10275 | 10341 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">67</context></context-group> | |
10276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 10342 | </trans-unit> |
10277 | <trans-unit id="2448281151916042849" datatype="html"> | 10343 | <trans-unit id="2448281151916042849" datatype="html"> |
10278 | <source>User <x id="PH"/> banned.</source> | 10344 | <source>User <x id="PH"/> banned.</source> |
10279 | <target state="translated">Usuaria <x id="PH"/> vetada.</target> | 10345 | <target state="translated">Usuaria <x id="PH"/> vetada.</target> |
10280 | 10346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group> | |
10281 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group></trans-unit><trans-unit id="3160979325245958752" datatype="html"> | 10347 | </trans-unit> |
10282 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source><target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | 10348 | <trans-unit id="3160979325245958752" datatype="html"> |
10349 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source> | ||
10350 | <target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | ||
10283 | <context-group purpose="location"> | 10351 | <context-group purpose="location"> |
10284 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10352 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10285 | <context context-type="linenumber">82</context> | 10353 | <context context-type="linenumber">82</context> |
10286 | </context-group> | 10354 | </context-group> |
10287 | </trans-unit><trans-unit id="8088707210191809175" datatype="html"> | 10355 | </trans-unit> |
10288 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source><target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | 10356 | <trans-unit id="8088707210191809175" datatype="html"> |
10357 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source> | ||
10358 | <target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | ||
10289 | <context-group purpose="location"> | 10359 | <context-group purpose="location"> |
10290 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10360 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10291 | <context context-type="linenumber">84</context> | 10361 | <context context-type="linenumber">84</context> |
@@ -10294,52 +10364,52 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10294 | <trans-unit id="8269144351796756896" datatype="html"> | 10364 | <trans-unit id="8269144351796756896" datatype="html"> |
10295 | <source>Do you really want to unban <x id="PH"/>?</source> | 10365 | <source>Do you really want to unban <x id="PH"/>?</source> |
10296 | <target state="translated">Desexas retirarlle o veto a <x id="PH"/>?</target> | 10366 | <target state="translated">Desexas retirarlle o veto a <x id="PH"/>?</target> |
10297 | 10367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | |
10298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 10368 | </trans-unit> |
10299 | <trans-unit id="1794219875546376069" datatype="html"> | 10369 | <trans-unit id="1794219875546376069" datatype="html"> |
10300 | <source>User <x id="PH"/> unbanned.</source> | 10370 | <source>User <x id="PH"/> unbanned.</source> |
10301 | <target state="translated">Usuaria <x id="PH"/> sen veto.</target> | 10371 | <target state="translated">Usuaria <x id="PH"/> sen veto.</target> |
10302 | 10372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group> | |
10303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 10373 | </trans-unit> |
10304 | <trans-unit id="9208009623124569456" datatype="html"> | 10374 | <trans-unit id="9208009623124569456" datatype="html"> |
10305 | <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source> | 10375 | <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source> |
10306 | <target state="translated">Se eliminas a usuaria <x id="PH" equiv-text="user.username"/>, non poderás crear outra co mesmo nome de usuaria!</target> | 10376 | <target state="translated">Se eliminas a usuaria <x id="PH" equiv-text="user.username"/>, non poderás crear outra co mesmo nome de usuaria!</target> |
10307 | 10377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">103</context></context-group> | |
10308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 10378 | </trans-unit> |
10309 | <trans-unit id="6307826440781941134" datatype="html"> | 10379 | <trans-unit id="6307826440781941134" datatype="html"> |
10310 | <source>Delete <x id="PH" equiv-text="user.username"/></source> | 10380 | <source>Delete <x id="PH" equiv-text="user.username"/></source> |
10311 | <target state="translated">Eliminar <x id="PH" equiv-text="user.username"/></target> | 10381 | <target state="translated">Eliminar <x id="PH" equiv-text="user.username"/></target> |
10312 | 10382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group> | |
10313 | 10383 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group> | |
10314 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> | 10384 | </trans-unit> |
10315 | <trans-unit id="6301381219225831298" datatype="html"> | 10385 | <trans-unit id="6301381219225831298" datatype="html"> |
10316 | <source>User <x id="PH"/> deleted.</source> | 10386 | <source>User <x id="PH"/> deleted.</source> |
10317 | <target state="translated">Usuaria <x id="PH"/> eliminada.</target> | 10387 | <target state="translated">Usuaria <x id="PH"/> eliminada.</target> |
10318 | 10388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group> | |
10319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 10389 | </trans-unit> |
10320 | <trans-unit id="3896582359861826661" datatype="html"> | 10390 | <trans-unit id="3896582359861826661" datatype="html"> |
10321 | <source>User <x id="PH"/> email set as verified</source> | 10391 | <source>User <x id="PH"/> email set as verified</source> |
10322 | <target state="translated">Email da usuaria <x id="PH"/> marcado como verificado</target> | 10392 | <target state="translated">Email da usuaria <x id="PH"/> marcado como verificado</target> |
10323 | 10393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group> | |
10324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 10394 | </trans-unit> |
10325 | <trans-unit id="8150022485860412528" datatype="html"> | 10395 | <trans-unit id="8150022485860412528" datatype="html"> |
10326 | <source>Account <x id="PH"/> muted.</source> | 10396 | <source>Account <x id="PH"/> muted.</source> |
10327 | <target state="translated">Conta <x id="PH"/> acalada.</target> | 10397 | <target state="translated">Conta <x id="PH"/> acalada.</target> |
10328 | 10398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group> | |
10329 | 10399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> | |
10330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group></trans-unit> | 10400 | </trans-unit> |
10331 | <trans-unit id="1598375456114200087" datatype="html"> | 10401 | <trans-unit id="1598375456114200087" datatype="html"> |
10332 | <source>Instance <x id="PH"/> muted. </source> | 10402 | <source>Instance <x id="PH"/> muted. </source> |
10333 | <target state="translated">Instancia <x id="PH"/> acalada. </target> | 10403 | <target state="translated">Instancia <x id="PH"/> acalada. </target> |
10334 | 10404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> | |
10335 | 10405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group> | |
10336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group></trans-unit> | 10406 | </trans-unit> |
10337 | <trans-unit id="2558977494773636050" datatype="html"> | 10407 | <trans-unit id="2558977494773636050" datatype="html"> |
10338 | <source>Account <x id="PH"/> muted by the instance.</source> | 10408 | <source>Account <x id="PH"/> muted by the instance.</source> |
10339 | <target state="translated">Conta <x id="PH"/> acalada pola instancia.</target> | 10409 | <target state="translated">Conta <x id="PH"/> acalada pola instancia.</target> |
10340 | 10410 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group> | |
10341 | 10411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group> | |
10342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 10412 | </trans-unit> |
10343 | <trans-unit id="1595779426198793580" datatype="html"> | 10413 | <trans-unit id="1595779426198793580" datatype="html"> |
10344 | <source>Mute server</source> | 10414 | <source>Mute server</source> |
10345 | <target state="translated">Acalar servidor</target> | 10415 | <target state="translated">Acalar servidor</target> |
@@ -10363,156 +10433,156 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10363 | <trans-unit id="3085641638748358969" datatype="html"> | 10433 | <trans-unit id="3085641638748358969" datatype="html"> |
10364 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 10434 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
10365 | <target state="translated">Conta <x id="PH"/> restablecida pola instancia.</target> | 10435 | <target state="translated">Conta <x id="PH"/> restablecida pola instancia.</target> |
10366 | 10436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group> | |
10367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group></trans-unit> | 10437 | </trans-unit> |
10368 | <trans-unit id="4991892477258601737" datatype="html"> | 10438 | <trans-unit id="4991892477258601737" datatype="html"> |
10369 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10439 | <source>Instance <x id="PH"/> muted by the instance.</source> |
10370 | <target state="translated">Instancia <x id="PH"/> acalada pola instancia.</target> | 10440 | <target state="translated">Instancia <x id="PH"/> acalada pola instancia.</target> |
10371 | 10441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group> | |
10372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group></trans-unit> | 10442 | </trans-unit> |
10373 | <trans-unit id="4379430340167561220" datatype="html"> | 10443 | <trans-unit id="4379430340167561220" datatype="html"> |
10374 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10444 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
10375 | <target state="translated">Instancia <x id="PH"/> restablecida pola instancia.</target> | 10445 | <target state="translated">Instancia <x id="PH"/> restablecida pola instancia.</target> |
10376 | 10446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group> | |
10377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10447 | </trans-unit> |
10378 | <trans-unit id="8173437618471379044" datatype="html"> | 10448 | <trans-unit id="8173437618471379044" datatype="html"> |
10379 | <source>Are you sure you want to remove all the comments of this account?</source> | 10449 | <source>Are you sure you want to remove all the comments of this account?</source> |
10380 | <target state="translated">Tes a certeza de querer eliminar tódolos comentarios desta conta?</target> | 10450 | <target state="translated">Tes a certeza de querer eliminar tódolos comentarios desta conta?</target> |
10381 | 10451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">243</context></context-group> | |
10382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">243</context></context-group></trans-unit> | 10452 | </trans-unit> |
10383 | <trans-unit id="6315346579373254461" datatype="html"> | 10453 | <trans-unit id="6315346579373254461" datatype="html"> |
10384 | <source>Delete account comments</source> | 10454 | <source>Delete account comments</source> |
10385 | <target state="translated">Eliminar tódolos comentarios</target> | 10455 | <target state="translated">Eliminar tódolos comentarios</target> |
10386 | 10456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">244</context></context-group> | |
10387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> | 10457 | </trans-unit> |
10388 | <trans-unit id="8559170154828316298" datatype="html"> | 10458 | <trans-unit id="8559170154828316298" datatype="html"> |
10389 | <source>Will remove comments of this account (may take several minutes).</source> | 10459 | <source>Will remove comments of this account (may take several minutes).</source> |
10390 | <target state="translated">Eliminará tódolos comentarios desta conta (poderÃa tomar uns minutos).</target> | 10460 | <target state="translated">Eliminará tódolos comentarios desta conta (poderÃa tomar uns minutos).</target> |
10391 | 10461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">250</context></context-group> | |
10392 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> | 10462 | </trans-unit> |
10393 | <trans-unit id="4268530178786707817" datatype="html"> | 10463 | <trans-unit id="4268530178786707817" datatype="html"> |
10394 | <source>My account moderation</source> | 10464 | <source>My account moderation</source> |
10395 | <target state="translated">Moderando a miña conta</target> | 10465 | <target state="translated">Moderando a miña conta</target> |
10396 | 10466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> | |
10397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 10467 | </trans-unit> |
10398 | <trans-unit id="7187838764371214919" datatype="html"> | 10468 | <trans-unit id="7187838764371214919" datatype="html"> |
10399 | <source>Edit user</source> | 10469 | <source>Edit user</source> |
10400 | <target state="translated">Editar usuaria</target> | 10470 | <target state="translated">Editar usuaria</target> |
10401 | 10471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group> | |
10402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit> | 10472 | </trans-unit> |
10403 | <trans-unit id="4728427543536046034" datatype="html"> | 10473 | <trans-unit id="4728427543536046034" datatype="html"> |
10404 | <source>Change quota, role, and more.</source> | 10474 | <source>Change quota, role, and more.</source> |
10405 | <target state="translated">Cambiar cota, rol, e máis.</target> | 10475 | <target state="translated">Cambiar cota, rol, e máis.</target> |
10406 | 10476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group> | |
10407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 10477 | </trans-unit> |
10408 | <trans-unit id="7913022656086109932" datatype="html"> | 10478 | <trans-unit id="7913022656086109932" datatype="html"> |
10409 | <source>Delete user</source> | 10479 | <source>Delete user</source> |
10410 | <target state="translated">Eliminar usuaria</target> | 10480 | <target state="translated">Eliminar usuaria</target> |
10411 | 10481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">344</context></context-group> | |
10412 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 10482 | </trans-unit> |
10413 | <trans-unit id="7577876364431026966" datatype="html"> | 10483 | <trans-unit id="7577876364431026966" datatype="html"> |
10414 | <source>Unban user</source> | 10484 | <source>Unban user</source> |
10415 | <target state="translated">Restablecer usuaria</target> | 10485 | <target state="translated">Restablecer usuaria</target> |
10416 | 10486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">356</context></context-group> | |
10417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">356</context></context-group></trans-unit> | 10487 | </trans-unit> |
10418 | <trans-unit id="3508163549683020253" datatype="html"> | 10488 | <trans-unit id="3508163549683020253" datatype="html"> |
10419 | <source>Allow the user to login and create videos/comments again</source> | 10489 | <source>Allow the user to login and create videos/comments again</source> |
10420 | <target state="translated">Permitirlle á usuaria acceder e que publique vÃdeos/comentarios de novo</target> | 10490 | <target state="translated">Permitirlle á usuaria acceder e que publique vÃdeos/comentarios de novo</target> |
10421 | 10491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group> | |
10422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> | 10492 | </trans-unit> |
10423 | <trans-unit id="1888272455383898478" datatype="html"> | 10493 | <trans-unit id="1888272455383898478" datatype="html"> |
10424 | <source>Mute this account</source> | 10494 | <source>Mute this account</source> |
10425 | <target state="translated">Acalar esta conta</target> | 10495 | <target state="translated">Acalar esta conta</target> |
10426 | 10496 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group> | |
10427 | 10497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group> | |
10428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 10498 | </trans-unit> |
10429 | <trans-unit id="2365286519320230773" datatype="html"> | 10499 | <trans-unit id="2365286519320230773" datatype="html"> |
10430 | <source>Hide any content from that user from you.</source> | 10500 | <source>Hide any content from that user from you.</source> |
10431 | <target state="translated">Agocharche calquera contido desta usuaria.</target> | 10501 | <target state="translated">Agocharche calquera contido desta usuaria.</target> |
10432 | 10502 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
10433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 10503 | </trans-unit> |
10434 | <trans-unit id="4043508901590508211" datatype="html"> | 10504 | <trans-unit id="4043508901590508211" datatype="html"> |
10435 | <source>Unmute this account</source> | 10505 | <source>Unmute this account</source> |
10436 | <target state="translated">Restablecer esta conta</target> | 10506 | <target state="translated">Restablecer esta conta</target> |
10437 | 10507 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">301</context></context-group> | |
10438 | 10508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">379</context></context-group> | |
10439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">301</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 10509 | </trans-unit> |
10440 | <trans-unit id="2843593344827160627" datatype="html"> | 10510 | <trans-unit id="2843593344827160627" datatype="html"> |
10441 | <source>Show back content from that user for you.</source> | 10511 | <source>Show back content from that user for you.</source> |
10442 | <target state="translated">Volver a mostrar para ti contido desta conta.</target> | 10512 | <target state="translated">Volver a mostrar para ti contido desta conta.</target> |
10443 | 10513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | |
10444 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit> | 10514 | </trans-unit> |
10445 | <trans-unit id="6198109035280957164" datatype="html"> | 10515 | <trans-unit id="6198109035280957164" datatype="html"> |
10446 | <source>Mute the instance</source> | 10516 | <source>Mute the instance</source> |
10447 | <target state="translated">Acalar a instancia</target> | 10517 | <target state="translated">Acalar a instancia</target> |
10448 | 10518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">307</context></context-group> | |
10449 | 10519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group> | |
10450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">307</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group></trans-unit> | 10520 | </trans-unit> |
10451 | <trans-unit id="4537735378779630558" datatype="html"> | 10521 | <trans-unit id="4537735378779630558" datatype="html"> |
10452 | <source>Hide any content from that instance for you.</source> | 10522 | <source>Hide any content from that instance for you.</source> |
10453 | <target state="translated">Agochar para ti calquera contido desta instancia.</target> | 10523 | <target state="translated">Agochar para ti calquera contido desta instancia.</target> |
10454 | 10524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
10455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group></trans-unit> | 10525 | </trans-unit> |
10456 | <trans-unit id="6247487021683085858" datatype="html"> | 10526 | <trans-unit id="6247487021683085858" datatype="html"> |
10457 | <source>Unmute the instance</source> | 10527 | <source>Unmute the instance</source> |
10458 | <target state="translated">Restablecer instancia</target> | 10528 | <target state="translated">Restablecer instancia</target> |
10459 | 10529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">313</context></context-group> | |
10460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">313</context></context-group></trans-unit> | 10530 | </trans-unit> |
10461 | <trans-unit id="4024846984475742259" datatype="html"> | 10531 | <trans-unit id="4024846984475742259" datatype="html"> |
10462 | <source>Show back content from that instance for you.</source> | 10532 | <source>Show back content from that instance for you.</source> |
10463 | <target state="translated">Volver a mostrarche contido desta instancia.</target> | 10533 | <target state="translated">Volver a mostrarche contido desta instancia.</target> |
10464 | 10534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> | |
10465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group></trans-unit> | 10535 | </trans-unit> |
10466 | <trans-unit id="3108200185023875257" datatype="html"> | 10536 | <trans-unit id="3108200185023875257" datatype="html"> |
10467 | <source>Remove comments from your videos</source> | 10537 | <source>Remove comments from your videos</source> |
10468 | <target state="translated">Eliminar comentarios dos teus vÃdeos</target> | 10538 | <target state="translated">Eliminar comentarios dos teus vÃdeos</target> |
10469 | 10539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">319</context></context-group> | |
10470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">319</context></context-group></trans-unit> | 10540 | </trans-unit> |
10471 | <trans-unit id="4810478487244286994" datatype="html"> | 10541 | <trans-unit id="4810478487244286994" datatype="html"> |
10472 | <source>Remove comments made by this account on your videos.</source> | 10542 | <source>Remove comments made by this account on your videos.</source> |
10473 | <target state="translated">Eliminar os comentarios feitos por esta conta nos teus vÃdeos.</target> | 10543 | <target state="translated">Eliminar os comentarios feitos por esta conta nos teus vÃdeos.</target> |
10474 | 10544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">320</context></context-group> | |
10475 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">320</context></context-group></trans-unit> | 10545 | </trans-unit> |
10476 | <trans-unit id="2077144178298031252" datatype="html"> | 10546 | <trans-unit id="2077144178298031252" datatype="html"> |
10477 | <source>Hide any content from that user from you, your instance and its users.</source> | 10547 | <source>Hide any content from that user from you, your instance and its users.</source> |
10478 | <target state="translated">Agochar para ti, a túa instancia e as súas usuarias, calquera contido desta usuaria.</target> | 10548 | <target state="translated">Agochar para ti, a túa instancia e as súas usuarias, calquera contido desta usuaria.</target> |
10479 | 10549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">374</context></context-group> | |
10480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">374</context></context-group></trans-unit> | 10550 | </trans-unit> |
10481 | <trans-unit id="7675070596643104983" datatype="html"> | 10551 | <trans-unit id="7675070596643104983" datatype="html"> |
10482 | <source>Show this user's content to the users of this instance again.</source> | 10552 | <source>Show this user's content to the users of this instance again.</source> |
10483 | <target state="translated">Volver a mostrar os contidos desta usuaria ás usuarias da túa instancia.</target> | 10553 | <target state="translated">Volver a mostrar os contidos desta usuaria ás usuarias da túa instancia.</target> |
10484 | 10554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10485 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 10555 | </trans-unit> |
10486 | <trans-unit id="525915681688649453" datatype="html"> | 10556 | <trans-unit id="525915681688649453" datatype="html"> |
10487 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10557 | <source>Hide any content from that instance from you, your instance and its users.</source> |
10488 | <target state="translated">Agochar para ti, a túa instancia e as túas usuarias, calquera contido desta instancia.</target> | 10558 | <target state="translated">Agochar para ti, a túa instancia e as túas usuarias, calquera contido desta instancia.</target> |
10489 | 10559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | |
10490 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 10560 | </trans-unit> |
10491 | <trans-unit id="5325628963747139770" datatype="html"> | 10561 | <trans-unit id="5325628963747139770" datatype="html"> |
10492 | <source>Unmute the instance by your instance</source> | 10562 | <source>Unmute the instance by your instance</source> |
10493 | <target state="translated">Restablecer esta instancia pola túa instancia</target> | 10563 | <target state="translated">Restablecer esta instancia pola túa instancia</target> |
10494 | 10564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">397</context></context-group> | |
10495 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">397</context></context-group></trans-unit> | 10565 | </trans-unit> |
10496 | <trans-unit id="758471033841077314" datatype="html"> | 10566 | <trans-unit id="758471033841077314" datatype="html"> |
10497 | <source>Show back content from that instance for you, your instance and its users.</source> | 10567 | <source>Show back content from that instance for you, your instance and its users.</source> |
10498 | <target state="translated">Volver a mostrar os contidos desta usuaria para ti, a túa instancia e as súas usuarias.</target> | 10568 | <target state="translated">Volver a mostrar os contidos desta usuaria para ti, a túa instancia e as súas usuarias.</target> |
10499 | 10569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | |
10500 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group></trans-unit> | 10570 | </trans-unit> |
10501 | <trans-unit id="3785095284194008197" datatype="html"> | 10571 | <trans-unit id="3785095284194008197" datatype="html"> |
10502 | <source>Remove comments from your instance</source> | 10572 | <source>Remove comments from your instance</source> |
10503 | <target state="translated">Eliminar comentarios da túa instancia</target> | 10573 | <target state="translated">Eliminar comentarios da túa instancia</target> |
10504 | 10574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">408</context></context-group> | |
10505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">408</context></context-group></trans-unit> | 10575 | </trans-unit> |
10506 | <trans-unit id="4809327075591089709" datatype="html"> | 10576 | <trans-unit id="4809327075591089709" datatype="html"> |
10507 | <source>Remove comments made by this account from your instance.</source> | 10577 | <source>Remove comments made by this account from your instance.</source> |
10508 | <target state="translated">Eliminar da túa instancia os comentarios feitos por esta conta.</target> | 10578 | <target state="translated">Eliminar da túa instancia os comentarios feitos por esta conta.</target> |
10509 | 10579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">409</context></context-group> | |
10510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">409</context></context-group></trans-unit> | 10580 | </trans-unit> |
10511 | <trans-unit id="6504240011224861621" datatype="html"> | 10581 | <trans-unit id="6504240011224861621" datatype="html"> |
10512 | <source>Instance moderation</source> | 10582 | <source>Instance moderation</source> |
10513 | <target state="translated">Moderación da instancia</target> | 10583 | <target state="translated">Moderación da instancia</target> |
10514 | 10584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">418</context></context-group> | |
10515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10585 | </trans-unit> |
10516 | <trans-unit id="8546847443058492245" datatype="html"> | 10586 | <trans-unit id="8546847443058492245" datatype="html"> |
10517 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> | 10587 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> |
10518 | <target state="translated">Bloqueados <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> vÃdeos</target> | 10588 | <target state="translated">Bloqueados <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> vÃdeos</target> |
@@ -10670,25 +10740,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10670 | <trans-unit id="3723085768598852106" datatype="html"> | 10740 | <trans-unit id="3723085768598852106" datatype="html"> |
10671 | <source>Video removed from <x id="PH"/> </source> | 10741 | <source>Video removed from <x id="PH"/> </source> |
10672 | <target state="translated">VÃdeo eliminado de <x id="PH"/> </target> | 10742 | <target state="translated">VÃdeo eliminado de <x id="PH"/> </target> |
10673 | 10743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">309</context></context-group> | |
10674 | 10744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">97</context></context-group> | |
10675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">309</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 10745 | </trans-unit> |
10676 | <trans-unit id="1056145626640340519" datatype="html"> | 10746 | <trans-unit id="1056145626640340519" datatype="html"> |
10677 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10747 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
10678 | <target state="translated">VÃdeo engadido a <x id="PH"/> con marca de tempo <x id="PH_1"/></target> | 10748 | <target state="translated">VÃdeo engadido a <x id="PH"/> con marca de tempo <x id="PH_1"/></target> |
10679 | 10749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group> | |
10680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 10750 | </trans-unit> |
10681 | <trans-unit id="7754186870520534716" datatype="html"> | 10751 | <trans-unit id="7754186870520534716" datatype="html"> |
10682 | <source>Video added in <x id="PH"/> </source> | 10752 | <source>Video added in <x id="PH"/> </source> |
10683 | <target state="translated">VÃdeo engadido a <x id="PH"/> </target> | 10753 | <target state="translated">VÃdeo engadido a <x id="PH"/> </target> |
10684 | 10754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10685 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 10755 | </trans-unit> |
10686 | <trans-unit id="985751964589921228" datatype="html"> | 10756 | <trans-unit id="985751964589921228" datatype="html"> |
10687 | <source>Timestamps updated</source> | 10757 | <source>Timestamps updated</source> |
10688 | <target state="translated">Marcas de tempo actualizadas</target> | 10758 | <target state="translated">Marcas de tempo actualizadas</target> |
10689 | 10759 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">277</context></context-group> | |
10690 | 10760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">116</context></context-group> | |
10691 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">277</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 10761 | </trans-unit> |
10692 | <trans-unit id="6421445850411984665" datatype="html"> | 10762 | <trans-unit id="6421445850411984665" datatype="html"> |
10693 | <source>Starts at</source> | 10763 | <source>Starts at</source> |
10694 | <target state="translated">Inicia en</target> | 10764 | <target state="translated">Inicia en</target> |
@@ -10799,77 +10869,77 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10799 | <trans-unit id="3099741642167775297" datatype="html"> | 10869 | <trans-unit id="3099741642167775297" datatype="html"> |
10800 | <source>Download</source> | 10870 | <source>Download</source> |
10801 | <target state="translated">Descargar</target> | 10871 | <target state="translated">Descargar</target> |
10802 | 10872 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group> | |
10803 | 10873 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group> | |
10804 | 10874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group> | |
10805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 10875 | </trans-unit> |
10806 | <trans-unit id="7672331870004528654" datatype="html"> | 10876 | <trans-unit id="7672331870004528654" datatype="html"> |
10807 | <source>Display live information</source> | 10877 | <source>Display live information</source> |
10808 | <target state="translated">Mostrar información do directo</target> | 10878 | <target state="translated">Mostrar información do directo</target> |
10809 | 10879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group> | |
10810 | 10880 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">330</context></context-group> | |
10811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">330</context></context-group></trans-unit> | 10881 | </trans-unit> |
10812 | <trans-unit id="4021752662928002901" datatype="html"> | 10882 | <trans-unit id="4021752662928002901" datatype="html"> |
10813 | <source>Update</source> | 10883 | <source>Update</source> |
10814 | <target state="translated">Actualizar</target> | 10884 | <target state="translated">Actualizar</target> |
10815 | 10885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group> | |
10816 | 10886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group> | |
10817 | 10887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group> | |
10818 | 10888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | |
10819 | 10889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | |
10820 | 10890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> | |
10821 | 10891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group> | |
10822 | 10892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group> | |
10823 | 10893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group> | |
10824 | 10894 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">336</context></context-group> | |
10825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">336</context></context-group></trans-unit> | 10895 | </trans-unit> |
10826 | <trans-unit id="420763834450076269" datatype="html"> | 10896 | <trans-unit id="420763834450076269" datatype="html"> |
10827 | <source>Block</source> | 10897 | <source>Block</source> |
10828 | <target state="translated">Bloquear</target> | 10898 | <target state="translated">Bloquear</target> |
10829 | 10899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">80</context></context-group> | |
10830 | 10900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">50</context></context-group> | |
10831 | 10901 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">348</context></context-group> | |
10832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 10902 | </trans-unit> |
10833 | <trans-unit id="6521421218398377925" datatype="html"> | 10903 | <trans-unit id="6521421218398377925" datatype="html"> |
10834 | <source>Run HLS transcoding</source> | 10904 | <source>Run HLS transcoding</source> |
10835 | <target state="translated">Executar transcodificación HLS</target> | 10905 | <target state="translated">Executar transcodificación HLS</target> |
10836 | 10906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10837 | 10907 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 10908 | </trans-unit> |
10839 | <trans-unit id="4956271014213477815" datatype="html"> | 10909 | <trans-unit id="4956271014213477815" datatype="html"> |
10840 | <source>Run WebTorrent transcoding</source> | 10910 | <source>Run WebTorrent transcoding</source> |
10841 | <target state="translated">Executar transcodificación WebTorrent</target> | 10911 | <target state="translated">Executar transcodificación WebTorrent</target> |
10842 | 10912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
10843 | 10913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group> | |
10844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 10914 | </trans-unit> |
10845 | <trans-unit id="5972374600810542430" datatype="html"> | 10915 | <trans-unit id="5972374600810542430" datatype="html"> |
10846 | <source>Delete HLS files</source> | 10916 | <source>Delete HLS files</source> |
10847 | <target state="translated">Eliminar ficheiros HLS</target> | 10917 | <target state="translated">Eliminar ficheiros HLS</target> |
10848 | 10918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group> | |
10849 | 10919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | |
10850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 10920 | </trans-unit> |
10851 | <trans-unit id="3844238590532933757" datatype="html"> | 10921 | <trans-unit id="3844238590532933757" datatype="html"> |
10852 | <source>Delete WebTorrent files</source> | 10922 | <source>Delete WebTorrent files</source> |
10853 | <target state="translated">Eliminar ficheiros WebTorrent</target> | 10923 | <target state="translated">Eliminar ficheiros WebTorrent</target> |
10854 | 10924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group> | |
10855 | 10925 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | |
10856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group></trans-unit> | 10926 | </trans-unit> |
10857 | <trans-unit id="1950057220179636309" datatype="html"> | 10927 | <trans-unit id="1950057220179636309" datatype="html"> |
10858 | <source>Save to playlist</source> | 10928 | <source>Save to playlist</source> |
10859 | <target state="translated">Gardar en lista</target> | 10929 | <target state="translated">Gardar en lista</target> |
10860 | 10930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">58</context></context-group> | |
10861 | 10931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> | |
10862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> | 10932 | </trans-unit> |
10863 | <trans-unit id="8272123190776748811" datatype="html"> | 10933 | <trans-unit id="8272123190776748811" datatype="html"> |
10864 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 10934 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
10865 | <target state="translated">Tes que estar <a href="/login">conectada</a> para valorar este vÃdeo.</target> | 10935 | <target state="translated">Tes que estar <a href="/login">conectada</a> para valorar este vÃdeo.</target> |
10866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> | 10936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> |
10867 | </trans-unit> | 10937 | </trans-unit> |
10868 | <trans-unit id="4503408361537553733" datatype="html"> | 10938 | <trans-unit id="4503408361537553733" datatype="html"> |
10869 | <source>Mirror</source> | 10939 | <source>Mirror</source> |
10870 | <target state="translated">Replicar</target> | 10940 | <target state="translated">Replicar</target> |
10871 | 10941 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">360</context></context-group> | |
10872 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">360</context></context-group></trans-unit> | 10942 | </trans-unit> |
10873 | <trans-unit id="2631340539474479416" datatype="html"> | 10943 | <trans-unit id="2631340539474479416" datatype="html"> |
10874 | <source>Subtitles</source> | 10944 | <source>Subtitles</source> |
10875 | <target state="translated">SubtÃtulos</target> | 10945 | <target state="translated">SubtÃtulos</target> |
@@ -10904,9 +10974,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10904 | <trans-unit id="4903651219400691248" datatype="html"> | 10974 | <trans-unit id="4903651219400691248" datatype="html"> |
10905 | <source>Mute account</source> | 10975 | <source>Mute account</source> |
10906 | <target state="translated">Acalar conta</target> | 10976 | <target state="translated">Acalar conta</target> |
10907 | 10977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group> | |
10908 | 10978 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">406</context></context-group> | |
10909 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">406</context></context-group></trans-unit> | 10979 | </trans-unit> |
10910 | <trans-unit id="4021487547497211597" datatype="html"> | 10980 | <trans-unit id="4021487547497211597" datatype="html"> |
10911 | <source>Open video actions</source> | 10981 | <source>Open video actions</source> |
10912 | <target state="translated">Abrir accións para o vÃdeo</target> | 10982 | <target state="translated">Abrir accións para o vÃdeo</target> |
@@ -10922,13 +10992,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10922 | <trans-unit id="3076101305843397295" datatype="html"> | 10992 | <trans-unit id="3076101305843397295" datatype="html"> |
10923 | <source>Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</source> | 10993 | <source>Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</source> |
10924 | <target state="translated">Tes a certeza de querer retirar o bloqueo a <x id="PH" equiv-text="this.video.name"/>? Estará dispoñible de volta na lista de vÃdeos.</target> | 10994 | <target state="translated">Tes a certeza de querer retirar o bloqueo a <x id="PH" equiv-text="this.video.name"/>? Estará dispoñible de volta na lista de vÃdeos.</target> |
10925 | 10995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> | |
10926 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 10996 | </trans-unit> |
10927 | <trans-unit id="8359747231611535508" datatype="html"> | 10997 | <trans-unit id="8359747231611535508" datatype="html"> |
10928 | <source>Unblock <x id="PH" equiv-text="this.video.name"/></source> | 10998 | <source>Unblock <x id="PH" equiv-text="this.video.name"/></source> |
10929 | <target state="translated">Desbloquear <x id="PH" equiv-text="this.video.name"/></target> | 10999 | <target state="translated">Desbloquear <x id="PH" equiv-text="this.video.name"/></target> |
10930 | 11000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> | |
10931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 11001 | </trans-unit> |
10932 | <trans-unit id="3719503424625455635" datatype="html"> | 11002 | <trans-unit id="3719503424625455635" datatype="html"> |
10933 | <source>Mute server account</source> | 11003 | <source>Mute server account</source> |
10934 | <target state="translated">Acalar conta do servidor</target> | 11004 | <target state="translated">Acalar conta do servidor</target> |
@@ -10937,10 +11007,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10937 | <trans-unit id="7008439939460403347" datatype="html"> | 11007 | <trans-unit id="7008439939460403347" datatype="html"> |
10938 | <source>Report</source> | 11008 | <source>Report</source> |
10939 | <target state="translated">Denunciar</target> | 11009 | <target state="translated">Denunciar</target> |
10940 | 11010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group> | |
10941 | 11011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group> | |
10942 | 11012 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">372</context></context-group> | |
10943 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">372</context></context-group></trans-unit> | 11013 | </trans-unit> |
10944 | <trans-unit id="829951422090160526" datatype="html"> | 11014 | <trans-unit id="829951422090160526" datatype="html"> |
10945 | <source>Reported part</source> | 11015 | <source>Reported part</source> |
10946 | <target state="translated">Parte da denuncia</target> | 11016 | <target state="translated">Parte da denuncia</target> |
@@ -11021,8 +11091,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11021 | <source>To import</source> | 11091 | <source>To import</source> |
11022 | <target state="translated">Importar</target> | 11092 | <target state="translated">Importar</target> |
11023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group> | 11093 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group> |
11024 | </trans-unit><trans-unit id="6963802198225789806" datatype="html"> | 11094 | </trans-unit> |
11025 | <source>To edit</source><target state="new">To edit</target> | 11095 | <trans-unit id="6963802198225789806" datatype="html"> |
11096 | <source>To edit</source> | ||
11097 | <target state="new">To edit</target> | ||
11026 | <context-group purpose="location"> | 11098 | <context-group purpose="location"> |
11027 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> | 11099 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> |
11028 | <context context-type="linenumber">199</context> | 11100 | <context context-type="linenumber">199</context> |
@@ -11039,21 +11111,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11039 | <trans-unit id="187187500641108332" datatype="html"> | 11111 | <trans-unit id="187187500641108332" datatype="html"> |
11040 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> | 11112 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> |
11041 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> | 11113 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> |
11042 | 11114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group> | |
11043 | 11115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group> | |
11044 | 11116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group> | |
11045 | 11117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">73</context></context-group> | |
11046 | 11118 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group> | |
11047 | 11119 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group> | |
11048 | 11120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group> | |
11049 | 11121 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group> | |
11050 | 11122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
11051 | 11123 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group> | |
11052 | 11124 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group> | |
11053 | 11125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group> | |
11054 | 11126 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group> | |
11055 | 11127 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group> | |
11056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 11128 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group> |
11129 | </trans-unit> | ||
11057 | <trans-unit id="1795705931707209785" datatype="html"> | 11130 | <trans-unit id="1795705931707209785" datatype="html"> |
11058 | <source>Add to watch later</source> | 11131 | <source>Add to watch later</source> |
11059 | <target state="translated">Engadir a Ver máis tarde</target> | 11132 | <target state="translated">Engadir a Ver máis tarde</target> |
@@ -11133,9 +11206,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11133 | <trans-unit id="8306050839443016954" datatype="html"> | 11206 | <trans-unit id="8306050839443016954" datatype="html"> |
11134 | <source>Video updated.</source> | 11207 | <source>Video updated.</source> |
11135 | <target state="translated">VÃdeo actualizado.</target> | 11208 | <target state="translated">VÃdeo actualizado.</target> |
11136 | 11209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context><context context-type="linenumber">90</context></context-group> | |
11137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit><trans-unit id="5609201297201028750" datatype="html"> | 11210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group> |
11138 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source><target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | 11211 | </trans-unit> |
11212 | <trans-unit id="5609201297201028750" datatype="html"> | ||
11213 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source> | ||
11214 | <target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | ||
11139 | <context-group purpose="location"> | 11215 | <context-group purpose="location"> |
11140 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11216 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11141 | <context context-type="linenumber">104</context> | 11217 | <context context-type="linenumber">104</context> |
@@ -11144,44 +11220,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11144 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11220 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11145 | <context context-type="linenumber">108</context> | 11221 | <context context-type="linenumber">108</context> |
11146 | </context-group> | 11222 | </context-group> |
11147 | </trans-unit><trans-unit id="2196899015955367634" datatype="html"> | 11223 | </trans-unit> |
11148 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | 11224 | <trans-unit id="2196899015955367634" datatype="html"> |
11225 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source> | ||
11226 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | ||
11149 | <context-group purpose="location"> | 11227 | <context-group purpose="location"> |
11150 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11228 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11151 | <context context-type="linenumber">120</context> | 11229 | <context context-type="linenumber">120</context> |
11152 | </context-group> | 11230 | </context-group> |
11153 | </trans-unit><trans-unit id="4952096817126306891" datatype="html"> | 11231 | </trans-unit> |
11154 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | 11232 | <trans-unit id="4952096817126306891" datatype="html"> |
11233 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source> | ||
11234 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | ||
11155 | <context-group purpose="location"> | 11235 | <context-group purpose="location"> |
11156 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11236 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11157 | <context context-type="linenumber">124</context> | 11237 | <context context-type="linenumber">124</context> |
11158 | </context-group> | 11238 | </context-group> |
11159 | </trans-unit><trans-unit id="665518679871959619" datatype="html"> | 11239 | </trans-unit> |
11160 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | 11240 | <trans-unit id="665518679871959619" datatype="html"> |
11241 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source> | ||
11242 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | ||
11161 | <context-group purpose="location"> | 11243 | <context-group purpose="location"> |
11162 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11244 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11163 | <context context-type="linenumber">128</context> | 11245 | <context context-type="linenumber">128</context> |
11164 | </context-group> | 11246 | </context-group> |
11165 | </trans-unit><trans-unit id="2677581013897190613" datatype="html"> | 11247 | </trans-unit> |
11166 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source><target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | 11248 | <trans-unit id="2677581013897190613" datatype="html"> |
11249 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source> | ||
11250 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | ||
11167 | <context-group purpose="location"> | 11251 | <context-group purpose="location"> |
11168 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11252 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11169 | <context context-type="linenumber">135</context> | 11253 | <context context-type="linenumber">135</context> |
11170 | </context-group> | 11254 | </context-group> |
11171 | </trans-unit><trans-unit id="2299077646120636288" datatype="html"> | 11255 | </trans-unit> |
11172 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source><target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | 11256 | <trans-unit id="2299077646120636288" datatype="html"> |
11257 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source> | ||
11258 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | ||
11173 | <context-group purpose="location"> | 11259 | <context-group purpose="location"> |
11174 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11260 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11175 | <context context-type="linenumber">139</context> | 11261 | <context context-type="linenumber">139</context> |
11176 | </context-group> | 11262 | </context-group> |
11177 | </trans-unit><trans-unit id="7209039243783736285" datatype="html"> | 11263 | </trans-unit> |
11178 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source><target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | 11264 | <trans-unit id="7209039243783736285" datatype="html"> |
11265 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source> | ||
11266 | <target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | ||
11179 | <context-group purpose="location"> | 11267 | <context-group purpose="location"> |
11180 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11268 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11181 | <context context-type="linenumber">143</context> | 11269 | <context context-type="linenumber">143</context> |
11182 | </context-group> | 11270 | </context-group> |
11183 | </trans-unit><trans-unit id="9127817756370915850" datatype="html"> | 11271 | </trans-unit> |
11184 | <source>Edit video</source><target state="new">Edit video</target> | 11272 | <trans-unit id="9127817756370915850" datatype="html"> |
11273 | <source>Edit video</source> | ||
11274 | <target state="new">Edit video</target> | ||
11185 | <context-group purpose="location"> | 11275 | <context-group purpose="location"> |
11186 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> | 11276 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> |
11187 | <context context-type="linenumber">15</context> | 11277 | <context context-type="linenumber">15</context> |
@@ -11195,23 +11285,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11195 | <trans-unit id="6775540171466219199" datatype="html"> | 11285 | <trans-unit id="6775540171466219199" datatype="html"> |
11196 | <source>Stop autoplaying next video</source> | 11286 | <source>Stop autoplaying next video</source> |
11197 | <target state="translated">Non reproducir automáticamente o seguinte vÃdeo</target> | 11287 | <target state="translated">Non reproducir automáticamente o seguinte vÃdeo</target> |
11198 | 11288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group> | |
11199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 11289 | </trans-unit> |
11200 | <trans-unit id="5149234672404299151" datatype="html"> | 11290 | <trans-unit id="5149234672404299151" datatype="html"> |
11201 | <source>Autoplay next video</source> | 11291 | <source>Autoplay next video</source> |
11202 | <target state="translated">Reprodución automática do seg. vÃdeo</target> | 11292 | <target state="translated">Reprodución automática do seg. vÃdeo</target> |
11203 | 11293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group> | |
11204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> | 11294 | </trans-unit> |
11205 | <trans-unit id="5870421136141540382" datatype="html"> | 11295 | <trans-unit id="5870421136141540382" datatype="html"> |
11206 | <source>Stop looping playlist videos</source> | 11296 | <source>Stop looping playlist videos</source> |
11207 | <target state="translated">Deter a reprodución en bucle</target> | 11297 | <target state="translated">Deter a reprodución en bucle</target> |
11208 | 11298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">240</context></context-group> | |
11209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">240</context></context-group></trans-unit> | 11299 | </trans-unit> |
11210 | <trans-unit id="1599585307037758139" datatype="html"> | 11300 | <trans-unit id="1599585307037758139" datatype="html"> |
11211 | <source>Loop playlist videos</source> | 11301 | <source>Loop playlist videos</source> |
11212 | <target state="translated">Reproduce en bucle a lista</target> | 11302 | <target state="translated">Reproduce en bucle a lista</target> |
11213 | 11303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">241</context></context-group> | |
11214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">241</context></context-group></trans-unit> | 11304 | </trans-unit> |
11215 | <trans-unit id="3704292036525161260" datatype="html"> | 11305 | <trans-unit id="3704292036525161260" datatype="html"> |
11216 | <source>Placeholder image</source> | 11306 | <source>Placeholder image</source> |
11217 | <target state="translated">Imaxe como marcador</target> | 11307 | <target state="translated">Imaxe como marcador</target> |
@@ -11221,8 +11311,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11221 | </context-group> | 11311 | </context-group> |
11222 | </trans-unit> | 11312 | </trans-unit> |
11223 | <trans-unit id="961774488937452220" datatype="html"> | 11313 | <trans-unit id="961774488937452220" datatype="html"> |
11224 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 11314 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
11225 | <target state="translated">Este vÃdeo non está dispoñible na túa instancia. Queres ser redirixida á instancia orixinal: <a href="<x id="PH"/>"><x id="PH_1"/>/a>?</target> | 11315 | <target state="translated">Este vÃdeo non está dispoñible na túa instancia. Queres ser redirixida á instancia orixinal: <a href="<x id="PH"/>"><x id="PH_1"/>/a>?</target> |
11226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> | 11316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> |
11227 | </trans-unit> | 11317 | </trans-unit> |
11228 | <trans-unit id="5761611056224181752" datatype="html"> | 11318 | <trans-unit id="5761611056224181752" datatype="html"> |
@@ -11248,27 +11338,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11248 | <trans-unit id="2159130950882492111" datatype="html"> | 11338 | <trans-unit id="2159130950882492111" datatype="html"> |
11249 | <source>Cancel</source> | 11339 | <source>Cancel</source> |
11250 | <target state="translated">Cancelar</target> | 11340 | <target state="translated">Cancelar</target> |
11251 | 11341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | |
11252 | 11342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group> | |
11253 | 11343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group> | |
11254 | 11344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | |
11255 | 11345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group> | |
11256 | 11346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | |
11257 | 11347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group> | |
11258 | 11348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
11259 | 11349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group> | |
11260 | 11350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group> | |
11261 | 11351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group> | |
11262 | 11352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group> | |
11263 | 11353 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
11264 | 11354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
11265 | 11355 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
11266 | 11356 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
11267 | 11357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
11268 | 11358 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group> | |
11269 | 11359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">34</context></context-group> | |
11270 | 11360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group> | |
11271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 11361 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group> |
11362 | </trans-unit> | ||
11272 | <trans-unit id="3354816756665089864" datatype="html"> | 11363 | <trans-unit id="3354816756665089864" datatype="html"> |
11273 | <source>Autoplay is suspended</source> | 11364 | <source>Autoplay is suspended</source> |
11274 | <target state="translated">Reprodución automática suspendida</target> | 11365 | <target state="translated">Reprodución automática suspendida</target> |
diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 2936c91cd..3bea60e4f 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf | |||
@@ -1,29 +1,37 @@ | |||
1 | <?xml version='1.0' encoding='UTF-8'?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!--XLIFF document generated by Zanata. Visit http://zanata.org for more infomation.--> | 2 | <!--XLIFF document generated by Zanata. Visit http://zanata.org for more infomation.--><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.2.xsd" version="1.2"> |
3 | <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.2.xsd" version="1.2"> | ||
4 | <file source-language="en-US" datatype="plaintext" original="" target-language="ko-KR"> | 3 | <file source-language="en-US" datatype="plaintext" original="" target-language="ko-KR"> |
5 | <body> | 4 | <body> |
6 | <trans-unit id="ngb.alert.close" datatype="html"> | 5 | <trans-unit id="ngb.alert.close" datatype="html"> |
7 | <source>Close</source><target state="new">Close</target> | 6 | <source>Close</source> |
8 | 7 | <target state="translated">닫기</target> | |
9 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/alert/alert.ts</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 8 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/alert/alert.ts</context><context context-type="linenumber">79</context></context-group> |
10 | <source> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source><target state="new"> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target> | 9 | </trans-unit> |
10 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | ||
11 | <source>Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source> | ||
12 | <target state="translated">슬ë¼ì´ë“œ <x id="INTERPOLATION_1" equiv-text=".value; }"/>ê°œ 중 <x id="INTERPOLATION" equiv-text="get wrap("/> 번째 </target> | ||
11 | <context-group purpose="location"> | 13 | <context-group purpose="location"> |
12 | <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> | 14 | <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> |
13 | <context context-type="linenumber">147,157</context> | 15 | <context context-type="linenumber">147,157</context> |
14 | </context-group> | 16 | </context-group> |
15 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 17 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
16 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | 18 | </trans-unit> |
17 | <source>Previous</source><target state="new">Previous</target> | 19 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
20 | <source>Previous</source> | ||
21 | <target state="translated">ì´ì „</target> | ||
18 | <context-group purpose="location"> | 22 | <context-group purpose="location"> |
19 | <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> | 23 | <context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context> |
20 | <context context-type="linenumber">174</context> | 24 | <context context-type="linenumber">174</context> |
21 | </context-group> | 25 | </context-group> |
22 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | 26 | </trans-unit> |
23 | <source>Next</source><target state="new">Next</target> | 27 | <trans-unit id="ngb.carousel.next" datatype="html"> |
24 | 28 | <source>Next</source> | |
25 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context><context context-type="linenumber">197</context></context-group></trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | 29 | <target state="translated">다ìŒ</target> |
26 | <source>Select month</source><target state="new">Select month</target> | 30 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context><context context-type="linenumber">197</context></context-group> |
31 | </trans-unit> | ||
32 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
33 | <source>Select month</source> | ||
34 | <target state="translated">달 ì„ íƒ</target> | ||
27 | <context-group purpose="location"> | 35 | <context-group purpose="location"> |
28 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> | 36 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> |
29 | <context context-type="linenumber">74</context> | 37 | <context context-type="linenumber">74</context> |
@@ -32,8 +40,10 @@ | |||
32 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> | 40 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> |
33 | <context context-type="linenumber">74</context> | 41 | <context context-type="linenumber">74</context> |
34 | </context-group> | 42 | </context-group> |
35 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | 43 | </trans-unit> |
36 | <source>Select year</source><target state="new">Select year</target> | 44 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
45 | <source>Select year</source> | ||
46 | <target state="translated">ì—°ë„ ì„ íƒ</target> | ||
37 | <context-group purpose="location"> | 47 | <context-group purpose="location"> |
38 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> | 48 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> |
39 | <context context-type="linenumber">74</context> | 49 | <context context-type="linenumber">74</context> |
@@ -42,8 +52,10 @@ | |||
42 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> | 52 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation-select.ts</context> |
43 | <context context-type="linenumber">74</context> | 53 | <context context-type="linenumber">74</context> |
44 | </context-group> | 54 | </context-group> |
45 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 55 | </trans-unit> |
46 | <source>Previous month</source><target state="new">Previous month</target> | 56 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
57 | <source>Previous month</source> | ||
58 | <target state="translated">ì´ì „달</target> | ||
47 | <context-group purpose="location"> | 59 | <context-group purpose="location"> |
48 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> | 60 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> |
49 | <context context-type="linenumber">69</context> | 61 | <context context-type="linenumber">69</context> |
@@ -52,8 +64,10 @@ | |||
52 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> | 64 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> |
53 | <context context-type="linenumber">69</context> | 65 | <context context-type="linenumber">69</context> |
54 | </context-group> | 66 | </context-group> |
55 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | 67 | </trans-unit> |
56 | <source>Next month</source><target state="new">Next month</target> | 68 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
69 | <source>Next month</source> | ||
70 | <target state="translated">다ìŒë‹¬</target> | ||
57 | <context-group purpose="location"> | 71 | <context-group purpose="location"> |
58 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> | 72 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> |
59 | <context context-type="linenumber">69</context> | 73 | <context context-type="linenumber">69</context> |
@@ -62,104 +76,149 @@ | |||
62 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> | 76 | <context context-type="sourcefile">node_modules/src/datepicker/datepicker-navigation.ts</context> |
63 | <context context-type="linenumber">69</context> | 77 | <context context-type="linenumber">69</context> |
64 | </context-group> | 78 | </context-group> |
65 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | 79 | </trans-unit> |
66 | <source>««</source><target state="new">««</target> | 80 | <trans-unit id="ngb.pagination.first" datatype="html"> |
67 | 81 | <source>««</source> | |
68 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | 82 | <target state="translated">««</target> |
69 | <source>«</source><target state="new">«</target> | 83 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group> |
70 | 84 | </trans-unit> | |
71 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group></trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | 85 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
72 | <source>»</source><target state="new">»</target> | 86 | <source>«</source> |
73 | 87 | <target state="translated">«</target> | |
74 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group></trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | 88 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group> |
75 | <source>»»</source><target state="new">»»</target> | 89 | </trans-unit> |
76 | 90 | <trans-unit id="ngb.pagination.next" datatype="html"> | |
77 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group></trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | 91 | <source>»</source> |
78 | <source>First</source><target state="new">First</target> | 92 | <target state="translated">»</target> |
79 | 93 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group> | |
80 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 94 | </trans-unit> |
81 | <source>Previous</source><target state="new">Previous</target> | 95 | <trans-unit id="ngb.pagination.last" datatype="html"> |
82 | 96 | <source>»»</source> | |
83 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group></trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | 97 | <target state="translated">»»</target> |
84 | <source>Next</source><target state="new">Next</target> | 98 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group> |
85 | 99 | </trans-unit> | |
86 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group></trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | 100 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
87 | <source>Last</source><target state="new">Last</target> | 101 | <source>First</source> |
88 | 102 | <target state="translated">처ìŒ</target> | |
89 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group></trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | 103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group> |
90 | <source><x id="INTERPOLATION" equiv-text="nd so on. | 104 | </trans-unit> |
91 | *"/></source><target state="new"><x id="INTERPOLATION" equiv-text="nd so on. | 105 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
92 | *"/></target> | 106 | <source>Previous</source> |
93 | 107 | <target state="translated">ì´ì „</target> | |
94 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | 108 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group> |
95 | <source>HH</source><target state="new">HH</target> | 109 | </trans-unit> |
96 | 110 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | |
97 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | 111 | <source>Next</source> |
98 | <source>Hours</source><target state="new">Hours</target> | 112 | <target state="translated">다ìŒ</target> |
99 | 113 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group> | |
100 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">155</context></context-group></trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | 114 | </trans-unit> |
101 | <source>MM</source><target state="new">MM</target> | 115 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
102 | 116 | <source>Last</source> | |
103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">173</context></context-group></trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | 117 | <target state="translated">마지막</target> |
104 | <source>Minutes</source><target state="new">Minutes</target> | 118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group> |
105 | 119 | </trans-unit> | |
106 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">188</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 120 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
107 | <source>Increment hours</source><target state="new">Increment hours</target> | 121 | <source><x id="INTERPOLATION" equiv-text="nd so on. *"/></source> |
108 | 122 | <target state="translated"><x id="INTERPOLATION" equiv-text="nd so on. *"/></target> | |
109 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">201</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 123 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context><context context-type="linenumber">60</context></context-group> |
110 | <source>Decrement hours</source><target state="new">Decrement hours</target> | 124 | </trans-unit> |
111 | 125 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | |
112 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">223</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 126 | <source>HH</source> |
113 | <source>Increment minutes</source><target state="new">Increment minutes</target> | 127 | <target state="translated">HH</target> |
114 | 128 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">133</context></context-group> | |
115 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">243</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 129 | </trans-unit> |
116 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | 130 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
117 | 131 | <source>Hours</source> | |
118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">264</context></context-group></trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | 132 | <target state="translated">시간</target> |
119 | <source>SS</source><target state="new">SS</target> | 133 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">155</context></context-group> |
120 | 134 | </trans-unit> | |
121 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">283</context></context-group></trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | 135 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
122 | <source>Seconds</source><target state="new">Seconds</target> | 136 | <source>MM</source> |
123 | 137 | <target state="translated">MM</target> | |
124 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">295</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 138 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">173</context></context-group> |
125 | <source>Increment seconds</source><target state="new">Increment seconds</target> | 139 | </trans-unit> |
140 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
141 | <source>Minutes</source> | ||
142 | <target state="translated">분</target> | ||
143 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">188</context></context-group> | ||
144 | </trans-unit> | ||
145 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
146 | <source>Increment hours</source> | ||
147 | <target state="translated">시간 늘리기</target> | ||
148 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">201</context></context-group> | ||
149 | </trans-unit> | ||
150 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
151 | <source>Decrement hours</source> | ||
152 | <target state="translated">시간 줄ì´ê¸°</target> | ||
153 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">223</context></context-group> | ||
154 | </trans-unit> | ||
155 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
156 | <source>Increment minutes</source> | ||
157 | <target state="translated">분 늘리기</target> | ||
158 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">243</context></context-group> | ||
159 | </trans-unit> | ||
160 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
161 | <source>Decrement minutes</source> | ||
162 | <target state="translated">분 줄ì´ê¸°</target> | ||
163 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">264</context></context-group> | ||
164 | </trans-unit> | ||
165 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
166 | <source>SS</source> | ||
167 | <target state="translated">SS</target> | ||
168 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">283</context></context-group> | ||
169 | </trans-unit> | ||
170 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
171 | <source>Seconds</source> | ||
172 | <target state="translated">ì´ˆ</target> | ||
173 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">295</context></context-group> | ||
174 | </trans-unit> | ||
175 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
176 | <source>Increment seconds</source> | ||
177 | <target state="translated">초 늘리기</target> | ||
126 | <context-group purpose="location"> | 178 | <context-group purpose="location"> |
127 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> | 179 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> |
128 | <context context-type="linenumber">295</context> | 180 | <context context-type="linenumber">295</context> |
129 | </context-group> | 181 | </context-group> |
130 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 182 | </trans-unit> |
131 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | 183 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
184 | <source>Decrement seconds</source> | ||
185 | <target state="translated">ì´ˆ 줄ì´ê¸°</target> | ||
132 | <context-group purpose="location"> | 186 | <context-group purpose="location"> |
133 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> | 187 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> |
134 | <context context-type="linenumber">295</context> | 188 | <context context-type="linenumber">295</context> |
135 | </context-group> | 189 | </context-group> |
136 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | 190 | </trans-unit> |
137 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | 191 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
192 | <source><x id="INTERPOLATION"/></source> | ||
193 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
138 | <context-group purpose="location"> | 194 | <context-group purpose="location"> |
139 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> | 195 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> |
140 | <context context-type="linenumber">295</context> | 196 | <context context-type="linenumber">295</context> |
141 | </context-group> | 197 | </context-group> |
142 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | 198 | </trans-unit> |
143 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | 199 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
200 | <source><x id="INTERPOLATION"/></source> | ||
201 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
144 | <context-group purpose="location"> | 202 | <context-group purpose="location"> |
145 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> | 203 | <context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context> |
146 | <context context-type="linenumber">295</context> | 204 | <context context-type="linenumber">295</context> |
147 | </context-group> | 205 | </context-group> |
148 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | 206 | </trans-unit> |
149 | <source>Close</source><target state="new">Close</target> | 207 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
150 | 208 | <source>Close</source> | |
151 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="219462505467671767" datatype="html"> | 209 | <target state="translated">닫기</target> |
210 | <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group> | ||
211 | </trans-unit> | ||
212 | <trans-unit id="219462505467671767" datatype="html"> | ||
152 | <source>Close the left menu</source> | 213 | <source>Close the left menu</source> |
153 | <target state="translated">왼쪽 메뉴 닫기</target> | 214 | <target state="translated">왼쪽 메뉴 닫기</target> |
154 | 215 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">137</context></context-group> | |
155 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 216 | </trans-unit> |
156 | <trans-unit id="3455550526898419928" datatype="html"> | 217 | <trans-unit id="3455550526898419928" datatype="html"> |
157 | <source>Open the left menu</source> | 218 | <source>Open the left menu</source> |
158 | <target state="translated">왼쪽 메뉴 열기</target> | 219 | <target state="translated">왼쪽 메뉴 열기</target> |
159 | 220 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">139</context></context-group> | |
160 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 221 | </trans-unit> |
161 | |||
162 | |||
163 | <trans-unit id="9075761896562520962"> | 222 | <trans-unit id="9075761896562520962"> |
164 | <source>You don't have notifications.</source> | 223 | <source>You don't have notifications.</source> |
165 | <target>ì•Œë¦¼ì´ ì—†ìŠµë‹ˆë‹¤.</target> | 224 | <target>ì•Œë¦¼ì´ ì—†ìŠµë‹ˆë‹¤.</target> |
@@ -169,212 +228,127 @@ | |||
169 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 228 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
170 | <target state="translated"> | 229 | <target state="translated"> |
171 | <x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> ë‹˜ì´ ìƒˆ ë™ì˜ìƒì„ 게시했습니다: | 230 | <x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> ë‹˜ì´ ìƒˆ ë™ì˜ìƒì„ 게시했습니다: |
172 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 231 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
173 | <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> | 232 | <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> |
174 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 233 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
175 | </target> | 234 | </target> |
176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group> | 235 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group> |
177 | </trans-unit> | 236 | </trans-unit> |
178 | <trans-unit id="3861380964267994829" datatype="html"> | 237 | <trans-unit id="3861380964267994829" datatype="html"> |
179 | <source>The notification concerns a video now unavailable</source> | 238 | <source>The notification concerns a video now unavailable</source> |
180 | <target state="translated">ì´ ì•Œë¦¼ì€ ì´ì œ ë™ì˜ìƒì„ ì‚¬ìš©í• ìˆ˜ 없다는 내용입니다</target> | 239 | <target state="translated">ì´ ì•Œë¦¼ì€ ì´ì œ ë™ì˜ìƒì„ ì‚¬ìš©í• ìˆ˜ 없다는 내용입니다</target> |
181 | 240 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">23</context></context-group> | |
182 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 241 | </trans-unit> |
183 | <trans-unit id="5067946665521007036" datatype="html"> | 242 | <trans-unit id="5067946665521007036" datatype="html"> |
184 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> | 243 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> |
185 | <target state="translated">ë‹¹ì‹ ì˜ ë¹„ë””ì˜¤ <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ê°€ ë¸”ëŸ í•´ì œ ë˜ì—ˆìŠµë‹ˆë‹¤ </target> | 244 | <target state="translated">ë‹¹ì‹ ì˜ ë¹„ë””ì˜¤ <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ê°€ ë¸”ëŸ í•´ì œ ë˜ì—ˆìŠµë‹ˆë‹¤ </target> |
186 | 245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">32</context></context-group> | |
187 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 246 | </trans-unit> |
188 | <trans-unit id="7127745751169269971" datatype="html"> | 247 | <trans-unit id="7127745751169269971" datatype="html"> |
189 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> | 248 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> |
190 | <target state="translated">ë‹¹ì‹ ì˜ ë¹„ë””ì˜¤ <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ê°€ ë¸”ëŸ ë˜ì—ˆìŠµë‹ˆë‹¤ </target> | 249 | <target state="translated">ë‹¹ì‹ ì˜ ë¹„ë””ì˜¤ <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ê°€ ë¸”ëŸ ë˜ì—ˆìŠµë‹ˆë‹¤ </target> |
191 | 250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">40</context></context-group> | |
192 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 251 | </trans-unit> |
193 | <trans-unit id="506794214492992969" datatype="html"> | 252 | <trans-unit id="506794214492992969" datatype="html"> |
194 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 253 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
195 | <target state="new"> | 254 | <target state="translated"><x id="START_LINK"/>새로운 ì˜ìƒ 오남용 ì‹ ê³ <x id="CLOSE_LINK"/>ê°€ ì˜ìƒ <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ì—ì„œ 만들어졌습니다.</target> |
196 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new video abuse | ||
197 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | ||
198 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
199 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.video.name }}"/> | ||
200 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
201 | </target> | ||
202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group> | 255 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group> |
203 | </trans-unit> | 256 | </trans-unit> |
204 | <trans-unit id="3487882822536102372" datatype="html"> | 257 | <trans-unit id="3487882822536102372" datatype="html"> |
205 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 258 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
206 | <target state="new"> | 259 | <target state="translated"><x id="START_LINK"/>새로운 댓글 오남용 ì‹ ê³ <x id="CLOSE_LINK"/>ê°€ ì˜ìƒ <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/>ì—ì„œ ìƒì„±ë˜ì—ˆìŠµë‹ˆë‹¤.</target> |
207 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new comment abuse | ||
208 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | ||
209 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
210 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.comment.video.name }}"/> | ||
211 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
212 | </target> | ||
213 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group> | 260 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group> |
214 | </trans-unit> | 261 | </trans-unit> |
215 | <trans-unit id="7885094785640544496" datatype="html"> | 262 | <trans-unit id="7885094785640544496" datatype="html"> |
216 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 263 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
217 | <target state="new"> | 264 | <target state="translated"><x id="START_LINK"/>새로운 ê³„ì • 오남용 ì‹ ê³ <x id="CLOSE_LINK"/>ê°€ ê³„ì • <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/>ì— ëŒ€í•´ì„œ ìƒì„±ë˜ì—ˆìŠµë‹ˆë‹¤.</target> |
218 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new account abuse | ||
219 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on account | ||
220 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
221 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.account.displayName }}"/> | ||
222 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
223 | </target> | ||
224 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group> | 265 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group> |
225 | </trans-unit> | 266 | </trans-unit> |
226 | <trans-unit id="2008776855594205860" datatype="html"> | 267 | <trans-unit id="2008776855594205860" datatype="html"> |
227 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> | 268 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> |
228 | <target state="new"> | 269 | <target state="translated"><x id="START_LINK"/>새로운 오남용 ì‹ ê³ <x id="CLOSE_LINK"/> ê°€ ìƒì„±ë˜ì—ˆìŠµë‹ˆë‹¤ </target> |
229 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new abuse | ||
230 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created | ||
231 | |||
232 | </target> | ||
233 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group> | 270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group> |
234 | </trans-unit> | 271 | </trans-unit> |
235 | <trans-unit id="8816959058080937679" datatype="html"> | 272 | <trans-unit id="8816959058080937679" datatype="html"> |
236 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 273 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
237 | <target state="new"> | 274 | <target state="translated"><x id="START_LINK"/>ì‹ ê³ í•˜ì…¨ë˜ ì˜¤ë‚¨ìš© ì‹ ê³ <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ê°€ <x id="START_TAG_NG_CONTAINER"/>승ì¸ë˜ì—ˆìŠµë‹ˆë‹¤<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>ë°˜ë ¤ë˜ì—ˆìŠµë‹ˆë‹¤<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
238 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your abuse | ||
239 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | ||
240 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | ||
241 | |||
242 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>accepted | ||
243 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
244 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>rejected | ||
245 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
246 | </target> | ||
247 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group> | 275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group> |
248 | </trans-unit> | 276 | </trans-unit> |
249 | <trans-unit id="6464941273929604379" datatype="html"> | 277 | <trans-unit id="6464941273929604379" datatype="html"> |
250 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> | 278 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> |
251 | <target state="new"> | 279 | <target state="translated"><x id="START_LINK"/>오남용 ì‹ ê³ <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ì— ë©”ì‹œì§€ê°€ 있습니다 </target> |
252 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Abuse | ||
253 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | ||
254 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has a new message | ||
255 | |||
256 | </target> | ||
257 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group> | 280 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group> |
258 | </trans-unit> | 281 | </trans-unit> |
259 | <trans-unit id="420488506127153204" datatype="html"> | 282 | <trans-unit id="420488506127153204" datatype="html"> |
260 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> | 283 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> |
261 | <target state="translated">ìµœê·¼ì— ì¶”ê°€ëœ ë¹„ë””ì˜¤ <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 284 | <target state="translated">ìµœê·¼ì— ì¶”ê°€ëœ ë¹„ë””ì˜¤ <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
262 | 285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">87</context></context-group> | |
263 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> | 286 | </trans-unit> |
264 | <trans-unit id="2740435661398285769" datatype="html"> | 287 | <trans-unit id="2740435661398285769" datatype="html"> |
265 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 288 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
266 | <target state="new"> | 289 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ë‹˜ì´ íšŒì›ë‹˜ì˜ ë™ì˜ìƒ <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/> ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤</target> |
267 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">99</context></context-group> |
268 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> | 291 | </trans-unit> |
269 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> commented your video | ||
270 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
271 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> | ||
272 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
273 | </target> | ||
274 | |||
275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | ||
276 | <trans-unit id="2020563642195933477" datatype="html"> | 292 | <trans-unit id="2020563642195933477" datatype="html"> |
277 | <source>The notification concerns a comment now unavailable</source> | 293 | <source>The notification concerns a comment now unavailable</source> |
278 | <target state="new"> | 294 | <target state="translated">ì´ ì•Œë¦¼ì€ í˜„ìž¬ ì‚¬ìš©í• ìˆ˜ 없는 ëŒ“ê¸€ì— ê´€í•œ 것입니다</target> |
279 | The notification concerns a comment now unavailable | 295 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">106</context></context-group> |
280 | </target> | 296 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">171</context></context-group> |
281 | 297 | </trans-unit> | |
282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
283 | <trans-unit id="2436106664506839309" datatype="html"> | 298 | <trans-unit id="2436106664506839309" datatype="html"> |
284 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> | 299 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> |
285 | <target state="new"> | 300 | <target state="translated">회ì›ë‹˜ì˜ ë™ì˜ìƒ <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ì´ ê²Œì‹œë˜ì—ˆìŠµë‹ˆë‹¤ </target> |
286 | Your video | 301 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">115</context></context-group> |
287 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 302 | </trans-unit> |
288 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | ||
289 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been published | ||
290 | |||
291 | </target> | ||
292 | |||
293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">115</context></context-group></trans-unit> | ||
294 | <trans-unit id="7130219900907848048" datatype="html"> | 303 | <trans-unit id="7130219900907848048" datatype="html"> |
295 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> | 304 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> |
296 | <target state="new"> | 305 | <target state="translated"><x id="START_LINK"/>회ì›ë‹˜ì˜ ë™ì˜ìƒ ê°€ì ¸ì˜¤ê¸°<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> ê°€ 성공했습니다 </target> |
297 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import | 306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">124</context></context-group> |
298 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 307 | </trans-unit> |
299 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> succeeded | ||
300 | |||
301 | </target> | ||
302 | |||
303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | ||
304 | <trans-unit id="2099623308096969132" datatype="html"> | 308 | <trans-unit id="2099623308096969132" datatype="html"> |
305 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> | 309 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> |
306 | <target state="new"> | 310 | <target state="translated"><x id="START_LINK"/>회ì›ë‹˜ì˜ ë™ì˜ìƒ ê°€ì ¸ì˜¤ê¸°<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> ê°€ 실패했습니다 </target> |
307 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import | 311 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">132</context></context-group> |
308 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 312 | </trans-unit> |
309 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> failed | ||
310 | |||
311 | </target> | ||
312 | |||
313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> | ||
314 | <trans-unit id="3371351937331192777" datatype="html"> | 313 | <trans-unit id="3371351937331192777" datatype="html"> |
315 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> | 314 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> |
316 | <target state="new"> | 315 | <target state="translated">ì‚¬ìš©ìž <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ê°€ 회ì›ë‹˜ì˜ ì¸ìŠ¤í„´ìŠ¤ì— 등ë¡í–ˆìŠµë‹ˆë‹¤ </target> |
317 | User | 316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">139</context></context-group> |
318 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 317 | </trans-unit> |
319 | <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> | ||
320 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> registered on your instance | ||
321 | |||
322 | </target> | ||
323 | |||
324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">139</context></context-group></trans-unit> | ||
325 | <trans-unit id="4404295482394146814" datatype="html"> | 318 | <trans-unit id="4404295482394146814" datatype="html"> |
326 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 319 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
327 | <target state="new"> | 320 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ë‹˜ì´ <x id="START_TAG_NG_CONTAINER"/>회ì›ë‹˜ì˜ ì±„ë„ <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>회ì›ë‹˜ì˜ ê³„ì •<x id="CLOSE_TAG_NG_CONTAINER"/>ì„ íŒ”ë¡œìš°í•©ë‹ˆë‹¤</target> |
328 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 321 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> |
329 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> | 322 | </trans-unit> |
330 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is following | 323 | <trans-unit id="5504059606863599420" datatype="html"> |
331 | 324 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | |
332 | 325 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ë‹˜ì´ <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>ì˜ìƒ <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>ì—ì„œ 회ì›ë‹˜ì„ 언급했습니다.</target> | |
333 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>your channel | ||
334 | <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> | ||
335 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
336 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>your account | ||
337 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
338 | </target> | ||
339 | |||
340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="5504059606863599420" datatype="html"> | ||
341 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source><target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | ||
342 | <context-group purpose="location"> | 326 | <context-group purpose="location"> |
343 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 327 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
344 | <context context-type="linenumber">164</context> | 328 | <context context-type="linenumber">164</context> |
345 | </context-group> | 329 | </context-group> |
346 | </trans-unit> | 330 | </trans-unit> |
347 | |||
348 | <trans-unit id="5354239156470982824" datatype="html"> | 331 | <trans-unit id="5354239156470982824" datatype="html"> |
349 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 332 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
350 | <target state="new"> | 333 | <target state="translated">회ì›ë‹˜ì˜ ì¸ìŠ¤í„´ìŠ¤ì— <x id="START_LINK"/>새 팔로워<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> ê°€ 승ì¸ì„ ê¸°ë‹¤ë¦¬ê³ ìžˆìŠµë‹ˆë‹¤<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
351 | Your instance has | 334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">180</context></context-group> |
352 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>a new follower | 335 | </trans-unit> |
353 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( | ||
354 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) | ||
355 | |||
356 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> awaiting your approval | ||
357 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
358 | </target> | ||
359 | |||
360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">180</context></context-group></trans-unit> | ||
361 | <trans-unit id="325842756252267394" datatype="html"> | 336 | <trans-unit id="325842756252267394" datatype="html"> |
362 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 337 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
363 | <target state="new"> | 338 | <target state="translated">회ì›ë‹˜ì˜ ì¸ìŠ¤í„´ìŠ¤ê°€ <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> ì„ ìžë™ìœ¼ë¡œ 팔로우했습니다</target> |
364 | Your instance automatically followed | 339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> |
365 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 340 | </trans-unit> |
366 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> | 341 | <trans-unit id="363592786729553688" datatype="html"> |
367 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 342 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> |
368 | </target> | 343 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>플러그ì¸/테마 <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ì˜ ìƒˆë¡œìš´ ë²„ì „ì„ ì‚¬ìš©í• ìˆ˜ 있습니다: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> |
369 | |||
370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit><trans-unit id="363592786729553688" datatype="html"> | ||
371 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source><target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> | ||
372 | <context-group purpose="location"> | 344 | <context-group purpose="location"> |
373 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 345 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
374 | <context context-type="linenumber">198,199</context> | 346 | <context context-type="linenumber">198,199</context> |
375 | </context-group> | 347 | </context-group> |
376 | </trans-unit><trans-unit id="5055099158245592648" datatype="html"> | 348 | </trans-unit> |
377 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source><target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> | 349 | <trans-unit id="5055099158245592648" datatype="html"> |
350 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> | ||
351 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>새로운 ë²„ì „ì˜ PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> 를 ì‚¬ìš©í• ìˆ˜ 있습니다: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> | ||
378 | <context-group purpose="location"> | 352 | <context-group purpose="location"> |
379 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 353 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
380 | <context context-type="linenumber">206,207</context> | 354 | <context context-type="linenumber">206,207</context> |
@@ -382,27 +356,29 @@ | |||
382 | </trans-unit> | 356 | </trans-unit> |
383 | <trans-unit id="5421414445136873229" datatype="html"> | 357 | <trans-unit id="5421414445136873229" datatype="html"> |
384 | <source>The notification points to content now unavailable</source> | 358 | <source>The notification points to content now unavailable</source> |
385 | <target state="new"> The notification points to content now unavailable </target> | 359 | <target state="translated">ì´ ì•Œë¦¼ì€ í˜„ìž¬ ì‚¬ìš©í• ìˆ˜ 없는 콘í…ì¸ ë¥¼ 가리킵니다</target> |
386 | 360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">213</context></context-group> | |
387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">213</context></context-group></trans-unit> | 361 | </trans-unit> |
388 | <trans-unit id="3321250177023376249" datatype="html"> | 362 | <trans-unit id="3321250177023376249" datatype="html"> |
389 | <source>Change your avatar</source> | 363 | <source>Change your avatar</source> |
390 | <target state="new">Change your avatar</target> | 364 | <target state="translated">아바타 변경</target> |
391 | 365 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">18</context></context-group> | |
392 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 366 | </trans-unit> |
393 | <trans-unit id="8411430224810427392" datatype="html"> | 367 | <trans-unit id="8411430224810427392" datatype="html"> |
394 | <source>Remove avatar</source> | 368 | <source>Remove avatar</source> |
395 | <target state="new">Remove avatar</target> | 369 | <target state="translated">아바타 ì œê±°</target> |
396 | 370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">40</context></context-group> | |
397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 371 | </trans-unit> |
398 | <trans-unit id="8817917090143649804" datatype="html"> | 372 | <trans-unit id="8817917090143649804" datatype="html"> |
399 | <source>Account muted</source><target state="new">Account muted</target> | 373 | <source>Account muted</source> |
400 | 374 | <target state="translated">ê³„ì • 침묵ë¨</target> | |
401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="1684597533616494551" datatype="html"> | 375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group> |
402 | <source>Server muted</source><target state="new">Server muted</target> | 376 | </trans-unit> |
403 | 377 | <trans-unit id="1684597533616494551" datatype="html"> | |
404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 378 | <source>Server muted</source> |
405 | 379 | <target state="translated">서버 침묵ë¨</target> | |
380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">80</context></context-group> | ||
381 | </trans-unit> | ||
406 | <trans-unit id="5924559757556526785"> | 382 | <trans-unit id="5924559757556526785"> |
407 | <source>Save to</source> | 383 | <source>Save to</source> |
408 | <target>ì €ìž¥</target> | 384 | <target>ì €ìž¥</target> |
@@ -411,46 +387,39 @@ | |||
411 | <trans-unit id="8432562579042371182"> | 387 | <trans-unit id="8432562579042371182"> |
412 | <source>Options</source> | 388 | <source>Options</source> |
413 | <target>옵션</target> | 389 | <target>옵션</target> |
414 | 390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">40</context></context-group> | |
415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 391 | </trans-unit> |
416 | <trans-unit id="1394835141143590910"> | 392 | <trans-unit id="1394835141143590910"> |
417 | <source>Start at</source> | 393 | <source>Start at</source> |
418 | <target>시작 위치</target> | 394 | <target>시작 위치</target> |
419 | 395 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">45</context></context-group> | |
420 | 396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">139</context></context-group> | |
421 | 397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group> | |
422 | 398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">69</context></context-group> | |
423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 399 | </trans-unit> |
424 | <trans-unit id="5964984095397511808"> | 400 | <trans-unit id="5964984095397511808"> |
425 | <source>Stop at</source> | 401 | <source>Stop at</source> |
426 | <target>종료 위치</target> | 402 | <target>종료 위치</target> |
427 | 403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">60</context></context-group> | |
428 | 404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">170</context></context-group> | |
429 | 405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group> | |
430 | 406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">83</context></context-group> | |
431 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">170</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 407 | </trans-unit> |
432 | <trans-unit id="2816407313459209541" datatype="html"> | 408 | <trans-unit id="2816407313459209541" datatype="html"> |
433 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 409 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
434 | <target state="new"> | 410 | <target state="translated">회ì›ë‹˜ì˜ ì‹ ê³ ê°€ <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> ì˜ ì¤‘ìž¬ìžì—게 ì „ì†¡ë˜ì—ˆê³ ì˜ìƒì„ 올린 ê³³ (<x id="INTERPOLATION_1"/>) ì—ë„ ì „ì†¡ë 것입니다<x id="CLOSE_TAG_NG_CONTAINER"/>. </target> |
435 | Your report will be sent to moderators of | 411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">72</context></context-group> |
436 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | 412 | </trans-unit> |
437 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the video origin ( | ||
438 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | ||
439 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | ||
440 | |||
441 | </target> | ||
442 | |||
443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | ||
444 | <trans-unit id="6990204431018013063" datatype="html"> | 413 | <trans-unit id="6990204431018013063" datatype="html"> |
445 | <source>Please describe the issue...</source> | 414 | <source>Please describe the issue...</source> |
446 | <target state="new">Please describe the issue...</target> | 415 | <target state="translated">ë¬¸ì œì ì„ ìžì„¸ížˆ ì 어주세요...</target> |
447 | 416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group> | |
448 | 417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group> | |
449 | 418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">78</context></context-group> | |
450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 419 | </trans-unit> |
451 | <trans-unit id="5201790281220738609" datatype="html"> | 420 | <trans-unit id="5201790281220738609" datatype="html"> |
452 | <source>Search playlists</source> | 421 | <source>Search playlists</source> |
453 | <target state="new">Search playlists</target> | 422 | <target state="translated">재ìƒëª©ë¡ 검색</target> |
454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">9</context></context-group> | 423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">9</context></context-group> |
455 | </trans-unit> | 424 | </trans-unit> |
456 | <trans-unit id="6056859576122955708" datatype="html"> | 425 | <trans-unit id="6056859576122955708" datatype="html"> |
@@ -461,16 +430,17 @@ | |||
461 | <trans-unit id="2409672154570643758"> | 430 | <trans-unit id="2409672154570643758"> |
462 | <source>Display name</source> | 431 | <source>Display name</source> |
463 | <target>표시 ì´ë¦„</target> | 432 | <target>표시 ì´ë¦„</target> |
464 | 433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group> | |
465 | 434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group> | |
466 | 435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group> | |
467 | 436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | |
468 | 437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | |
469 | 438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group> | |
470 | 439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | |
471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="2193037168694505715" datatype="html"> | 440 | </trans-unit> |
472 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> | 441 | <trans-unit id="2193037168694505715" datatype="html"> |
473 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source><target state="new">Short text to tell people how they can support the channel (membership platform...).<br /><br /> | 442 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> |
443 | <target state="new">Short text to tell people how they can support the channel (membership platform...).<br /><br /> | ||
474 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</target> | 444 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</target> |
475 | <context-group purpose="location"> | 445 | <context-group purpose="location"> |
476 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> | 446 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> |
@@ -481,71 +451,75 @@ | |||
481 | <context context-type="linenumber">67,68</context> | 451 | <context context-type="linenumber">67,68</context> |
482 | </context-group> | 452 | </context-group> |
483 | </trans-unit> | 453 | </trans-unit> |
484 | |||
485 | <trans-unit id="6438815964972582865" datatype="html"> | 454 | <trans-unit id="6438815964972582865" datatype="html"> |
486 | <source> The following link contains a private token and should not be shared with anyone. </source><target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 455 | <source>The following link contains a private token and should not be shared with anyone.</source> |
487 | 456 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | |
488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">18</context></context-group> |
489 | 458 | </trans-unit> | |
490 | <trans-unit id="7513076467032912668" datatype="html"> | 459 | <trans-unit id="7513076467032912668" datatype="html"> |
491 | <source>Format</source> | 460 | <source>Format</source> |
492 | <target state="new">Format</target> | 461 | <target state="new">Format</target> |
493 | 462 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">74</context></context-group> | |
494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 463 | </trans-unit> |
495 | |||
496 | <trans-unit id="7385834259346199883" datatype="html"> | 464 | <trans-unit id="7385834259346199883" datatype="html"> |
497 | <source>Video stream</source> | 465 | <source>Video stream</source> |
498 | <target state="translated">ë™ì˜ìƒ 스트림</target> | 466 | <target state="translated">ë™ì˜ìƒ 스트림</target> |
499 | 467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">85</context></context-group> | |
500 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 468 | </trans-unit> |
501 | <trans-unit id="5496771215105419189" datatype="html"> | 469 | <trans-unit id="5496771215105419189" datatype="html"> |
502 | <source>Audio stream</source> | 470 | <source>Audio stream</source> |
503 | <target state="translated">오디오 스트림</target> | 471 | <target state="translated">오디오 스트림</target> |
504 | 472 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">97</context></context-group> | |
505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> | 473 | </trans-unit> |
506 | <trans-unit id="6316149158173629264"> | 474 | <trans-unit id="6316149158173629264"> |
507 | <source>Direct download</source> | 475 | <source>Direct download</source> |
508 | <target>ì§ì ‘ 다운로드</target> | 476 | <target>ì§ì ‘ 다운로드</target> |
509 | 477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">116</context></context-group> | |
510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 478 | </trans-unit> |
511 | <trans-unit id="5910455707959454672"> | 479 | <trans-unit id="5910455707959454672"> |
512 | <source>Torrent (.torrent file)</source> | 480 | <source>Torrent (.torrent file)</source> |
513 | <target>í† ë ŒíŠ¸ (.torrent 파ì¼)</target> | 481 | <target>í† ë ŒíŠ¸ (.torrent 파ì¼)</target> |
514 | 482 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">121</context></context-group> | |
515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit><trans-unit id="5830517253429165613" datatype="html"> | 483 | </trans-unit> |
516 | <source> Advanced </source><target state="new"> Advanced </target> | 484 | <trans-unit id="5830517253429165613" datatype="html"> |
517 | 485 | <source>Advanced</source> | |
518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit><trans-unit id="4493457595110310369" datatype="html"> | 486 | <target state="translated">ê³ ê¸‰</target> |
519 | <source> Simple </source><target state="new"> Simple </target> | 487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">134</context></context-group> |
520 | 488 | </trans-unit> | |
521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 489 | <trans-unit id="4493457595110310369" datatype="html"> |
490 | <source>Simple</source> | ||
491 | <target state="new"> Simple </target> | ||
492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">142</context></context-group> | ||
493 | </trans-unit> | ||
522 | <trans-unit id="1006562256968398209" datatype="html"> | 494 | <trans-unit id="1006562256968398209" datatype="html"> |
523 | <source>video</source> | 495 | <source>video</source> |
524 | <target state="new">video</target> | 496 | <target state="translated">ì˜ìƒ</target> |
525 | 497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">298</context></context-group> | |
526 | 498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">56</context></context-group> | |
527 | 499 | </trans-unit> | |
528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">298</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">56</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 500 | <trans-unit id="6995024616159044376" datatype="html"> |
529 | <source>Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source><target state="new">Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 501 | <source>Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> |
530 | 502 | <target state="new">Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | |
531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">333</context></context-group> |
532 | <source>Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source><target state="new">Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 504 | </trans-unit> |
533 | 505 | <trans-unit id="7873395933409147217" datatype="html"> | |
534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 506 | <source>Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source> |
535 | 507 | <target state="new">Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | |
508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">352</context></context-group> | ||
509 | </trans-unit> | ||
536 | <trans-unit id="5235042777215655908" datatype="html"> | 510 | <trans-unit id="5235042777215655908" datatype="html"> |
537 | <source>subtitles</source> | 511 | <source>subtitles</source> |
538 | <target state="new">subtitles</target> | 512 | <target state="translated">ìžë§‰</target> |
539 | 513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">57</context></context-group> | |
540 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 514 | </trans-unit> |
541 | |||
542 | |||
543 | <trans-unit id="6325096236207614377"> | 515 | <trans-unit id="6325096236207614377"> |
544 | <source>Reason...</source> | 516 | <source>Reason...</source> |
545 | <target>ì‚¬ìœ ...</target> | 517 | <target>ì‚¬ìœ ...</target> |
546 | 518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">16</context></context-group> | |
547 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="1781854282711822539" datatype="html"> | 519 | </trans-unit> |
548 | <source>Mute to also hide videos/comments</source><target state="new">Mute to also hide videos/comments</target> | 520 | <trans-unit id="1781854282711822539" datatype="html"> |
521 | <source>Mute to also hide videos/comments</source> | ||
522 | <target state="new">Mute to also hide videos/comments</target> | ||
549 | <context-group purpose="location"> | 523 | <context-group purpose="location"> |
550 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 524 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
551 | <context context-type="linenumber">27</context> | 525 | <context context-type="linenumber">27</context> |
@@ -556,19 +530,21 @@ | |||
556 | <target> | 530 | <target> |
557 | 취소 | 531 | 취소 |
558 | </target> | 532 | </target> |
559 | 533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">47</context></context-group> | |
560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">22</context></context-group> |
535 | </trans-unit> | ||
561 | <trans-unit id="935187492052582731"> | 536 | <trans-unit id="935187492052582731"> |
562 | <source>Submit</source> | 537 | <source>Submit</source> |
563 | <target>게시</target> | 538 | <target>게시</target> |
564 | 539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">52</context></context-group> | |
565 | 540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">27</context></context-group> | |
566 | 541 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">58</context></context-group> | |
567 | 542 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">58</context></context-group> | |
568 | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">94</context></context-group> | |
569 | 544 | </trans-unit> | |
570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit><trans-unit id="8343217707114977013" datatype="html"> | 545 | <trans-unit id="8343217707114977013" datatype="html"> |
571 | <source>The contact form is not enabled on this instance.</source><target state="new">The contact form is not enabled on this instance.</target> | 546 | <source>The contact form is not enabled on this instance.</source> |
547 | <target state="new">The contact form is not enabled on this instance.</target> | ||
572 | <context-group purpose="location"> | 548 | <context-group purpose="location"> |
573 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 549 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
574 | <context context-type="linenumber">56</context> | 550 | <context context-type="linenumber">56</context> |
@@ -583,30 +559,29 @@ | |||
583 | </trans-unit> | 559 | </trans-unit> |
584 | <trans-unit id="5471125870639393916" datatype="html"> | 560 | <trans-unit id="5471125870639393916" datatype="html"> |
585 | <source>What is the issue?</source> | 561 | <source>What is the issue?</source> |
586 | <target state="new">What is the issue?</target> | 562 | <target state="translated">ë¬¸ì œì ì´ ë¬´ì—‡ì¸ê°€ìš”?</target> |
587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> | 563 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> |
588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">13</context></context-group> | 564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">13</context></context-group> |
589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> | 565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> |
590 | </trans-unit> | 566 | </trans-unit> |
591 | |||
592 | <trans-unit id="2466846716878254816" datatype="html"> | 567 | <trans-unit id="2466846716878254816" datatype="html"> |
593 | <source>Element <x id="PH" equiv-text="param"/> not found</source><target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | 568 | <source>Element <x id="PH" equiv-text="param"/> not found</source> |
594 | 569 | <target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | |
595 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 570 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context><context context-type="linenumber">85</context></context-group> |
596 | 571 | </trans-unit> | |
597 | <trans-unit id="7539427273132299890"> | 572 | <trans-unit id="7539427273132299890"> |
598 | <source>Unlisted</source> | 573 | <source>Unlisted</source> |
599 | <target>목ë¡ì— 미표시</target> | 574 | <target>목ë¡ì— 미표시</target> |
600 | 575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">9</context></context-group> | |
601 | 576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">6</context></context-group> | |
602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 577 | </trans-unit> |
603 | <trans-unit id="3686284950598311784"> | 578 | <trans-unit id="3686284950598311784"> |
604 | <source>Private</source> | 579 | <source>Private</source> |
605 | <target>비공개</target> | 580 | <target>비공개</target> |
606 | 581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group> | |
607 | 582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group> | |
608 | 583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">45</context></context-group> | |
609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 584 | </trans-unit> |
610 | <trans-unit id="7688104409544625220" datatype="html"> | 585 | <trans-unit id="7688104409544625220" datatype="html"> |
611 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 586 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
612 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { | 587 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { |
@@ -614,7 +589,6 @@ | |||
614 | </target> | 589 | </target> |
615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> | 590 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> |
616 | </trans-unit> | 591 | </trans-unit> |
617 | |||
618 | <trans-unit id="8562063050145802350" datatype="html"> | 592 | <trans-unit id="8562063050145802350" datatype="html"> |
619 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> | 593 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> |
620 | <target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> | 594 | <target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> |
@@ -623,51 +597,65 @@ | |||
623 | <context context-type="linenumber">7</context> | 597 | <context context-type="linenumber">7</context> |
624 | </context-group> | 598 | </context-group> |
625 | </trans-unit> | 599 | </trans-unit> |
626 | |||
627 | <trans-unit id="3267631941074558910" datatype="html"> | 600 | <trans-unit id="3267631941074558910" datatype="html"> |
628 | <source>Cannot fetch information of this remote account</source> | 601 | <source>Cannot fetch information of this remote account</source> |
629 | <target state="new">Cannot fetch information of this remote account</target> | 602 | <target state="translated">ì´ ì›ê²© ê³„ì •ì˜ ì •ë³´ë¥¼ 불러올 수 없습니다</target> |
630 | 603 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context><context context-type="linenumber">64</context></context-group> | |
631 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 604 | </trans-unit> |
632 | <trans-unit id="9081463435738465430" datatype="html"> | 605 | <trans-unit id="9081463435738465430" datatype="html"> |
633 | <source>Blocked</source> | 606 | <source>Blocked</source> |
634 | <target state="new">Blocked</target> | 607 | <target state="translated">차단함</target> |
635 | 608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit><trans-unit id="870586304593427318" datatype="html"> | 609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">59</context></context-group> |
637 | <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source><target state="new">Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</target> | 610 | </trans-unit> |
638 | 611 | <trans-unit id="870586304593427318" datatype="html"> | |
639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">197</context></context-group></trans-unit><trans-unit id="6630644917521475697" datatype="html"> | 612 | <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source> |
640 | <source>Deleted <x id="PH" equiv-text="videos.length"/> videos.</source><target state="new">Deleted <x id="PH" equiv-text="videos.length"/> videos.</target> | 613 | <target state="new">Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</target> |
614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">197</context></context-group> | ||
615 | </trans-unit> | ||
616 | <trans-unit id="6630644917521475697" datatype="html"> | ||
617 | <source>Deleted <x id="PH" equiv-text="videos.length"/> videos.</source> | ||
618 | <target state="needs-translation">Deleted <x id="PH" equiv-text="videos.length"/> videos.</target> | ||
641 | <context-group purpose="location"> | 619 | <context-group purpose="location"> |
642 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 620 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
643 | <context context-type="linenumber">204</context> | 621 | <context context-type="linenumber">204</context> |
644 | </context-group> | 622 | </context-group> |
645 | </trans-unit><trans-unit id="2870417795706430145" datatype="html"> | 623 | </trans-unit> |
646 | <source>Unblocked <x id="PH" equiv-text="videos.length"/> videos.</source><target state="new">Unblocked <x id="PH" equiv-text="videos.length"/> videos.</target> | 624 | <trans-unit id="2870417795706430145" datatype="html"> |
625 | <source>Unblocked <x id="PH" equiv-text="videos.length"/> videos.</source> | ||
626 | <target state="new">Unblocked <x id="PH" equiv-text="videos.length"/> videos.</target> | ||
647 | <context-group purpose="location"> | 627 | <context-group purpose="location"> |
648 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 628 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
649 | <context context-type="linenumber">216</context> | 629 | <context context-type="linenumber">216</context> |
650 | </context-group> | 630 | </context-group> |
651 | </trans-unit><trans-unit id="9088099192924395359" datatype="html"> | 631 | </trans-unit> |
652 | <source>Are you sure you want to delete <x id="PH" equiv-text="videos.length"/> HLS streaming playlists?</source><target state="new">Are you sure you want to delete <x id="PH" equiv-text="videos.length"/> HLS streaming playlists?</target> | 632 | <trans-unit id="9088099192924395359" datatype="html"> |
633 | <source>Are you sure you want to delete <x id="PH" equiv-text="videos.length"/> HLS streaming playlists?</source> | ||
634 | <target state="new">Are you sure you want to delete <x id="PH" equiv-text="videos.length"/> HLS streaming playlists?</target> | ||
653 | <context-group purpose="location"> | 635 | <context-group purpose="location"> |
654 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 636 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
655 | <context context-type="linenumber">226</context> | 637 | <context context-type="linenumber">226</context> |
656 | </context-group> | 638 | </context-group> |
657 | </trans-unit><trans-unit id="5442133371267277333" datatype="html"> | 639 | </trans-unit> |
658 | <source>Are you sure you want to delete WebTorrent files of <x id="PH" equiv-text="videos.length"/> videos?</source><target state="new">Are you sure you want to delete WebTorrent files of <x id="PH" equiv-text="videos.length"/> videos?</target> | 640 | <trans-unit id="5442133371267277333" datatype="html"> |
641 | <source>Are you sure you want to delete WebTorrent files of <x id="PH" equiv-text="videos.length"/> videos?</source> | ||
642 | <target state="new">Are you sure you want to delete WebTorrent files of <x id="PH" equiv-text="videos.length"/> videos?</target> | ||
659 | <context-group purpose="location"> | 643 | <context-group purpose="location"> |
660 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 644 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
661 | <context context-type="linenumber">227</context> | 645 | <context context-type="linenumber">227</context> |
662 | </context-group> | 646 | </context-group> |
663 | </trans-unit><trans-unit id="1571742433738679426" datatype="html"> | 647 | </trans-unit> |
664 | <source>Files were removed.</source><target state="new">Files were removed.</target> | 648 | <trans-unit id="1571742433738679426" datatype="html"> |
649 | <source>Files were removed.</source> | ||
650 | <target state="needs-translation">파ì¼ì´ ì´ë¯¸ ì‚ì œë˜ì—ˆìŠµë‹ˆë‹¤.</target> | ||
665 | <context-group purpose="location"> | 651 | <context-group purpose="location"> |
666 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 652 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
667 | <context context-type="linenumber">235</context> | 653 | <context context-type="linenumber">235</context> |
668 | </context-group> | 654 | </context-group> |
669 | </trans-unit><trans-unit id="7054344823477412274" datatype="html"> | 655 | </trans-unit> |
670 | <source>Transcoding jobs created.</source><target state="new">Transcoding jobs created.</target> | 656 | <trans-unit id="7054344823477412274" datatype="html"> |
657 | <source>Transcoding jobs created.</source> | ||
658 | <target state="new">Transcoding jobs created.</target> | ||
671 | <context-group purpose="location"> | 659 | <context-group purpose="location"> |
672 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> | 660 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context> |
673 | <context context-type="linenumber">247</context> | 661 | <context context-type="linenumber">247</context> |
@@ -676,114 +664,102 @@ | |||
676 | <trans-unit id="3514509630940272440" datatype="html"> | 664 | <trans-unit id="3514509630940272440" datatype="html"> |
677 | <source>Sensitive</source> | 665 | <source>Sensitive</source> |
678 | <target state="translated">민ê°</target> | 666 | <target state="translated">민ê°</target> |
679 | 667 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">63</context></context-group> | |
680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 668 | </trans-unit> |
681 | |||
682 | <trans-unit id="7708270344948043036" datatype="html"> | 669 | <trans-unit id="7708270344948043036" datatype="html"> |
683 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 670 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
684 | <target state="new"> | 671 | <target state="new"> |
685 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | 672 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> |
686 | </target> | 673 | </target> |
687 | 674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">25</context></context-group> | |
688 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 675 | </trans-unit> |
689 | <trans-unit id="3044142083883783523" datatype="html"> | 676 | <trans-unit id="3044142083883783523" datatype="html"> |
690 | <source>Updated <x id="INTERPOLATION"/></source> | 677 | <source>Updated <x id="INTERPOLATION"/></source> |
691 | <target state="translated"> | 678 | <target state="translated"> |
692 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/>Updated | 679 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/>Updated |
693 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/> | 680 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/> |
694 | </target> | 681 | </target> |
695 | 682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">32</context></context-group> | |
696 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 683 | </trans-unit> |
697 | <trans-unit id="5643561794785412000" datatype="html"> | 684 | <trans-unit id="5643561794785412000" datatype="html"> |
698 | <source>Unavailable</source> | 685 | <source>Unavailable</source> |
699 | <target state="translated">사용 불가</target> | 686 | <target state="translated">사용 불가</target> |
700 | 687 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">44</context></context-group> | |
701 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 688 | </trans-unit> |
702 | <trans-unit id="6381490568322624964" datatype="html"> | 689 | <trans-unit id="6381490568322624964" datatype="html"> |
703 | <source>Deleted</source> | 690 | <source>Deleted</source> |
704 | <target state="translated">ì‚ì œë¨</target> | 691 | <target state="translated">ì‚ì œë¨</target> |
705 | 692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">47</context></context-group> | |
706 | 693 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">46</context></context-group> | |
707 | 694 | </trans-unit> | |
708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | ||
709 | <trans-unit id="5263519165976128456"> | 695 | <trans-unit id="5263519165976128456"> |
710 | <source>Edit starts/stops at</source> | 696 | <source>Edit starts/stops at</source> |
711 | <target>시작 / 종료 지ì ìˆ˜ì •</target> | 697 | <target>시작 / 종료 지ì ìˆ˜ì •</target> |
712 | 698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">62</context></context-group> | |
713 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 699 | </trans-unit> |
714 | <trans-unit id="3768927257183755959"> | 700 | <trans-unit id="3768927257183755959"> |
715 | <source>Save</source> | 701 | <source>Save</source> |
716 | <target>ì €ìž¥</target> | 702 | <target>ì €ìž¥</target> |
717 | 703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group> | |
718 | 704 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
719 | 705 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group> | |
720 | 706 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">94</context></context-group> | |
721 | 707 | </trans-unit> | |
722 | |||
723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
724 | <trans-unit id="8890926675057871150" datatype="html"> | 708 | <trans-unit id="8890926675057871150" datatype="html"> |
725 | <source>Delete from <x id="INTERPOLATION"/></source> | 709 | <source>Delete from <x id="INTERPOLATION"/></source> |
726 | <target state="translated">재ìƒëª©ë¡ | 710 | <target state="translated">재ìƒëª©ë¡ |
727 | <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/> ì—ì„œ ì‚ì œë¨ | 711 | <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/> ì—ì„œ ì‚ì œë¨ |
728 | </target> | 712 | </target> |
729 | 713 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">100</context></context-group> | |
730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> | 714 | </trans-unit> |
731 | <trans-unit id="834805431202576194"> | 715 | <trans-unit id="834805431202576194"> |
732 | <source>No results.</source> | 716 | <source>No results.</source> |
733 | <target>결과가 없습니다.</target> | 717 | <target>결과가 없습니다.</target> |
734 | 718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group> | |
735 | 719 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context><context context-type="linenumber">41</context></context-group> | |
736 | 720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">23</context></context-group> | |
737 | 721 | </trans-unit> | |
738 | |||
739 | |||
740 | |||
741 | |||
742 | |||
743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | ||
744 | <trans-unit id="3594371452042277118" datatype="html"> | 722 | <trans-unit id="3594371452042277118" datatype="html"> |
745 | <source>Videos with the most interactions for recent videos, minus user history</source><target state="new">Videos with the most interactions for recent videos, minus user history</target> | 723 | <source>Videos with the most interactions for recent videos, minus user history</source> |
746 | 724 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> | |
747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">203</context></context-group> |
748 | 726 | </trans-unit> | |
749 | <trans-unit id="158575725114802951" datatype="html"> | 727 | <trans-unit id="158575725114802951" datatype="html"> |
750 | <source>Only live videos</source><target state="new">Only live videos</target> | 728 | <source>Only live videos</source> |
751 | 729 | <target state="translated">실시간 ì˜ìƒë§Œ</target> | |
752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">96</context></context-group> |
731 | </trans-unit> | ||
753 | <trans-unit id="7585826646011739428"> | 732 | <trans-unit id="7585826646011739428"> |
754 | <source>Edit</source> | 733 | <source>Edit</source> |
755 | <target>편집</target> | 734 | <target>편집</target> |
756 | 735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
757 | 736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
758 | 737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
759 | 738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
760 | 739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
761 | 740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
762 | 741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group> | |
763 | 742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">310</context></context-group> | |
764 | 743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group> | |
765 | 744 | </trans-unit> | |
766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">310</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | ||
767 | <trans-unit id="5293515551330482519"> | 745 | <trans-unit id="5293515551330482519"> |
768 | <source>Truncated preview</source> | 746 | <source>Truncated preview</source> |
769 | <target>부분ì ì¸ ë¯¸ë¦¬ë³´ê¸°</target> | 747 | <target>부분ì ì¸ ë¯¸ë¦¬ë³´ê¸°</target> |
770 | 748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">12</context></context-group> | |
771 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 749 | </trans-unit> |
772 | |||
773 | |||
774 | <trans-unit id="80730865601179554"> | 750 | <trans-unit id="80730865601179554"> |
775 | <source>Complete preview</source> | 751 | <source>Complete preview</source> |
776 | <target>ì™„ì „í•œ 미리보기</target> | 752 | <target>ì™„ì „í•œ 미리보기</target> |
777 | 753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> | |
778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 754 | </trans-unit> |
779 | <trans-unit id="8644431249513874405" datatype="html"> | 755 | <trans-unit id="8644431249513874405" datatype="html"> |
780 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 756 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
781 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 757 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 758 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
783 | </trans-unit> | 759 | </trans-unit> |
784 | <trans-unit id="146235964740293376" datatype="html"> | 760 | <trans-unit id="146235964740293376" datatype="html"> |
785 | <source>Recommended</source> | 761 | <source>Recommended</source> |
786 | <target state="new">Recommended</target> | 762 | <target state="translated">추천</target> |
787 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/peertube-checkbox.component.html</context><context context-type="linenumber">33</context></context-group> | 763 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/peertube-checkbox.component.html</context><context context-type="linenumber">33</context></context-group> |
788 | </trans-unit> | 764 | </trans-unit> |
789 | <trans-unit id="1779391511451594552"> | 765 | <trans-unit id="1779391511451594552"> |
@@ -793,7 +769,7 @@ | |||
793 | </trans-unit> | 769 | </trans-unit> |
794 | <trans-unit id="3372646000533908418" datatype="html"> | 770 | <trans-unit id="3372646000533908418" datatype="html"> |
795 | <source>Subscribe with a remote account:</source> | 771 | <source>Subscribe with a remote account:</source> |
796 | <target state="new">Subscribe with a remote account:</target> | 772 | <target state="needs-translation">ì›ê²© ê³„ì •ìœ¼ë¡œ 구ë…:</target> |
797 | <context-group purpose="location"> | 773 | <context-group purpose="location"> |
798 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 774 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
799 | <context context-type="linenumber">62</context> | 775 | <context context-type="linenumber">62</context> |
@@ -809,27 +785,36 @@ | |||
809 | <target>로컬 ê³„ì •ìœ¼ë¡œ 구ë…</target> | 785 | <target>로컬 ê³„ì •ìœ¼ë¡œ 구ë…</target> |
810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> | 786 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> |
811 | </trans-unit> | 787 | </trans-unit> |
812 | |||
813 | <trans-unit id="7639191791633609999" datatype="html"> | 788 | <trans-unit id="7639191791633609999" datatype="html"> |
814 | <source>The live stream will be automatically terminated.</source> | 789 | <source>The live stream will be automatically terminated.</source> |
815 | <target state="new">The live stream will be automatically terminated.</target> | 790 | <target state="translated">실시간 ìŠ¤íŠ¸ë¦¼ì´ ìžë™ìœ¼ë¡œ 종료ë˜ì—ˆìŠµë‹ˆë‹¤.</target> |
816 | 791 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group> | |
817 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit><trans-unit id="8023282004085823427" datatype="html"> | 792 | </trans-unit> |
818 | <source><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</source><target state="new"><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</target> | 793 | <trans-unit id="8023282004085823427" datatype="html"> |
819 | 794 | <source><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</source> | |
820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit><trans-unit id="4140366911638662173" datatype="html"> | 795 | <target state="translated"><x id="PH" equiv-text="this.video.name"/> ì´(ê°€) 회ì›ë‹˜ì˜ ì¸ìŠ¤í„´ìŠ¤ì— ë³µì œë 것입니다.</target> |
821 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source><target state="new">Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</target> | 796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">249</context></context-group> |
822 | 797 | </trans-unit> | |
823 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit><trans-unit id="2955645766721124100" datatype="html"> | 798 | <trans-unit id="4140366911638662173" datatype="html"> |
824 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source><target state="new">Remove "<x id="PH" equiv-text="this.video.name"/>" files</target> | 799 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> |
825 | 800 | <target state="new">Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</target> | |
826 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7758350391886784213" datatype="html"> | 801 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> |
827 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source><target state="new">Removed files of <x id="PH" equiv-text="video.name"/>.</target> | 802 | </trans-unit> |
828 | 803 | <trans-unit id="2955645766721124100" datatype="html"> | |
829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit><trans-unit id="6279087330074580345" datatype="html"> | 804 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> |
830 | <source>Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</source><target state="new">Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</target> | 805 | <target state="new">Remove "<x id="PH" equiv-text="this.video.name"/>" files</target> |
831 | 806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | |
832 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit> | 807 | </trans-unit> |
808 | <trans-unit id="7758350391886784213" datatype="html"> | ||
809 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> | ||
810 | <target state="new">Removed files of <x id="PH" equiv-text="video.name"/>.</target> | ||
811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> | ||
812 | </trans-unit> | ||
813 | <trans-unit id="6279087330074580345" datatype="html"> | ||
814 | <source>Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</source> | ||
815 | <target state="new">Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</target> | ||
816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group> | ||
817 | </trans-unit> | ||
833 | <trans-unit id="2949829240129672512" datatype="html"> | 818 | <trans-unit id="2949829240129672512" datatype="html"> |
834 | <source>Using a syndication feed</source> | 819 | <source>Using a syndication feed</source> |
835 | <target state="translated">ì‹ ë””ì¼€ì´ì…˜ 피드 사용</target> | 820 | <target state="translated">ì‹ ë””ì¼€ì´ì…˜ 피드 사용</target> |
@@ -842,29 +827,29 @@ | |||
842 | </trans-unit> | 827 | </trans-unit> |
843 | <trans-unit id="6086125715086510222" datatype="html"> | 828 | <trans-unit id="6086125715086510222" datatype="html"> |
844 | <source>PROFILE SETTINGS</source> | 829 | <source>PROFILE SETTINGS</source> |
845 | <target state="new">PROFILE SETTINGS</target> | 830 | <target state="translated">프로필 ì„¤ì •</target> |
846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group> | 831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group> |
847 | </trans-unit> | 832 | </trans-unit> |
848 | <trans-unit id="855178133027341271" datatype="html"> | 833 | <trans-unit id="855178133027341271" datatype="html"> |
849 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 834 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
850 | <target state="new"> | 835 | <target state="new"> |
851 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Remote subscribe | 836 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Remote subscribe |
852 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 837 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
853 | <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Remote interact | 838 | <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Remote interact |
854 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 839 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
855 | </target> | 840 | </target> |
856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> | 841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> |
857 | </trans-unit> | 842 | </trans-unit> |
858 | <trans-unit id="6462281745850371027" datatype="html"> | 843 | <trans-unit id="6462281745850371027" datatype="html"> |
859 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 844 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
860 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 845 | <target state="translated">ì´ ì±„ë„ì„ ActivityPub와 호환ë˜ëŠ” ì—°í•©ìš°ì£¼ì˜ ì¸ìŠ¤í„´ìŠ¤ì—ì„œ 구ë…하실 수 있습니다 (예시: PeerTube, Mastodon, Pleroma).</target> |
861 | 846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">17</context></context-group> | |
862 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 847 | </trans-unit> |
863 | <trans-unit id="20374890400263257" datatype="html"> | 848 | <trans-unit id="20374890400263257" datatype="html"> |
864 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 849 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
865 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 850 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> |
866 | 851 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">25</context></context-group> | |
867 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 852 | </trans-unit> |
868 | <trans-unit id="6751395526297887552" datatype="html"> | 853 | <trans-unit id="6751395526297887552" datatype="html"> |
869 | <source>PeerTube version</source> | 854 | <source>PeerTube version</source> |
870 | <target state="translated">PeerTube ë²„ì „</target> | 855 | <target state="translated">PeerTube ë²„ì „</target> |
@@ -873,16 +858,16 @@ | |||
873 | <trans-unit id="5975923297757530070" datatype="html"> | 858 | <trans-unit id="5975923297757530070" datatype="html"> |
874 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> | 859 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> |
875 | <target state="new"> | 860 | <target state="new"> |
876 | <x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/>Default NSFW/sensitive videos policy | 861 | <x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/>Default NSFW/sensitive videos policy |
877 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> | 862 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> |
878 | <x id="START_TAG_DIV_1" ctype="x-div" equiv-text="<div>"/>can be redefined by the users | 863 | <x id="START_TAG_DIV_1" ctype="x-div" equiv-text="<div>"/>can be redefined by the users |
879 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> | 864 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> |
880 | </target> | 865 | </target> |
881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group> | 866 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group> |
882 | </trans-unit> | 867 | </trans-unit> |
883 | <trans-unit id="3386631781603205915" datatype="html"> | 868 | <trans-unit id="3386631781603205915" datatype="html"> |
884 | <source>User registration allowed</source> | 869 | <source>User registration allowed</source> |
885 | <target state="new">User registration allowed</target> | 870 | <target state="translated">ì‚¬ìš©ìž ë“±ë¡ì´ 허용ë¨</target> |
886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">21</context></context-group> | 871 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">21</context></context-group> |
887 | </trans-unit> | 872 | </trans-unit> |
888 | <trans-unit id="2562108310156005500" datatype="html"> | 873 | <trans-unit id="2562108310156005500" datatype="html"> |
@@ -898,7 +883,7 @@ | |||
898 | </trans-unit> | 883 | </trans-unit> |
899 | <trans-unit id="330610135077253864" datatype="html"> | 884 | <trans-unit id="330610135077253864" datatype="html"> |
900 | <source>Live streaming enabled</source> | 885 | <source>Live streaming enabled</source> |
901 | <target state="new">Live streaming enabled</target> | 886 | <target state="translated">실시간 스트리ë°ì´ 허용ë¨</target> |
902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">71</context></context-group> | 887 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">71</context></context-group> |
903 | </trans-unit> | 888 | </trans-unit> |
904 | <trans-unit id="8135461567542503937" datatype="html"> | 889 | <trans-unit id="8135461567542503937" datatype="html"> |
@@ -908,7 +893,7 @@ | |||
908 | </trans-unit> | 893 | </trans-unit> |
909 | <trans-unit id="4990508956923223990" datatype="html"> | 894 | <trans-unit id="4990508956923223990" datatype="html"> |
910 | <source>Max parallel lives</source> | 895 | <source>Max parallel lives</source> |
911 | <target state="new">Max parallel lives</target> | 896 | <target state="needs-translation">Max parallel lives</target> |
912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">85</context></context-group> | 897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">85</context></context-group> |
913 | </trans-unit> | 898 | </trans-unit> |
914 | <trans-unit id="7864066132065250510" datatype="html"> | 899 | <trans-unit id="7864066132065250510" datatype="html"> |
@@ -918,34 +903,35 @@ | |||
918 | </trans-unit> | 903 | </trans-unit> |
919 | <trans-unit id="486979448055158839" datatype="html"> | 904 | <trans-unit id="486979448055158839" datatype="html"> |
920 | <source>Requires manual validation by moderators</source> | 905 | <source>Requires manual validation by moderators</source> |
921 | <target state="new">Requires manual validation by moderators</target> | 906 | <target state="translated">중재ìžì˜ ìˆ˜ë™ ìŠ¹ì¸ í•„ìš”</target> |
922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">41</context></context-group> | 907 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">41</context></context-group> |
923 | </trans-unit> | 908 | </trans-unit> |
924 | <trans-unit id="3584756669036615394" datatype="html"> | 909 | <trans-unit id="3584756669036615394" datatype="html"> |
925 | <source>Automatically published</source> | 910 | <source>Automatically published</source> |
926 | <target state="new">Automatically published</target> | 911 | <target state="translated">ìžë™ìœ¼ë¡œ 게시</target> |
927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group> | 912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group> |
928 | </trans-unit> | 913 | </trans-unit> |
929 | <trans-unit id="2602586221576511475"> | 914 | <trans-unit id="2602586221576511475"> |
930 | <source>Video quota</source> | 915 | <source>Video quota</source> |
931 | <target>ì˜ìƒ 업로드 ì œí•œ</target> | 916 | <target>ì˜ìƒ 업로드 ì œí•œ</target> |
932 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
933 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
934 | 919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group> |
921 | </trans-unit> | ||
936 | <trans-unit id="1502595455339510144"> | 922 | <trans-unit id="1502595455339510144"> |
937 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 923 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
938 | <target> | 924 | <target> |
939 | ë¬´ì œí•œ | 925 | ë¬´ì œí•œ |
940 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>(í•˜ë£¨ì— | 926 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>(í•˜ë£¨ì— |
941 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/>) | 927 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/>) |
942 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 928 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
943 | </target> | 929 | </target> |
944 | 930 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">60</context></context-group> | |
945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 931 | </trans-unit> |
946 | <trans-unit id="1071721880474488785" datatype="html"> | 932 | <trans-unit id="1071721880474488785" datatype="html"> |
947 | <source>Import</source> | 933 | <source>Import</source> |
948 | <target state="new">Import</target> | 934 | <target state="translated">ê°€ì ¸ì˜¤ê¸°</target> |
949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">92</context></context-group> | 935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">92</context></context-group> |
950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">44</context></context-group> | 936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">44</context></context-group> |
951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">36</context></context-group> | 937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">36</context></context-group> |
@@ -953,8 +939,8 @@ | |||
953 | <trans-unit id="6276792241563504067" datatype="html"> | 939 | <trans-unit id="6276792241563504067" datatype="html"> |
954 | <source>You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.</source> | 940 | <source>You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.</source> |
955 | <target state="new"> You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </target> | 941 | <target state="new"> You can import any torrent file that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </target> |
956 | 942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">19</context></context-group> | |
957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 943 | </trans-unit> |
958 | <trans-unit id="5812787579835788700" datatype="html"> | 944 | <trans-unit id="5812787579835788700" datatype="html"> |
959 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> | 945 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> |
960 | <target state="new">HTTP import (YouTube, Vimeo, direct URL...)</target> | 946 | <target state="new">HTTP import (YouTube, Vimeo, direct URL...)</target> |
@@ -962,25 +948,27 @@ | |||
962 | </trans-unit> | 948 | </trans-unit> |
963 | <trans-unit id="4992364287704007430" datatype="html"> | 949 | <trans-unit id="4992364287704007430" datatype="html"> |
964 | <source>Torrent import</source> | 950 | <source>Torrent import</source> |
965 | <target state="new">Torrent import</target> | 951 | <target state="translated">í† ë ŒíŠ¸ ê°€ì ¸ì˜¤ê¸°</target> |
966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">103</context></context-group> | 952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">103</context></context-group> |
967 | </trans-unit> | 953 | </trans-unit> |
968 | <trans-unit id="7683705529753923369" datatype="html"> | 954 | <trans-unit id="7683705529753923369" datatype="html"> |
969 | <source>Player</source> | 955 | <source>Player</source> |
970 | <target state="new">Player</target> | 956 | <target state="translated">í”Œë ˆì´ì–´</target> |
971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">111</context></context-group> | 957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">111</context></context-group> |
972 | </trans-unit> | 958 | </trans-unit> |
973 | <trans-unit id="2000016511993764346" datatype="html"> | 959 | <trans-unit id="2000016511993764346" datatype="html"> |
974 | <source>P2P enabled</source> | 960 | <source>P2P enabled</source> |
975 | <target state="new">P2P enabled</target> | 961 | <target state="translated">P2P 활성화ë¨</target> |
976 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">115</context></context-group> | 962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">115</context></context-group> |
977 | </trans-unit> | 963 | </trans-unit> |
978 | <trans-unit id="4603134051700562542" datatype="html"> | 964 | <trans-unit id="4603134051700562542" datatype="html"> |
979 | <source>Loading instance statistics...</source> | 965 | <source>Loading instance statistics...</source> |
980 | <target state="new">Loading instance statistics...</target> | 966 | <target state="translated">ì¸ìŠ¤í„´ìŠ¤ 통계 불러오는 중...</target> |
981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> | 967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> |
982 | </trans-unit><trans-unit id="5851173629316588976" datatype="html"> | 968 | </trans-unit> |
983 | <source>By users on this instance</source><target state="new">By users on this instance</target> | 969 | <trans-unit id="5851173629316588976" datatype="html"> |
970 | <source>By users on this instance</source> | ||
971 | <target state="new">By users on this instance</target> | ||
984 | <context-group purpose="location"> | 972 | <context-group purpose="location"> |
985 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 973 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
986 | <context context-type="linenumber">4</context> | 974 | <context context-type="linenumber">4</context> |
@@ -989,26 +977,30 @@ | |||
989 | <trans-unit id="2906587845957718064"> | 977 | <trans-unit id="2906587845957718064"> |
990 | <source>Local</source> | 978 | <source>Local</source> |
991 | <target>로컬</target> | 979 | <target>로컬</target> |
992 | 980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group> | |
993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 981 | </trans-unit> |
994 | <trans-unit id="1670306451865226564" datatype="html"> | 982 | <trans-unit id="1670306451865226564" datatype="html"> |
995 | <source>users</source> | 983 | <source>users</source> |
996 | <target state="new">users</target> | 984 | <target state="translated">사용ìž</target> |
997 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">11</context></context-group> | 985 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">11</context></context-group> |
998 | </trans-unit> | 986 | </trans-unit> |
999 | <trans-unit id="5178138591256693636" datatype="html"> | 987 | <trans-unit id="5178138591256693636" datatype="html"> |
1000 | <source>videos</source> | 988 | <source>videos</source> |
1001 | <target state="new">videos</target> | 989 | <target state="translated">ì˜ìƒ</target> |
1002 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> | 990 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> |
1003 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> | 991 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> |
1004 | </trans-unit><trans-unit id="1408045022812097780" datatype="html"> | 992 | </trans-unit> |
1005 | <source>views</source><target state="new">views</target> | 993 | <trans-unit id="1408045022812097780" datatype="html"> |
994 | <source>views</source> | ||
995 | <target state="translated">ì‹œì²</target> | ||
1006 | <context-group purpose="location"> | 996 | <context-group purpose="location"> |
1007 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 997 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
1008 | <context context-type="linenumber">31</context> | 998 | <context context-type="linenumber">31</context> |
1009 | </context-group> | 999 | </context-group> |
1010 | </trans-unit><trans-unit id="117954017715534854" datatype="html"> | 1000 | </trans-unit> |
1011 | <source>comments</source><target state="new">comments</target> | 1001 | <trans-unit id="117954017715534854" datatype="html"> |
1002 | <source>comments</source> | ||
1003 | <target state="translated">댓글</target> | ||
1012 | <context-group purpose="location"> | 1004 | <context-group purpose="location"> |
1013 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 1005 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
1014 | <context context-type="linenumber">41</context> | 1006 | <context context-type="linenumber">41</context> |
@@ -1017,144 +1009,158 @@ | |||
1017 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 1009 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
1018 | <context context-type="linenumber">75</context> | 1010 | <context context-type="linenumber">75</context> |
1019 | </context-group> | 1011 | </context-group> |
1020 | </trans-unit><trans-unit id="6090561122481711127" datatype="html"> | 1012 | </trans-unit> |
1021 | <source>hosted video</source><target state="new">hosted video</target> | 1013 | <trans-unit id="6090561122481711127" datatype="html"> |
1014 | <source>hosted video</source> | ||
1015 | <target state="new">hosted video</target> | ||
1022 | <context-group purpose="location"> | 1016 | <context-group purpose="location"> |
1023 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 1017 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
1024 | <context context-type="linenumber">51</context> | 1018 | <context context-type="linenumber">51</context> |
1025 | </context-group> | 1019 | </context-group> |
1026 | </trans-unit><trans-unit id="6827125739942610231" datatype="html"> | 1020 | </trans-unit> |
1027 | <source>In this instance federation</source><target state="new">In this instance federation</target> | 1021 | <trans-unit id="6827125739942610231" datatype="html"> |
1022 | <source>In this instance federation</source> | ||
1023 | <target state="new">In this instance federation</target> | ||
1028 | <context-group purpose="location"> | 1024 | <context-group purpose="location"> |
1029 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 1025 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
1030 | <context context-type="linenumber">58</context> | 1026 | <context context-type="linenumber">58</context> |
1031 | </context-group> | 1027 | </context-group> |
1032 | </trans-unit> | 1028 | </trans-unit> |
1033 | |||
1034 | |||
1035 | |||
1036 | <trans-unit id="8726138323871139597" datatype="html"> | 1029 | <trans-unit id="8726138323871139597" datatype="html"> |
1037 | <source>Following</source><target state="new">Following</target> | 1030 | <source>Following</source> |
1038 | 1031 | <target state="translated">팔로잉</target> | |
1039 | 1032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">75</context></context-group> | |
1040 | 1033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
1041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit><trans-unit id="4914577418256256836" datatype="html"> | 1034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">26</context></context-group> |
1042 | <source>Followers</source><target state="new">Followers</target> | 1035 | </trans-unit> |
1043 | 1036 | <trans-unit id="4914577418256256836" datatype="html"> | |
1044 | 1037 | <source>Followers</source> | |
1045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1038 | <target state="translated">팔로워</target> |
1039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">80</context></context-group> | ||
1040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group> | ||
1041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">72</context></context-group> | ||
1042 | </trans-unit> | ||
1046 | <trans-unit id="3541687134897970106" datatype="html"> | 1043 | <trans-unit id="3541687134897970106" datatype="html"> |
1047 | <source>followers</source> | 1044 | <source>followers</source> |
1048 | <target state="new">followers</target> | 1045 | <target state="translated">팔로워</target> |
1049 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">85</context></context-group> | 1046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">85</context></context-group> |
1050 | </trans-unit> | 1047 | </trans-unit> |
1051 | <trans-unit id="6751995972535426095" datatype="html"> | 1048 | <trans-unit id="6751995972535426095" datatype="html"> |
1052 | <source>following</source> | 1049 | <source>following</source> |
1053 | <target state="new">following</target> | 1050 | <target state="translated">팔로잉</target> |
1054 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group> | 1051 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group> |
1055 | </trans-unit> | 1052 | </trans-unit> |
1056 | <trans-unit id="2605931708025789621" datatype="html"> | 1053 | <trans-unit id="2605931708025789621" datatype="html"> |
1057 | <source>The upload failed</source> | 1054 | <source>The upload failed</source> |
1058 | <target state="new">The upload failed</target> | 1055 | <target state="translated">업로드가 실패했습니다</target> |
1059 | 1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
1060 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 1057 | </trans-unit> |
1061 | <trans-unit id="1447760976255144968" datatype="html"> | 1058 | <trans-unit id="1447760976255144968" datatype="html"> |
1062 | <source>The connection was interrupted</source> | 1059 | <source>The connection was interrupted</source> |
1063 | <target state="new">The connection was interrupted</target> | 1060 | <target state="translated">ì—°ê²°ì´ ì¤‘ë‹¨ë˜ì—ˆìŠµë‹ˆë‹¤</target> |
1064 | 1061 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
1065 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4499233456830047129" datatype="html"> | 1062 | </trans-unit> |
1066 | <source>The server encountered an error</source><target state="new">The server encountered an error</target> | 1063 | <trans-unit id="4499233456830047129" datatype="html"> |
1067 | 1064 | <source>The server encountered an error</source> | |
1068 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1065 | <target state="translated">서버ì—ì„œ 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤</target> |
1066 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | ||
1067 | </trans-unit> | ||
1069 | <trans-unit id="3334825601859787496" datatype="html"> | 1068 | <trans-unit id="3334825601859787496" datatype="html"> |
1070 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 1069 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
1071 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 1070 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> |
1072 | 1071 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
1073 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 1072 | </trans-unit> |
1074 | <trans-unit id="8530934870279569179" datatype="html"> | 1073 | <trans-unit id="8530934870279569179" datatype="html"> |
1075 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 1074 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
1076 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 1075 | <target state="translated">회ì›ë‹˜ì˜ íŒŒì¼ <x id="PH" equiv-text="name"/> ì´ ë„ˆë¬´ í½ë‹ˆë‹¤ (최대 í¬ê¸°: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
1077 | 1076 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
1078 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1077 | </trans-unit> |
1079 | |||
1080 | |||
1081 | <trans-unit id="7908493851025027368"> | 1078 | <trans-unit id="7908493851025027368"> |
1082 | <source>A banned user will no longer be able to login.</source> | 1079 | <source>A banned user will no longer be able to login.</source> |
1083 | <target> | 1080 | <target> |
1084 | 강퇴당한 사용ìžëŠ” ë” ì´ìƒ 로그ì¸í• 수 없습니다. | 1081 | 강퇴당한 사용ìžëŠ” ë” ì´ìƒ 로그ì¸í• 수 없습니다. |
1085 | </target> | 1082 | </target> |
1086 | 1083 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">9</context></context-group> | |
1087 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 1084 | </trans-unit> |
1088 | |||
1089 | |||
1090 | <trans-unit id="4526499522377118108" datatype="html"> | 1085 | <trans-unit id="4526499522377118108" datatype="html"> |
1091 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 1086 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
1092 | <target state="new">Block video " | 1087 | <target state="new">Block video " |
1093 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | 1088 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" |
1094 | </target> | 1089 | </target> |
1095 | 1090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">8</context></context-group> | |
1096 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1091 | </trans-unit> |
1097 | <trans-unit id="2992313729068029516" datatype="html"> | 1092 | <trans-unit id="2992313729068029516" datatype="html"> |
1098 | <source>Block live "<x id="INTERPOLATION"/>"</source> | 1093 | <source>Block live "<x id="INTERPOLATION"/>"</source> |
1099 | <target state="new">Block live "<x id="INTERPOLATION"/>"</target> | 1094 | <target state="new">Block live "<x id="INTERPOLATION"/>"</target> |
1100 | 1095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">9</context></context-group> | |
1101 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 1096 | </trans-unit> |
1102 | <trans-unit id="7256462927215762997" datatype="html"> | 1097 | <trans-unit id="7256462927215762997" datatype="html"> |
1103 | <source>Please describe the reason...</source> | 1098 | <source>Please describe the reason...</source> |
1104 | <target state="new">Please describe the reason...</target> | 1099 | <target state="translated">ì‚¬ìœ ë¥¼ 설명해주세요...</target> |
1105 | 1100 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">20</context></context-group> | |
1106 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9133713232258232158" datatype="html"> | 1101 | </trans-unit> |
1107 | <source>Unfederate</source><target state="new">Unfederate</target> | 1102 | <trans-unit id="9133713232258232158" datatype="html"> |
1103 | <source>Unfederate</source> | ||
1104 | <target state="translated">연합 해지</target> | ||
1108 | <context-group purpose="location"> | 1105 | <context-group purpose="location"> |
1109 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1106 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1110 | <context context-type="linenumber">31</context> | 1107 | <context context-type="linenumber">31</context> |
1111 | </context-group> | 1108 | </context-group> |
1112 | </trans-unit><trans-unit id="7312374115603954471" datatype="html"> | 1109 | </trans-unit> |
1113 | <source>This will ask remote instances to delete local videos</source><target state="new">This will ask remote instances to delete local videos</target> | 1110 | <trans-unit id="7312374115603954471" datatype="html"> |
1111 | <source>This will ask remote instances to delete local videos</source> | ||
1112 | <target state="new">This will ask remote instances to delete local videos</target> | ||
1114 | <context-group purpose="location"> | 1113 | <context-group purpose="location"> |
1115 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1114 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1116 | <context context-type="linenumber">34</context> | 1115 | <context context-type="linenumber">34</context> |
1117 | </context-group> | 1116 | </context-group> |
1118 | </trans-unit><trans-unit id="2728722206183105047" datatype="html"> | 1117 | </trans-unit> |
1119 | <source>This will ask remote instances to delete this video</source><target state="new">This will ask remote instances to delete this video</target> | 1118 | <trans-unit id="2728722206183105047" datatype="html"> |
1119 | <source>This will ask remote instances to delete this video</source> | ||
1120 | <target state="new">This will ask remote instances to delete this video</target> | ||
1120 | <context-group purpose="location"> | 1121 | <context-group purpose="location"> |
1121 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1122 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1122 | <context context-type="linenumber">35</context> | 1123 | <context context-type="linenumber">35</context> |
1123 | </context-group> | 1124 | </context-group> |
1124 | </trans-unit><trans-unit id="3849007546028672808" datatype="html"> | 1125 | </trans-unit> |
1125 | <source> Blocking a live will automatically terminate the live stream. </source><target state="new"> Blocking a live will automatically terminate the live stream. </target> | 1126 | <trans-unit id="3849007546028672808" datatype="html"> |
1127 | <source>Blocking a live will automatically terminate the live stream.</source> | ||
1128 | <target state="translated">실시간 ë°©ì†¡ì„ ì°¨ë‹¨í•˜ë©´ 실시간 ìŠ¤íŠ¸ë¦¼ì´ ìžë™ìœ¼ë¡œ 종료ë©ë‹ˆë‹¤.</target> | ||
1126 | <context-group purpose="location"> | 1129 | <context-group purpose="location"> |
1127 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 1130 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
1128 | <context context-type="linenumber">40,42</context> | 1131 | <context context-type="linenumber">40,42</context> |
1129 | </context-group> | 1132 | </context-group> |
1130 | </trans-unit><trans-unit id="4195458579645833046" datatype="html"> | 1133 | </trans-unit> |
1131 | <source>Blocked <x id="PH" equiv-text="this.videos.length"/> videos.</source><target state="new">Blocked <x id="PH" equiv-text="this.videos.length"/> videos.</target> | 1134 | <trans-unit id="4195458579645833046" datatype="html"> |
1135 | <source>Blocked <x id="PH" equiv-text="this.videos.length"/> videos.</source> | ||
1136 | <target state="translated">ì˜ìƒ <x id="PH" equiv-text="this.videos.length"/> ì„ ì°¨ë‹¨í–ˆìŠµë‹ˆë‹¤.</target> | ||
1132 | <context-group purpose="location"> | 1137 | <context-group purpose="location"> |
1133 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> | 1138 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> |
1134 | <context context-type="linenumber">84</context> | 1139 | <context context-type="linenumber">84</context> |
1135 | </context-group> | 1140 | </context-group> |
1136 | </trans-unit><trans-unit id="8507506914483467943" datatype="html"> | 1141 | </trans-unit> |
1137 | <source>Blocked <x id="PH" equiv-text="this.getSingleVideo().name"/></source><target state="new">Blocked <x id="PH" equiv-text="this.getSingleVideo().name"/></target> | 1142 | <trans-unit id="8507506914483467943" datatype="html"> |
1143 | <source>Blocked <x id="PH" equiv-text="this.getSingleVideo().name"/></source> | ||
1144 | <target state="translated"><x id="PH" equiv-text="this.getSingleVideo().name"/> ì„ ì°¨ë‹¨í•¨</target> | ||
1138 | <context-group purpose="location"> | 1145 | <context-group purpose="location"> |
1139 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> | 1146 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context> |
1140 | <context context-type="linenumber">85</context> | 1147 | <context context-type="linenumber">85</context> |
1141 | </context-group> | 1148 | </context-group> |
1142 | </trans-unit> | 1149 | </trans-unit> |
1143 | |||
1144 | <trans-unit id="1191071088182425837" datatype="html"> | 1150 | <trans-unit id="1191071088182425837" datatype="html"> |
1145 | <source><x id="PH"/>h</source> | 1151 | <source><x id="PH"/>h</source> |
1146 | <target state="new"><x id="PH"/>h</target> | 1152 | <target state="translated"><x id="PH"/>시간</target> |
1147 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">14</context></context-group> | 1153 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">14</context></context-group> |
1148 | </trans-unit> | 1154 | </trans-unit> |
1149 | <trans-unit id="8981309282078866700" datatype="html"> | 1155 | <trans-unit id="8981309282078866700" datatype="html"> |
1150 | <source><x id="PH"/>min</source> | 1156 | <source><x id="PH"/>min</source> |
1151 | <target state="new"><x id="PH"/>min</target> | 1157 | <target state="translated"><x id="PH"/>분</target> |
1152 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">16</context></context-group> | 1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">16</context></context-group> |
1153 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">23</context></context-group> | 1159 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">23</context></context-group> |
1154 | </trans-unit> | 1160 | </trans-unit> |
1155 | <trans-unit id="350798057497677761" datatype="html"> | 1161 | <trans-unit id="350798057497677761" datatype="html"> |
1156 | <source><x id="PH"/>sec</source> | 1162 | <source><x id="PH"/>sec</source> |
1157 | <target state="new"><x id="PH"/>sec</target> | 1163 | <target state="translated"><x id="PH"/>ì´ˆ</target> |
1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">17</context></context-group> | 1164 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">17</context></context-group> |
1159 | </trans-unit> | 1165 | </trans-unit> |
1160 | <trans-unit id="1908285951500318953"> | 1166 | <trans-unit id="1908285951500318953"> |
@@ -1162,18 +1168,13 @@ | |||
1162 | <target> | 1168 | <target> |
1163 | ë¡œê·¸ì¸ | 1169 | ë¡œê·¸ì¸ |
1164 | </target> | 1170 | </target> |
1165 | 1171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">2</context></context-group> | |
1166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 1172 | </trans-unit> |
1167 | <trans-unit id="1909492071130899005" datatype="html"> | 1173 | <trans-unit id="1909492071130899005" datatype="html"> |
1168 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> | 1174 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> |
1169 | <target state="new"> | 1175 | <target state="translated">죄송합니다. 외부 ë¡œê·¸ì¸ ì ˆì°¨ì— ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤. <x id="START_LINK"/>관리ìžì—게 문ì˜<x id="CLOSE_LINK"/>해주세요. </target> |
1170 | Sorry but there was an issue with the external login process. Please | 1176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">6</context></context-group> |
1171 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator | 1177 | </trans-unit> |
1172 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | ||
1173 | |||
1174 | </target> | ||
1175 | |||
1176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | ||
1177 | <trans-unit id="8390073108781420493"> | 1178 | <trans-unit id="8390073108781420493"> |
1178 | <source>Request new verification email.</source> | 1179 | <source>Request new verification email.</source> |
1179 | <target>새 ì¸ì¦ ë©”ì¼ ìš”ì²í•˜ê¸°</target> | 1180 | <target>새 ì¸ì¦ ë©”ì¼ ìš”ì²í•˜ê¸°</target> |
@@ -1181,121 +1182,122 @@ | |||
1181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | 1182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
1182 | </trans-unit> | 1183 | </trans-unit> |
1183 | <trans-unit id="7252854992688790751" datatype="html"> | 1184 | <trans-unit id="7252854992688790751" datatype="html"> |
1184 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1185 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1185 | <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1186 | <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1186 | 1187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | |
1187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1188 | </trans-unit> |
1188 | <trans-unit id="7215649348148521605" datatype="html"> | 1189 | <trans-unit id="7215649348148521605" datatype="html"> |
1189 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1190 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1190 | <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1191 | <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1191 | 1192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | |
1192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 1193 | </trans-unit> |
1193 | <trans-unit id="2392488717875840729"> | 1194 | <trans-unit id="2392488717875840729"> |
1194 | <source>User</source> | 1195 | <source>User</source> |
1195 | <target>사용ìž</target> | 1196 | <target>사용ìž</target> |
1196 | 1197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
1197 | 1198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">35</context></context-group> | |
1198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 1199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">122</context></context-group> |
1200 | </trans-unit> | ||
1199 | <trans-unit id="3997350348765083892"> | 1201 | <trans-unit id="3997350348765083892"> |
1200 | <source>Username or email address</source> | 1202 | <source>Username or email address</source> |
1201 | <target>사용ìžëª… í˜¹ì€ ì´ë©”ì¼ ì£¼ì†Œ</target> | 1203 | <target>사용ìžëª… í˜¹ì€ ì´ë©”ì¼ ì£¼ì†Œ</target> |
1202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | 1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> |
1203 | </trans-unit><trans-unit id="1758058452376026925" datatype="html"> | 1205 | </trans-unit> |
1204 | <source> âš ï¸ Most email addresses do not include capital letters. </source><target state="new"> âš ï¸ Most email addresses do not include capital letters. </target> | 1206 | <trans-unit id="1758058452376026925" datatype="html"> |
1205 | 1207 | <source>âš ï¸ Most email addresses do not include capital letters.</source> | |
1206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 1208 | <target state="new"> âš ï¸ Most email addresses do not include capital letters. </target> |
1209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">32</context></context-group> | ||
1210 | </trans-unit> | ||
1207 | <trans-unit id="1431416938026210429"> | 1211 | <trans-unit id="1431416938026210429"> |
1208 | <source>Password</source> | 1212 | <source>Password</source> |
1209 | <target>암호</target> | 1213 | <target>암호</target> |
1210 | 1214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1211 | 1215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1212 | 1216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">38</context></context-group> | |
1213 | 1217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">40</context></context-group> | |
1214 | 1218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">8</context></context-group> | |
1215 | 1219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
1216 | 1220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">56</context></context-group> | |
1217 | 1221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">58</context></context-group> | |
1218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1222 | </trans-unit> |
1219 | <trans-unit id="8715156686857791956" datatype="html"> | 1223 | <trans-unit id="8715156686857791956" datatype="html"> |
1220 | <source>Click here to reset your password</source> | 1224 | <source>Click here to reset your password</source> |
1221 | <target state="new">Click here to reset your password</target> | 1225 | <target state="translated">비밀번호를 ì´ˆê¸°í™”í•˜ë ¤ë©´ 여기를 í´ë¦í•˜ì„¸ìš”</target> |
1222 | 1226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
1223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 1227 | </trans-unit> |
1224 | <trans-unit id="892063502898494584" datatype="html"> | 1228 | <trans-unit id="892063502898494584" datatype="html"> |
1225 | <source>I forgot my password</source> | 1229 | <source>I forgot my password</source> |
1226 | <target state="new">I forgot my password</target> | 1230 | <target state="translated">비밀번호를 잊었습니다</target> |
1227 | 1231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
1228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 1232 | </trans-unit> |
1229 | <trans-unit id="2101170466365500913" datatype="html"> | 1233 | <trans-unit id="2101170466365500913" datatype="html"> |
1230 | <source>Logging into an account lets you publish content</source> | 1234 | <source>Logging into an account lets you publish content</source> |
1231 | <target state="new"> Logging into an account lets you publish content </target> | 1235 | <target state="new"> Logging into an account lets you publish content </target> |
1232 | 1236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> | |
1233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1237 | </trans-unit> |
1234 | |||
1235 | <trans-unit id="3183213940445113677" datatype="html"> | 1238 | <trans-unit id="3183213940445113677" datatype="html"> |
1236 | <source>Or sign in with</source> | 1239 | <source>Or sign in with</source> |
1237 | <target state="new">Or sign in with</target> | 1240 | <target state="new">Or sign in with</target> |
1238 | 1241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">77</context></context-group> | |
1239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 1242 | </trans-unit> |
1240 | <trans-unit id="3238209155172574367"> | 1243 | <trans-unit id="3238209155172574367"> |
1241 | <source>Forgot your password</source> | 1244 | <source>Forgot your password</source> |
1242 | <target>암호 잊ìŒ</target> | 1245 | <target>암호 잊ìŒ</target> |
1243 | 1246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group> | |
1244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 1247 | </trans-unit> |
1245 | <trans-unit id="87327320394367488" datatype="html"> | 1248 | <trans-unit id="87327320394367488" datatype="html"> |
1246 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1249 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
1247 | <target state="new"> | 1250 | <target state="translated">죄송합니다. ì´ ì¸ìŠ¤í„´ìŠ¤ì˜ 관리ìžê°€ PeerTube ì´ë©”ì¼ ì‹œìŠ¤í…œì„ ì„¤ì •í•˜ì§€ ì•Šì•„ì„œ 비밀번호를 ë³µêµ¬í• ìˆ˜ 없습니다.</target> |
1248 | We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. | 1251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">106</context></context-group> |
1249 | </target> | 1252 | </trans-unit> |
1250 | |||
1251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | ||
1252 | <trans-unit id="3188014010833256853" datatype="html"> | 1253 | <trans-unit id="3188014010833256853" datatype="html"> |
1253 | <source>Enter your email address and we will send you a link to reset your password.</source> | 1254 | <source>Enter your email address and we will send you a link to reset your password.</source> |
1254 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1255 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> |
1255 | 1256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> | |
1256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group></trans-unit> | 1257 | </trans-unit> |
1257 | <trans-unit id="1190256911880544559" datatype="html"> | 1258 | <trans-unit id="1190256911880544559" datatype="html"> |
1258 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1259 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. The link will expire within 1 hour.</source> |
1259 | The link will expire within 1 hour.</source> | ||
1260 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. | 1260 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. |
1261 | The link will expire within 1 hour.</target> | 1261 | The link will expire within 1 hour.</target> |
1262 | 1262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> | |
1263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 1263 | </trans-unit> |
1264 | <trans-unit id="4768749765465246664"> | 1264 | <trans-unit id="4768749765465246664"> |
1265 | <source>Email</source> | 1265 | <source>Email</source> |
1266 | <target>ì´ë©”ì¼</target> | 1266 | <target>ì´ë©”ì¼</target> |
1267 | 1267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1268 | 1268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1269 | 1269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
1270 | 1270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group> | |
1271 | 1271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group> | |
1272 | 1272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group> | |
1273 | 1273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group> | |
1274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group> |
1275 | </trans-unit> | ||
1275 | <trans-unit id="3967269098753656610"> | 1276 | <trans-unit id="3967269098753656610"> |
1276 | <source>Email address</source> | 1277 | <source>Email address</source> |
1277 | <target>ì´ë©”ì¼ ì£¼ì†Œ</target> | 1278 | <target>ì´ë©”ì¼ ì£¼ì†Œ</target> |
1278 | 1279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group> | |
1279 | 1280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
1280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 1281 | </trans-unit> |
1281 | <trans-unit id="7808756054397155068" datatype="html"> | 1282 | <trans-unit id="7808756054397155068" datatype="html"> |
1282 | <source>Reset</source> | 1283 | <source>Reset</source> |
1283 | <target state="new">Reset</target> | 1284 | <target state="translated">초기화</target> |
1284 | <note priority="1" from="description">Password reset button</note> | 1285 | <note priority="1" from="description">Password reset button</note> |
1285 | 1286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">130</context></context-group> | |
1286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> | 1287 | </trans-unit> |
1287 | |||
1288 | <trans-unit id="4319634264526091601" datatype="html"> | 1288 | <trans-unit id="4319634264526091601" datatype="html"> |
1289 | <source>on this instance</source> | 1289 | <source>on this instance</source> |
1290 | <target state="new">on this instance</target> | 1290 | <target state="translated">ì´ ì¸ìŠ¤í„´ìŠ¤ì—ì„œ</target> |
1291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group> | 1291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group> |
1292 | </trans-unit> | 1292 | </trans-unit> |
1293 | <trans-unit id="761579517995454927" datatype="html"> | 1293 | <trans-unit id="761579517995454927" datatype="html"> |
1294 | <source>on the vidiverse</source> | 1294 | <source>on the vidiverse</source> |
1295 | <target state="new">on the vidiverse</target> | 1295 | <target state="translated">ì˜ìƒìš°ì£¼ì—ì„œ</target> |
1296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | 1296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> |
1297 | </trans-unit><trans-unit id="8434369348784683733" datatype="html"> | 1297 | </trans-unit> |
1298 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source><target state="new">for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 1298 | <trans-unit id="8434369348784683733" datatype="html"> |
1299 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | ||
1300 | <target state="new">for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | ||
1299 | <context-group purpose="location"> | 1301 | <context-group purpose="location"> |
1300 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1302 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1301 | <context context-type="linenumber">10</context> | 1303 | <context context-type="linenumber">10</context> |
@@ -1306,8 +1308,8 @@ The link will expire within 1 hour.</target> | |||
1306 | <target> | 1308 | <target> |
1307 | 암호 ìž¬ì„¤ì • | 1309 | 암호 ìž¬ì„¤ì • |
1308 | </target> | 1310 | </target> |
1309 | 1311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">2</context></context-group> | |
1310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 1312 | </trans-unit> |
1311 | <trans-unit id="3782563238994348625"> | 1313 | <trans-unit id="3782563238994348625"> |
1312 | <source>Confirm password</source> | 1314 | <source>Confirm password</source> |
1313 | <target>암호 다시 ìž…ë ¥</target> | 1315 | <target>암호 다시 ìž…ë ¥</target> |
@@ -1325,201 +1327,198 @@ The link will expire within 1 hour.</target> | |||
1325 | </trans-unit> | 1327 | </trans-unit> |
1326 | <trans-unit id="8890553633144307762" datatype="html"> | 1328 | <trans-unit id="8890553633144307762" datatype="html"> |
1327 | <source>Back</source> | 1329 | <source>Back</source> |
1328 | <target state="new">Back</target> | 1330 | <target state="translated">ì´ì „ 단계</target> |
1329 | |||
1330 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> | 1331 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> |
1331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">42</context></context-group> |
1333 | </trans-unit> | ||
1332 | <trans-unit id="3885497195825665706" datatype="html"> | 1334 | <trans-unit id="3885497195825665706" datatype="html"> |
1333 | <source>Next</source> | 1335 | <source>Next</source> |
1334 | <target state="new">Next</target> | 1336 | <target state="translated">ë‹¤ìŒ ë‹¨ê³„</target> |
1335 | |||
1336 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> | 1337 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> |
1337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 1338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">43</context></context-group> |
1339 | </trans-unit> | ||
1338 | <trans-unit id="5018804994794983050" datatype="html"> | 1340 | <trans-unit id="5018804994794983050" datatype="html"> |
1339 | <source>Signup</source> | 1341 | <source>Signup</source> |
1340 | <target state="new">Signup</target> | 1342 | <target state="translated">회ì›ê°€ìž…</target> |
1341 | |||
1342 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1343 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 1344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">75</context></context-group> |
1344 | 1345 | </trans-unit> | |
1345 | <trans-unit id="5340005218109333045" datatype="html"> | 1346 | <trans-unit id="5340005218109333045" datatype="html"> |
1346 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1347 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1347 | <target state="new"> | 1348 | <target state="new"> |
1348 | Filters | 1349 | Filters |
1349 | 1350 | ||
1350 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 1351 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
1351 | <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> | 1352 | <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> |
1352 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 1353 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
1353 | </target> | 1354 | </target> |
1354 | 1355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">18</context></context-group> | |
1355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 1356 | </trans-unit> |
1356 | <trans-unit id="2236371857137398396"> | 1357 | <trans-unit id="2236371857137398396"> |
1357 | <source>No results found</source> | 1358 | <source>No results found</source> |
1358 | <target> | 1359 | <target> |
1359 | 결과가 없습니다 | 1360 | 결과가 없습니다 |
1360 | </target> | 1361 | </target> |
1361 | 1362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">32</context></context-group> | |
1362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 1363 | </trans-unit> |
1363 | |||
1364 | <trans-unit id="1516969129397662377" datatype="html"> | 1364 | <trans-unit id="1516969129397662377" datatype="html"> |
1365 | <source>Welcome to PeerTube, dear administrator!</source> | 1365 | <source>Welcome to PeerTube, dear administrator!</source> |
1366 | <target state="new">Welcome to PeerTube, dear administrator!</target> | 1366 | <target state="translated">관리ìžë‹˜, PeerTubeì— ì˜¤ì‹ ê²ƒì„ í™˜ì˜í•©ë‹ˆë‹¤!</target> |
1367 | 1367 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
1368 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1368 | </trans-unit> |
1369 | <trans-unit id="807030720531713957" datatype="html"> | 1369 | <trans-unit id="807030720531713957" datatype="html"> |
1370 | <source>CLI documentation</source> | 1370 | <source>CLI documentation</source> |
1371 | <target state="new">CLI | 1371 | <target state="translated">CLI 문서</target> |
1372 | documentation</target> | 1372 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group> |
1373 | 1373 | </trans-unit> | |
1374 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | ||
1375 | <trans-unit id="199127249622290422" datatype="html"> | 1374 | <trans-unit id="199127249622290422" datatype="html"> |
1376 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1375 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1377 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1376 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> |
1378 | 1377 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group> | |
1379 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 1378 | </trans-unit> |
1380 | <trans-unit id="249453844439446209" datatype="html"> | 1379 | <trans-unit id="249453844439446209" datatype="html"> |
1381 | <source>Administer documentation</source> | 1380 | <source>Administer documentation</source> |
1382 | <target state="new">Administer | 1381 | <target state="translated">관리ìžìš© 문서</target> |
1383 | documentation</target> | 1382 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group> |
1384 | 1383 | </trans-unit> | |
1385 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | ||
1386 | <trans-unit id="5910950876330656326" datatype="html"> | 1384 | <trans-unit id="5910950876330656326" datatype="html"> |
1387 | <source>Managing users, following other instances, dealing with spammers...</source> | 1385 | <source>Managing users, following other instances, dealing with spammers...</source> |
1388 | <target state="new">Managing users, following other instances, dealing with spammers...</target> | 1386 | <target state="new">Managing users, following other instances, dealing with spammers...</target> |
1389 | 1387 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">22</context></context-group> | |
1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 1388 | </trans-unit> |
1391 | <trans-unit id="879127294610588497" datatype="html"> | 1389 | <trans-unit id="879127294610588497" datatype="html"> |
1392 | <source>Use documentation</source> | 1390 | <source>Use documentation</source> |
1393 | <target state="new">Use | 1391 | <target state="new">Use |
1394 | documentation</target> | 1392 | documentation</target> |
1395 | 1393 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
1396 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1394 | </trans-unit> |
1397 | <trans-unit id="3848077896245199337" datatype="html"> | 1395 | <trans-unit id="3848077896245199337" datatype="html"> |
1398 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1396 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1399 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> | 1397 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> |
1400 | 1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">29</context></context-group> | |
1401 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1399 | </trans-unit> |
1402 | <trans-unit id="6284442506490785579" datatype="html"> | 1400 | <trans-unit id="6284442506490785579" datatype="html"> |
1403 | <source>Useful links</source> | 1401 | <source>Useful links</source> |
1404 | <target state="new">Useful links</target> | 1402 | <target state="translated">ìœ ìš©í•œ ë§í¬</target> |
1405 | 1403 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">39</context></context-group> | |
1406 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1404 | </trans-unit> |
1407 | <trans-unit id="5170617864166788170" datatype="html"> | 1405 | <trans-unit id="5170617864166788170" datatype="html"> |
1408 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1406 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1409 | <target state="new">Official PeerTube website (news, support, contribute...): | 1407 | <target state="new">Official PeerTube website (news, support, contribute...): |
1410 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org | 1408 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org |
1411 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1409 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
1412 | </target> | 1410 | </target> |
1413 | 1411 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group> | |
1414 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1412 | </trans-unit> |
1415 | <trans-unit id="4614992717645869756" datatype="html"> | 1413 | <trans-unit id="4614992717645869756" datatype="html"> |
1416 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1414 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1417 | <target state="new">Put your instance on the public PeerTube index: | 1415 | <target state="new">Put your instance on the public PeerTube index: |
1418 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances | 1416 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances |
1419 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1417 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
1420 | </target> | 1418 | </target> |
1421 | 1419 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group> | |
1422 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 1420 | </trans-unit> |
1423 | <trans-unit id="2081626998027585315" datatype="html"> | 1421 | <trans-unit id="2081626998027585315" datatype="html"> |
1424 | <source>It's time to configure your instance!</source> | 1422 | <source>It's time to configure your instance!</source> |
1425 | <target state="new">It's time to configure your instance!</target> | 1423 | <target state="translated">ì´ì œ ì´ ì¸ìŠ¤í„´ìŠ¤ë¥¼ ì„¤ì •í• ë•Œê°€ ë˜ì—ˆìŠµë‹ˆë‹¤!</target> |
1426 | 1424 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">55</context></context-group> | |
1427 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1425 | </trans-unit> |
1428 | <trans-unit id="5083058563861587027" datatype="html"> | 1426 | <trans-unit id="5083058563861587027" datatype="html"> |
1429 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> | 1427 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> |
1430 | <target state="new"> | 1428 | <target state="new"> |
1431 | Choosing your | 1429 | Choosing your |
1432 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance name | 1430 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance name |
1433 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, | 1431 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, |
1434 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>setting up a description | 1432 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>setting up a description |
1435 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, specifying | 1433 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, specifying |
1436 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are | 1434 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are |
1437 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, | 1435 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, |
1438 | why | 1436 | why |
1439 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>you created your instance | 1437 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>you created your instance |
1440 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and | 1438 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and |
1441 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>how long | 1439 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>how long |
1442 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> you plan to | 1440 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> you plan to |
1443 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>maintain your it | 1441 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>maintain your it |
1444 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | 1442 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> |
1445 | is very important for visitors to understand on what type of instance they are. | 1443 | is very important for visitors to understand on what type of instance they are. |
1446 | 1444 | ||
1447 | </target> | 1445 | </target> |
1448 | 1446 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">57</context></context-group> | |
1449 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 1447 | </trans-unit> |
1450 | <trans-unit id="5329436244765769292" datatype="html"> | 1448 | <trans-unit id="5329436244765769292" datatype="html"> |
1451 | <source>If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </source> | 1449 | <source>If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </source> |
1452 | <target state="new"> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </target> | 1450 | <target state="new"> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </target> |
1453 | 1451 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">63</context></context-group> | |
1454 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 1452 | </trans-unit> |
1455 | <trans-unit id="5704345824323933019" datatype="html"> | 1453 | <trans-unit id="5704345824323933019" datatype="html"> |
1456 | <source>Remind me later</source> | 1454 | <source>Remind me later</source> |
1457 | <target state="new">Remind me later</target> | 1455 | <target state="translated">ë‚˜ì¤‘ì— ì•Œë¦¬ê¸°</target> |
1458 | 1456 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group> | |
1459 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 1457 | </trans-unit> |
1460 | <source> Set up </source><target state="new"> Set up </target> | 1458 | <trans-unit id="7997432701743294657" datatype="html"> |
1461 | 1459 | <source>Set up</source> | |
1462 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 1460 | <target state="new"> Set up </target> |
1461 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">34</context></context-group> | ||
1462 | </trans-unit> | ||
1463 | <trans-unit id="9202089339019827574" datatype="html"> | 1463 | <trans-unit id="9202089339019827574" datatype="html"> |
1464 | <source>Configure my instance</source> | 1464 | <source>Configure my instance</source> |
1465 | <target state="new"> | 1465 | <target state="translated">ë‚´ ì¸ìŠ¤í„´ìŠ¤ ì„¤ì •</target> |
1466 | Configure my instance | 1466 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">80</context></context-group> |
1467 | </target> | 1467 | </trans-unit> |
1468 | |||
1469 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | ||
1470 | <trans-unit id="9005121595859995793" datatype="html"> | 1468 | <trans-unit id="9005121595859995793" datatype="html"> |
1471 | <source>Configuration warning!</source> | 1469 | <source>Configuration warning!</source> |
1472 | <target state="new">Configuration warning!</target> | 1470 | <target state="translated">ì„¤ì • ê²½ê³ !</target> |
1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group> | 1471 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
1474 | </trans-unit> | 1472 | </trans-unit> |
1475 | <trans-unit id="8901933019590352016" datatype="html"> | 1473 | <trans-unit id="8901933019590352016" datatype="html"> |
1476 | <source>You enabled user registration on your instance but did not configure the following fields:</source> | 1474 | <source>You enabled user registration on your instance but did not configure the following fields:</source> |
1477 | <target state="new">You enabled user registration on your instance but did not configure the following fields:</target> | 1475 | <target state="translated">ì¸ìŠ¤í„´ìŠ¤ì˜ 회ì›ê°€ìž…ì„ í™œì„±í™”í•˜ì…¨ì§€ë§Œ 다ìŒì˜ í•„ë“œë“¤ì„ ì„¤ì •í•˜ì§€ 않으셨네요:</target> |
1478 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> | 1476 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
1479 | </trans-unit> | 1477 | </trans-unit> |
1480 | <trans-unit id="8948444690892731948" datatype="html"> | 1478 | <trans-unit id="8948444690892731948" datatype="html"> |
1481 | <source>Instance name</source> | 1479 | <source>Instance name</source> |
1482 | <target state="new">Instance name</target> | 1480 | <target state="translated">ì¸ìŠ¤í„´ìŠ¤ ì´ë¦„</target> |
1483 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">13</context></context-group> | 1481 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">13</context></context-group> |
1484 | </trans-unit> | 1482 | </trans-unit> |
1485 | <trans-unit id="966824924873033885" datatype="html"> | 1483 | <trans-unit id="966824924873033885" datatype="html"> |
1486 | <source>Instance short description</source> | 1484 | <source>Instance short description</source> |
1487 | <target state="new">Instance short description</target> | 1485 | <target state="translated">ì§§ì€ ì¸ìŠ¤í„´ìŠ¤ 소개문</target> |
1488 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">14</context></context-group> | 1486 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">14</context></context-group> |
1489 | </trans-unit> | 1487 | </trans-unit> |
1490 | <trans-unit id="1339481669904426442" datatype="html"> | 1488 | <trans-unit id="1339481669904426442" datatype="html"> |
1491 | <source>Who you are</source> | 1489 | <source>Who you are</source> |
1492 | <target state="new">Who you are</target> | 1490 | <target state="translated">ë‹¹ì‹ ì€ ëˆ„êµ¬ì¸ê°€ìš”</target> |
1493 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | 1491 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> |
1494 | </trans-unit> | 1492 | </trans-unit> |
1495 | <trans-unit id="5026256683194518810" datatype="html"> | 1493 | <trans-unit id="5026256683194518810" datatype="html"> |
1496 | <source>How long you plan to maintain your instance</source> | 1494 | <source>How long you plan to maintain your instance</source> |
1497 | <target state="new">How long you plan to maintain your instance</target> | 1495 | <target state="translated">ì´ ì¸ìŠ¤í„´ìŠ¤ë¥¼ 얼마나 오래 ìš´ì˜í•˜ì‹¤ ì˜ˆì •ì´ì‹ 가요</target> |
1498 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">17</context></context-group> | 1496 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">17</context></context-group> |
1499 | </trans-unit><trans-unit id="1909672990242291785" datatype="html"> | 1497 | </trans-unit> |
1500 | <source>How you plan to pay for keeping your instance running</source><target state="new">How you plan to pay for keeping your instance running</target> | 1498 | <trans-unit id="1909672990242291785" datatype="html"> |
1499 | <source>How you plan to pay for keeping your instance running</source> | ||
1500 | <target state="translated">ìš´ì˜ ë¹„ìš©ì„ ì–´ë–»ê²Œ ë§ˆë ¨í•˜ì‹¤ 계íšì´ì‹ 가요</target> | ||
1501 | <context-group purpose="location"> | 1501 | <context-group purpose="location"> |
1502 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 1502 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
1503 | <context context-type="linenumber">18</context> | 1503 | <context context-type="linenumber">18</context> |
1504 | </context-group> | 1504 | </context-group> |
1505 | </trans-unit> | 1505 | </trans-unit> |
1506 | |||
1507 | <trans-unit id="869943508869906576" datatype="html"> | 1506 | <trans-unit id="869943508869906576" datatype="html"> |
1508 | <source>How you will moderate your instance</source> | 1507 | <source>How you will moderate your instance</source> |
1509 | <target state="new">How you will moderate your instance</target> | 1508 | <target state="translated">ì¸ìŠ¤í„´ìŠ¤ë¥¼ 어떻게 중재하실건가요 (중재/관리 방침)</target> |
1510 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">20</context></context-group> | 1509 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">20</context></context-group> |
1511 | </trans-unit> | 1510 | </trans-unit> |
1512 | <trans-unit id="5032335000394561521" datatype="html"> | 1511 | <trans-unit id="5032335000394561521" datatype="html"> |
1513 | <source>Instance terms</source> | 1512 | <source>Instance terms</source> |
1514 | <target state="new">Instance terms</target> | 1513 | <target state="translated">ì¸ìŠ¤í„´ìŠ¤ ì´ìš©ì•½ê´€</target> |
1515 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">21</context></context-group> | 1514 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">21</context></context-group> |
1516 | </trans-unit> | 1515 | </trans-unit> |
1517 | <trans-unit id="4116024528500133384" datatype="html"> | 1516 | <trans-unit id="4116024528500133384" datatype="html"> |
1518 | <source>My settings</source> | 1517 | <source>My settings</source> |
1519 | <target state="new">My settings</target> | 1518 | <target state="translated">ë‚´ ì„¤ì •</target> |
1520 | 1519 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group> | |
1521 | 1520 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
1522 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1521 | </trans-unit> |
1523 | <trans-unit id="1420294365005204590" datatype="html"> | 1522 | <trans-unit id="1420294365005204590" datatype="html"> |
1524 | <source>These settings apply only to your session on this instance.</source> | 1523 | <source>These settings apply only to your session on this instance.</source> |
1525 | <target state="new">These settings apply only to your session on this instance.</target> | 1524 | <target state="new">These settings apply only to your session on this instance.</target> |
@@ -1532,15 +1531,15 @@ The link will expire within 1 hour.</target> | |||
1532 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> | 1531 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> |
1533 | <target state="new"> | 1532 | <target state="new"> |
1534 | Please consider configuring these fields to help people to choose | 1533 | Please consider configuring these fields to help people to choose |
1535 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance | 1534 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance |
1536 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. | 1535 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. |
1537 | Without them, your instance may not be referenced on the | 1536 | Without them, your instance may not be referenced on the |
1538 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website | 1537 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website |
1539 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 1538 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
1540 | 1539 | ||
1541 | </target> | 1540 | </target> |
1542 | 1541 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">24</context></context-group> | |
1543 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 1542 | </trans-unit> |
1544 | <trans-unit id="2728623642717111613" datatype="html"> | 1543 | <trans-unit id="2728623642717111613" datatype="html"> |
1545 | <source>Don't show me this warning anymore</source> | 1544 | <source>Don't show me this warning anymore</source> |
1546 | <target state="new">Don't show me this warning anymore</target> | 1545 | <target state="new">Don't show me this warning anymore</target> |
@@ -1549,21 +1548,22 @@ The link will expire within 1 hour.</target> | |||
1549 | <trans-unit id="7819314041543176992" datatype="html"> | 1548 | <trans-unit id="7819314041543176992" datatype="html"> |
1550 | <source>Close</source> | 1549 | <source>Close</source> |
1551 | <target state="new">Close</target> | 1550 | <target state="new">Close</target> |
1552 | 1551 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
1553 | 1552 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group> | |
1554 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 1553 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">38</context></context-group> |
1554 | </trans-unit> | ||
1555 | <trans-unit id="4853631149357965563" datatype="html"> | 1555 | <trans-unit id="4853631149357965563" datatype="html"> |
1556 | <source>Update live settings</source> | 1556 | <source>Update live settings</source> |
1557 | <target state="new">Update live settings</target> | 1557 | <target state="new">Update live settings</target> |
1558 | 1558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">41</context></context-group> | |
1559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 1559 | </trans-unit> |
1560 | <trans-unit id="6013345175862135505" datatype="html"> | 1560 | <trans-unit id="6013345175862135505" datatype="html"> |
1561 | <source>Configure</source> | 1561 | <source>Configure</source> |
1562 | <target state="new"> | 1562 | <target state="new"> |
1563 | Configure | 1563 | Configure |
1564 | </target> | 1564 | </target> |
1565 | 1565 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">43</context></context-group> | |
1566 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 1566 | </trans-unit> |
1567 | <trans-unit id="742596572641738016"> | 1567 | <trans-unit id="742596572641738016"> |
1568 | <source>Change the language</source> | 1568 | <source>Change the language</source> |
1569 | <target>언어 변경</target> | 1569 | <target>언어 변경</target> |
@@ -1574,126 +1574,119 @@ The link will expire within 1 hour.</target> | |||
1574 | <target> | 1574 | <target> |
1575 | PeerTube 번ì—ì„ ë„와주세요! | 1575 | PeerTube 번ì—ì„ ë„와주세요! |
1576 | </target> | 1576 | </target> |
1577 | 1577 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">8</context></context-group> | |
1578 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1578 | </trans-unit> |
1579 | <trans-unit id="5464118521750361406" datatype="html"> | 1579 | <trans-unit id="5464118521750361406" datatype="html"> |
1580 | <source>Public profile</source> | 1580 | <source>Public profile</source> |
1581 | <target state="new">Public profile</target> | 1581 | <target state="new">Public profile</target> |
1582 | 1582 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">28</context></context-group> | |
1583 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 1583 | </trans-unit> |
1584 | <trans-unit id="7773271640656013365" datatype="html"> | 1584 | <trans-unit id="7773271640656013365" datatype="html"> |
1585 | <source>Interface:</source> | 1585 | <source>Interface:</source> |
1586 | <target state="new">Interface:</target> | 1586 | <target state="new">Interface:</target> |
1587 | 1587 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group> | |
1588 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 1588 | </trans-unit> |
1589 | <trans-unit id="1674139713929545659" datatype="html"> | 1589 | <trans-unit id="1674139713929545659" datatype="html"> |
1590 | <source>Videos:</source> | 1590 | <source>Videos:</source> |
1591 | <target state="new">Videos:</target> | 1591 | <target state="new">Videos:</target> |
1592 | 1592 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group> | |
1593 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 1593 | </trans-unit> |
1594 | <trans-unit id="9156407045661257130" datatype="html"> | 1594 | <trans-unit id="9156407045661257130" datatype="html"> |
1595 | <source>Sensitive:</source> | 1595 | <source>Sensitive:</source> |
1596 | <target state="new">Sensitive:</target> | 1596 | <target state="new">Sensitive:</target> |
1597 | 1597 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group> | |
1598 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1598 | </trans-unit> |
1599 | <trans-unit id="3430483831942247060" datatype="html"> | 1599 | <trans-unit id="3430483831942247060" datatype="html"> |
1600 | <source>Help share videos</source> | 1600 | <source>Help share videos</source> |
1601 | <target state="new">Help share videos</target> | 1601 | <target state="new">Help share videos</target> |
1602 | 1602 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group> | |
1603 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 1603 | </trans-unit> |
1604 | <trans-unit id="7005745151564974365" datatype="html"> | 1604 | <trans-unit id="7005745151564974365" datatype="html"> |
1605 | <source>Keyboard shortcuts</source> | 1605 | <source>Keyboard shortcuts</source> |
1606 | <target state="new">Keyboard shortcuts</target> | 1606 | <target state="new">Keyboard shortcuts</target> |
1607 | 1607 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group> | |
1608 | 1608 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group> | |
1609 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> | 1609 | </trans-unit> |
1610 | <trans-unit id="6307374733149824815" datatype="html"> | 1610 | <trans-unit id="6307374733149824815" datatype="html"> |
1611 | <source>powered by PeerTube - CopyLeft 2015-2021</source> | 1611 | <source>powered by PeerTube - CopyLeft 2015-2021</source> |
1612 | <target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | 1612 | <target state="new">powered by PeerTube - CopyLeft 2015-2021</target> |
1613 | 1613 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">151</context></context-group> | |
1614 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 1614 | </trans-unit> |
1615 | <trans-unit id="7911416166208830577" datatype="html"> | 1615 | <trans-unit id="7911416166208830577" datatype="html"> |
1616 | <source>Help</source> | 1616 | <source>Help</source> |
1617 | <target state="new">Help</target> | 1617 | <target state="new">Help</target> |
1618 | 1618 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group> | |
1619 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 1619 | </trans-unit> |
1620 | <trans-unit id="8378304669563824772" datatype="html"> | 1620 | <trans-unit id="8378304669563824772" datatype="html"> |
1621 | <source>Get help using PeerTube</source> | 1621 | <source>Get help using PeerTube</source> |
1622 | <target state="new">Get help using PeerTube</target> | 1622 | <target state="new">Get help using PeerTube</target> |
1623 | 1623 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group> | |
1624 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 1624 | </trans-unit> |
1625 | <trans-unit id="2497681082724639563" datatype="html"> | 1625 | <trans-unit id="2497681082724639563" datatype="html"> |
1626 | <source>powered by PeerTube</source> | 1626 | <source>powered by PeerTube</source> |
1627 | <target state="new">powered by PeerTube</target> | 1627 | <target state="new">powered by PeerTube</target> |
1628 | 1628 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">152</context></context-group> | |
1629 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 1629 | </trans-unit> |
1630 | <trans-unit id="7507948636555938109"> | 1630 | <trans-unit id="7507948636555938109"> |
1631 | <source>Log out</source> | 1631 | <source>Log out</source> |
1632 | <target>로그아웃</target> | 1632 | <target>로그아웃</target> |
1633 | 1633 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">75</context></context-group> | |
1634 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 1634 | </trans-unit> |
1635 | <trans-unit id="8893390761160292681" datatype="html"> | 1635 | <trans-unit id="8893390761160292681" datatype="html"> |
1636 | <source>My account</source> | 1636 | <source>My account</source> |
1637 | <target state="new">My account</target> | 1637 | <target state="new">My account</target> |
1638 | 1638 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group> | |
1639 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1639 | </trans-unit> |
1640 | <trans-unit id="6371572688505952303" datatype="html"> | 1640 | <trans-unit id="6371572688505952303" datatype="html"> |
1641 | <source>My library</source> | 1641 | <source>My library</source> |
1642 | <target state="new">My library</target> | 1642 | <target state="new">My library</target> |
1643 | 1643 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group> | |
1644 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1644 | </trans-unit> |
1645 | <trans-unit id="2308975396733519902"> | 1645 | <trans-unit id="2308975396733519902"> |
1646 | <source>Create an account</source> | 1646 | <source>Create an account</source> |
1647 | <target>ê³„ì • 만들기</target> | 1647 | <target>ê³„ì • 만들기</target> |
1648 | 1648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">55</context></context-group> | |
1649 | 1649 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group> | |
1650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 1650 | </trans-unit> |
1651 | |||
1652 | |||
1653 | <trans-unit id="3108704604266608109" datatype="html"> | 1651 | <trans-unit id="3108704604266608109" datatype="html"> |
1654 | <source>My video imports</source> | 1652 | <source>My video imports</source> |
1655 | <target state="new">My video imports</target> | 1653 | <target state="new">My video imports</target> |
1656 | 1654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">90</context></context-group> | |
1657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 1655 | </trans-unit> |
1658 | |||
1659 | <trans-unit id="949618577357088829" datatype="html"> | 1656 | <trans-unit id="949618577357088829" datatype="html"> |
1660 | <source>Create a new playlist</source> | 1657 | <source>Create a new playlist</source> |
1661 | <target state="new">Create a new playlist</target> | 1658 | <target state="new">Create a new playlist</target> |
1662 | 1659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
1663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1660 | </trans-unit> |
1664 | |||
1665 | |||
1666 | <trans-unit id="2689878465089314112" datatype="html"> | 1661 | <trans-unit id="2689878465089314112" datatype="html"> |
1667 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1662 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1668 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1663 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
1669 | 1664 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1670 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit> | 1665 | </trans-unit> |
1671 | |||
1672 | |||
1673 | |||
1674 | |||
1675 | <trans-unit id="667372110624203230" datatype="html"> | 1666 | <trans-unit id="667372110624203230" datatype="html"> |
1676 | <source>Import jobs concurrency</source> | 1667 | <source>Import jobs concurrency</source> |
1677 | <target state="new">Import jobs concurrency</target> | 1668 | <target state="new">Import jobs concurrency</target> |
1678 | 1669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">255</context></context-group> | |
1679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit> | 1670 | </trans-unit> |
1680 | <trans-unit id="2184839376696112704" datatype="html"> | 1671 | <trans-unit id="2184839376696112704" datatype="html"> |
1681 | <source>allows to import multiple videos in parallel. âš ï¸ Requires a PeerTube restart.</source> | 1672 | <source>allows to import multiple videos in parallel. âš ï¸ Requires a PeerTube restart.</source> |
1682 | <target state="new">allows to import multiple videos in parallel. âš ï¸ Requires a PeerTube restart.</target> | 1673 | <target state="new">allows to import multiple videos in parallel. âš ï¸ Requires a PeerTube restart.</target> |
1683 | 1674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">256</context></context-group> | |
1684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">256</context></context-group></trans-unit> | 1675 | </trans-unit> |
1685 | <trans-unit id="780513172839038392" datatype="html"> | 1676 | <trans-unit id="780513172839038392" datatype="html"> |
1686 | <source>jobs in parallel</source> | 1677 | <source>jobs in parallel</source> |
1687 | <target state="new">jobs in parallel</target> | 1678 | <target state="new">jobs in parallel</target> |
1688 | 1679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">260</context></context-group> | |
1689 | 1680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">171</context></context-group> | |
1690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">260</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1681 | </trans-unit> |
1691 | <trans-unit id="5997625369044180192" datatype="html"> | 1682 | <trans-unit id="5997625369044180192" datatype="html"> |
1692 | <source>Allow import with HTTP URL (e.g. YouTube)</source> | 1683 | <source>Allow import with HTTP URL (e.g. YouTube)</source> |
1693 | <target state="new">Allow import with HTTP URL (e.g. YouTube)</target> | 1684 | <target state="new">Allow import with HTTP URL (e.g. YouTube)</target> |
1694 | 1685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> | |
1695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group></trans-unit><trans-unit id="2095604754338363597" datatype="html"> | 1686 | </trans-unit> |
1696 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source><target state="new">âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</target> | 1687 | <trans-unit id="2095604754338363597" datatype="html"> |
1688 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> | ||
1689 | <target state="new">âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</target> | ||
1697 | <context-group purpose="location"> | 1690 | <context-group purpose="location"> |
1698 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 1691 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
1699 | <context context-type="linenumber">272</context> | 1692 | <context context-type="linenumber">272</context> |
@@ -1702,27 +1695,26 @@ The link will expire within 1 hour.</target> | |||
1702 | <trans-unit id="7627544798203088407"> | 1695 | <trans-unit id="7627544798203088407"> |
1703 | <source>Discover</source> | 1696 | <source>Discover</source> |
1704 | <target>발견</target> | 1697 | <target>발견</target> |
1705 | 1698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">1</context></context-group> | |
1706 | 1699 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">125</context></context-group> | |
1707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 1700 | </trans-unit> |
1708 | |||
1709 | |||
1710 | <trans-unit id="7844706011418789951"> | 1701 | <trans-unit id="7844706011418789951"> |
1711 | <source>Administration</source> | 1702 | <source>Administration</source> |
1712 | <target>관리</target> | 1703 | <target>관리</target> |
1713 | 1704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">80</context></context-group> | |
1714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1705 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group> |
1706 | </trans-unit> | ||
1715 | <trans-unit id="1726363342938046830"> | 1707 | <trans-unit id="1726363342938046830"> |
1716 | <source>About</source> | 1708 | <source>About</source> |
1717 | <target>ì •ë³´</target> | 1709 | <target>ì •ë³´</target> |
1718 | 1710 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">129</context></context-group> | |
1719 | 1711 | </trans-unit> | |
1720 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">129</context></context-group></trans-unit> | ||
1721 | <trans-unit id="7922989125096435449" datatype="html"> | 1712 | <trans-unit id="7922989125096435449" datatype="html"> |
1722 | <source>Contact</source> | 1713 | <source>Contact</source> |
1723 | <target state="new">Contact</target> | 1714 | <target state="new">Contact</target> |
1724 | 1715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | |
1725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 1716 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">141</context></context-group> |
1717 | </trans-unit> | ||
1726 | <trans-unit id="403762424689874454"> | 1718 | <trans-unit id="403762424689874454"> |
1727 | <source>View your notifications</source> | 1719 | <source>View your notifications</source> |
1728 | <target>알림 보기</target> | 1720 | <target>알림 보기</target> |
@@ -1730,7 +1722,6 @@ The link will expire within 1 hour.</target> | |||
1730 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> | 1722 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> |
1731 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> | 1723 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> |
1732 | </trans-unit> | 1724 | </trans-unit> |
1733 | |||
1734 | <trans-unit id="2333314224059826550" datatype="html"> | 1725 | <trans-unit id="2333314224059826550" datatype="html"> |
1735 | <source>Mark all as read</source> | 1726 | <source>Mark all as read</source> |
1736 | <target state="new">Mark all as read</target> | 1727 | <target state="new">Mark all as read</target> |
@@ -1747,23 +1738,35 @@ The link will expire within 1 hour.</target> | |||
1747 | <source>See all your notifications</source> | 1738 | <source>See all your notifications</source> |
1748 | <target>ëª¨ë“ ì•Œë¦¼ 보기</target> | 1739 | <target>ëª¨ë“ ì•Œë¦¼ 보기</target> |
1749 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1740 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1750 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1741 | </trans-unit> |
1751 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source><target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> | 1742 | <trans-unit id="5108072242786374364" datatype="html"> |
1752 | 1743 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1753 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="8821712929823045567" datatype="html"> | 1744 | <target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> |
1754 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1745 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
1755 | 1746 | </trans-unit> | |
1756 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="7239874680342223476" datatype="html"> | 1747 | <trans-unit id="8821712929823045567" datatype="html"> |
1757 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source><target state="new">Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</target> | 1748 | <source>It's time to set up your account profile!</source> |
1758 | 1749 | <target state="new">It's time to set up your account profile!</target> | |
1759 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="5856432243446401016" datatype="html"> | 1750 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
1760 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1751 | </trans-unit> |
1761 | 1752 | <trans-unit id="7239874680342223476" datatype="html"> | |
1762 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit><trans-unit id="3221645359464920754" datatype="html"> | 1753 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> |
1763 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1754 | <target state="new">Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</target> |
1764 | 1755 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> | |
1765 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="2218100934178971211" datatype="html"> | 1756 | </trans-unit> |
1766 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1757 | <trans-unit id="5856432243446401016" datatype="html"> |
1758 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
1759 | <target state="new">Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
1760 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> | ||
1761 | </trans-unit> | ||
1762 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1763 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
1764 | <target state="new">Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
1765 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | ||
1766 | </trans-unit> | ||
1767 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1768 | <source>Don't show me this anymore</source> | ||
1769 | <target state="new">Don't show me this anymore</target> | ||
1767 | <context-group purpose="location"> | 1770 | <context-group purpose="location"> |
1768 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1771 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1769 | <context context-type="linenumber">23</context> | 1772 | <context context-type="linenumber">23</context> |
@@ -1772,8 +1775,8 @@ The link will expire within 1 hour.</target> | |||
1772 | <trans-unit id="4424964105331349857" datatype="html"> | 1775 | <trans-unit id="4424964105331349857" datatype="html"> |
1773 | <source>I'm a teapot</source> | 1776 | <source>I'm a teapot</source> |
1774 | <target state="new">I'm a teapot</target> | 1777 | <target state="new">I'm a teapot</target> |
1775 | 1778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.ts</context><context context-type="linenumber">27</context></context-group> | |
1776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 1779 | </trans-unit> |
1777 | <trans-unit id="1597262876035959248" datatype="html"> | 1780 | <trans-unit id="1597262876035959248" datatype="html"> |
1778 | <source>That's an error.</source> | 1781 | <source>That's an error.</source> |
1779 | <target state="new">That's an error.</target> | 1782 | <target state="new">That's an error.</target> |
@@ -1781,85 +1784,93 @@ The link will expire within 1 hour.</target> | |||
1781 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1784 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1782 | <context context-type="linenumber">4</context> | 1785 | <context context-type="linenumber">4</context> |
1783 | </context-group> | 1786 | </context-group> |
1784 | </trans-unit><trans-unit id="3343007694071351756" datatype="html"> | 1787 | </trans-unit> |
1785 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source><target state="new">We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | 1788 | <trans-unit id="3343007694071351756" datatype="html"> |
1789 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | ||
1790 | <target state="new">We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | ||
1786 | <context-group purpose="location"> | 1791 | <context-group purpose="location"> |
1787 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1792 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1788 | <context context-type="linenumber">7</context> | 1793 | <context context-type="linenumber">7</context> |
1789 | </context-group> | 1794 | </context-group> |
1790 | </trans-unit><trans-unit id="7366678433039425999" datatype="html"> | 1795 | </trans-unit> |
1791 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source><target state="new">We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | 1796 | <trans-unit id="7366678433039425999" datatype="html"> |
1797 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | ||
1798 | <target state="new">We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | ||
1792 | <context-group purpose="location"> | 1799 | <context-group purpose="location"> |
1793 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1800 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1794 | <context context-type="linenumber">8</context> | 1801 | <context context-type="linenumber">8</context> |
1795 | </context-group> | 1802 | </context-group> |
1796 | </trans-unit> | 1803 | </trans-unit> |
1797 | |||
1798 | <trans-unit id="3522707340816553139" datatype="html"> | 1804 | <trans-unit id="3522707340816553139" datatype="html"> |
1799 | <source>Possible reasons:</source> | 1805 | <source>Possible reasons:</source> |
1800 | <target state="new">Possible reasons:</target> | 1806 | <target state="new">Possible reasons:</target> |
1801 | |||
1802 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> | 1807 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> |
1803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 1808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">12</context></context-group> |
1809 | </trans-unit> | ||
1804 | <trans-unit id="6925335998927745197" datatype="html"> | 1810 | <trans-unit id="6925335998927745197" datatype="html"> |
1805 | <source>You may have used an outdated or broken link</source> | 1811 | <source>You may have used an outdated or broken link</source> |
1806 | <target state="new">You may have used an outdated or broken link</target> | 1812 | <target state="new">You may have used an outdated or broken link</target> |
1807 | 1813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">15</context></context-group> | |
1808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit><trans-unit id="1171455174603388942" datatype="html"> | 1814 | </trans-unit> |
1809 | <source>The video may have been moved or deleted</source><target state="new">The video may have been moved or deleted</target> | 1815 | <trans-unit id="1171455174603388942" datatype="html"> |
1816 | <source>The video may have been moved or deleted</source> | ||
1817 | <target state="new">The video may have been moved or deleted</target> | ||
1810 | <context-group purpose="location"> | 1818 | <context-group purpose="location"> |
1811 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1819 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1812 | <context context-type="linenumber">17</context> | 1820 | <context context-type="linenumber">17</context> |
1813 | </context-group> | 1821 | </context-group> |
1814 | </trans-unit><trans-unit id="2213348264902218064" datatype="html"> | 1822 | </trans-unit> |
1815 | <source>The resource may have been moved or deleted</source><target state="new">The resource may have been moved or deleted</target> | 1823 | <trans-unit id="2213348264902218064" datatype="html"> |
1824 | <source>The resource may have been moved or deleted</source> | ||
1825 | <target state="new">The resource may have been moved or deleted</target> | ||
1816 | <context-group purpose="location"> | 1826 | <context-group purpose="location"> |
1817 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1827 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1818 | <context context-type="linenumber">18</context> | 1828 | <context context-type="linenumber">18</context> |
1819 | </context-group> | 1829 | </context-group> |
1820 | </trans-unit> | 1830 | </trans-unit> |
1821 | |||
1822 | <trans-unit id="3209594685692897380" datatype="html"> | 1831 | <trans-unit id="3209594685692897380" datatype="html"> |
1823 | <source>You may have typed the address or URL incorrectly</source> | 1832 | <source>You may have typed the address or URL incorrectly</source> |
1824 | <target state="new">You may have typed the address or URL incorrectly</target> | 1833 | <target state="new">You may have typed the address or URL incorrectly</target> |
1825 | 1834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">20</context></context-group> | |
1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 1835 | </trans-unit> |
1827 | <trans-unit id="3290262698447971494" datatype="html"> | 1836 | <trans-unit id="3290262698447971494" datatype="html"> |
1828 | <source>You are not authorized here.</source> | 1837 | <source>You are not authorized here.</source> |
1829 | <target state="new">You are not authorized here.</target> | 1838 | <target state="new">You are not authorized here.</target> |
1830 | 1839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">27</context></context-group> | |
1831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit><trans-unit id="6209939621665316894" datatype="html"> | 1840 | </trans-unit> |
1832 | <source>You might need to check your account is allowed by the video or instance owner.</source><target state="new">You might need to check your account is allowed by the video or instance owner.</target> | 1841 | <trans-unit id="6209939621665316894" datatype="html"> |
1842 | <source>You might need to check your account is allowed by the video or instance owner.</source> | ||
1843 | <target state="new">You might need to check your account is allowed by the video or instance owner.</target> | ||
1833 | <context-group purpose="location"> | 1844 | <context-group purpose="location"> |
1834 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1845 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1835 | <context context-type="linenumber">30</context> | 1846 | <context context-type="linenumber">30</context> |
1836 | </context-group> | 1847 | </context-group> |
1837 | </trans-unit><trans-unit id="3543381263966122204" datatype="html"> | 1848 | </trans-unit> |
1838 | <source>You might need to check your account is allowed by the resource or instance owner.</source><target state="new">You might need to check your account is allowed by the resource or instance owner.</target> | 1849 | <trans-unit id="3543381263966122204" datatype="html"> |
1850 | <source>You might need to check your account is allowed by the resource or instance owner.</source> | ||
1851 | <target state="new">You might need to check your account is allowed by the resource or instance owner.</target> | ||
1839 | <context-group purpose="location"> | 1852 | <context-group purpose="location"> |
1840 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1853 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1841 | <context context-type="linenumber">31</context> | 1854 | <context context-type="linenumber">31</context> |
1842 | </context-group> | 1855 | </context-group> |
1843 | </trans-unit> | 1856 | </trans-unit> |
1844 | |||
1845 | <trans-unit id="7231414106228227962" datatype="html"> | 1857 | <trans-unit id="7231414106228227962" datatype="html"> |
1846 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> | 1858 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> |
1847 | <target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> | 1859 | <target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> |
1848 | <note priority="1" from="description">Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request</note> | 1860 | <note priority="1" from="description">Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request</note> |
1849 | 1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">39</context></context-group> | |
1850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1862 | </trans-unit> |
1851 | <trans-unit id="2933819425721221134" datatype="html"> | 1863 | <trans-unit id="2933819425721221134" datatype="html"> |
1852 | <source>Sepia seems to like it.</source> | 1864 | <source>Sepia seems to like it.</source> |
1853 | <target state="new">Sepia seems to like it.</target> | 1865 | <target state="new">Sepia seems to like it.</target> |
1854 | <note priority="1" from="description">This is about Sepia's tea</note> | 1866 | <note priority="1" from="description">This is about Sepia's tea</note> |
1855 | 1867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">42</context></context-group> | |
1856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1868 | </trans-unit> |
1857 | <trans-unit id="2971365540217107489" datatype="html"> | 1869 | <trans-unit id="2971365540217107489" datatype="html"> |
1858 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1870 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1859 | <target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> | 1871 | <target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> |
1860 | 1872 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">61</context></context-group> | |
1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 1873 | </trans-unit> |
1862 | |||
1863 | <trans-unit id="5131854469652959713" datatype="html"> | 1874 | <trans-unit id="5131854469652959713" datatype="html"> |
1864 | <source>GLOBAL SEARCH</source> | 1875 | <source>GLOBAL SEARCH</source> |
1865 | <target state="new">GLOBAL SEARCH</target> | 1876 | <target state="new">GLOBAL SEARCH</target> |
@@ -1876,8 +1887,10 @@ The link will expire within 1 hour.</target> | |||
1876 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> | 1887 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> |
1877 | <target state="new">Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</target> | 1888 | <target state="new">Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</target> |
1878 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group> | 1889 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group> |
1879 | </trans-unit><trans-unit id="2807610143550376912" datatype="html"> | 1890 | </trans-unit> |
1880 | <source>Your query will be matched against video names or descriptions, channel names.</source><target state="new">Your query will be matched against video names or descriptions, channel names.</target> | 1891 | <trans-unit id="2807610143550376912" datatype="html"> |
1892 | <source>Your query will be matched against video names or descriptions, channel names.</source> | ||
1893 | <target state="new">Your query will be matched against video names or descriptions, channel names.</target> | ||
1881 | <context-group purpose="location"> | 1894 | <context-group purpose="location"> |
1882 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 1895 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
1883 | <context context-type="linenumber">37</context> | 1896 | <context context-type="linenumber">37</context> |
@@ -1886,40 +1899,39 @@ The link will expire within 1 hour.</target> | |||
1886 | <trans-unit id="3801957940570333397" datatype="html"> | 1899 | <trans-unit id="3801957940570333397" datatype="html"> |
1887 | <source>ADVANCED SEARCH</source> | 1900 | <source>ADVANCED SEARCH</source> |
1888 | <target state="new">ADVANCED SEARCH</target> | 1901 | <target state="new">ADVANCED SEARCH</target> |
1889 | 1902 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">39</context></context-group> | |
1890 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1903 | </trans-unit> |
1891 | <trans-unit id="3416071273413341159" datatype="html"> | 1904 | <trans-unit id="3416071273413341159" datatype="html"> |
1892 | <source>any instance</source> | 1905 | <source>any instance</source> |
1893 | <target state="new">any instance</target> | 1906 | <target state="new">any instance</target> |
1894 | 1907 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group> | |
1895 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1908 | </trans-unit> |
1896 | <trans-unit id="1764675694412365696" datatype="html"> | 1909 | <trans-unit id="1764675694412365696" datatype="html"> |
1897 | <source>only followed instances</source> | 1910 | <source>only followed instances</source> |
1898 | <target state="new">only followed instances</target> | 1911 | <target state="new">only followed instances</target> |
1899 | 1912 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">43</context></context-group> | |
1900 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 1913 | </trans-unit> |
1901 | <trans-unit id="6462732349450217281" datatype="html"> | 1914 | <trans-unit id="6462732349450217281" datatype="html"> |
1902 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> | 1915 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> |
1903 | <target state="new">Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</target> | 1916 | <target state="new">Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</target> |
1904 | 1917 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group> | |
1905 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 1918 | </trans-unit> |
1906 | <trans-unit id="3710530516408401495" datatype="html"> | 1919 | <trans-unit id="3710530516408401495" datatype="html"> |
1907 | <source>will list the matching channel</source> | 1920 | <source>will list the matching channel</source> |
1908 | <target state="new">will list the matching channel</target> | 1921 | <target state="new">will list the matching channel</target> |
1909 | 1922 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">50</context></context-group> | |
1910 | 1923 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">53</context></context-group> | |
1911 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 1924 | </trans-unit> |
1912 | <trans-unit id="6913541939335935215" datatype="html"> | 1925 | <trans-unit id="6913541939335935215" datatype="html"> |
1913 | <source>will list the matching video</source> | 1926 | <source>will list the matching video</source> |
1914 | <target state="new">will list the matching video</target> | 1927 | <target state="new">will list the matching video</target> |
1915 | 1928 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">56</context></context-group> | |
1916 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 1929 | </trans-unit> |
1917 | |||
1918 | <trans-unit id="8854094932942190741"> | 1930 | <trans-unit id="8854094932942190741"> |
1919 | <source>Search...</source> | 1931 | <source>Search...</source> |
1920 | <target>검색...</target> | 1932 | <target>검색...</target> |
1921 | 1933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group> | |
1922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 1934 | </trans-unit> |
1923 | <trans-unit id="2468689683507870964" datatype="html"> | 1935 | <trans-unit id="2468689683507870964" datatype="html"> |
1924 | <source>In this instance's network</source> | 1936 | <source>In this instance's network</source> |
1925 | <target state="new">In this instance's network</target> | 1937 | <target state="new">In this instance's network</target> |
@@ -1936,7 +1948,8 @@ The link will expire within 1 hour.</target> | |||
1936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">7</context></context-group> | 1948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">7</context></context-group> |
1937 | </trans-unit> | 1949 | </trans-unit> |
1938 | <trans-unit id="4540121094340493564" datatype="html"> | 1950 | <trans-unit id="4540121094340493564" datatype="html"> |
1939 | <source>Display only</source><target state="new">Display only</target> | 1951 | <source>Display only</source> |
1952 | <target state="new">Display only</target> | ||
1940 | <context-group purpose="location"> | 1953 | <context-group purpose="location"> |
1941 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 1954 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
1942 | <context context-type="linenumber">21</context> | 1955 | <context context-type="linenumber">21</context> |
@@ -1945,99 +1958,102 @@ The link will expire within 1 hour.</target> | |||
1945 | <trans-unit id="7970752988844762769"> | 1958 | <trans-unit id="7970752988844762769"> |
1946 | <source>Published date</source> | 1959 | <source>Published date</source> |
1947 | <target>공개 ì¼ì‹œ</target> | 1960 | <target>공개 ì¼ì‹œ</target> |
1948 | 1961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">59</context></context-group> | |
1949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 1962 | </trans-unit> |
1950 | <trans-unit id="5038188980760269298"> | 1963 | <trans-unit id="5038188980760269298"> |
1951 | <source>Original publication year</source> | 1964 | <source>Original publication year</source> |
1952 | <target>ì›ëž˜ 공개 ì¼ì‹œ</target> | 1965 | <target>ì›ëž˜ 공개 ì¼ì‹œ</target> |
1953 | 1966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">73</context></context-group> | |
1954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 1967 | </trans-unit> |
1955 | <trans-unit id="2316758236788716819" datatype="html"> | 1968 | <trans-unit id="2316758236788716819" datatype="html"> |
1956 | <source>After...</source> | 1969 | <source>After...</source> |
1957 | <target state="new">After...</target> | 1970 | <target state="new">After...</target> |
1958 | 1971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">85</context></context-group> | |
1959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 1972 | </trans-unit> |
1960 | <trans-unit id="5418443214217152433" datatype="html"> | 1973 | <trans-unit id="5418443214217152433" datatype="html"> |
1961 | <source>Before...</source> | 1974 | <source>Before...</source> |
1962 | <target state="new">Before...</target> | 1975 | <target state="new">Before...</target> |
1963 | 1976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">95</context></context-group> | |
1964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 1977 | </trans-unit> |
1965 | <trans-unit id="7410432243549869948"> | 1978 | <trans-unit id="7410432243549869948"> |
1966 | <source>Duration</source> | 1979 | <source>Duration</source> |
1967 | <target>ìž¬ìƒ ì‹œê°„</target> | 1980 | <target>ìž¬ìƒ ì‹œê°„</target> |
1968 | 1981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
1969 | 1982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">60</context></context-group> | |
1970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1983 | </trans-unit> |
1971 | <trans-unit id="3589238979642505685"> | 1984 | <trans-unit id="3589238979642505685"> |
1972 | <source>Display sensitive content</source> | 1985 | <source>Display sensitive content</source> |
1973 | <target>민ê°í•œ ë‚´ìš© 표시</target> | 1986 | <target>민ê°í•œ ë‚´ìš© 표시</target> |
1974 | 1987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group> | |
1975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 1988 | </trans-unit> |
1976 | <trans-unit id="2807800733729323332"> | 1989 | <trans-unit id="2807800733729323332"> |
1977 | <source>Yes</source> | 1990 | <source>Yes</source> |
1978 | <target>예</target> | 1991 | <target>예</target> |
1979 | 1992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">48</context></context-group> | |
1980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 1993 | </trans-unit> |
1981 | <trans-unit id="3542042671420335679"> | 1994 | <trans-unit id="3542042671420335679"> |
1982 | <source>No</source> | 1995 | <source>No</source> |
1983 | <target>아니오</target> | 1996 | <target>아니오</target> |
1984 | 1997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">53</context></context-group> | |
1985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 1998 | </trans-unit> |
1986 | <trans-unit id="1806667489382256324"> | 1999 | <trans-unit id="1806667489382256324"> |
1987 | <source>Category</source> | 2000 | <source>Category</source> |
1988 | <target>ì¹´í…Œê³ ë¦¬</target> | 2001 | <target>ì¹´í…Œê³ ë¦¬</target> |
1989 | 2002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
1990 | 2003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">69</context></context-group> | |
1991 | 2004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">25</context></context-group> | |
1992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2005 | </trans-unit> |
1993 | |||
1994 | <trans-unit id="2199290266269383925" datatype="html"> | 2006 | <trans-unit id="2199290266269383925" datatype="html"> |
1995 | <source>Display all categories</source> | 2007 | <source>Display all categories</source> |
1996 | <target state="new">Display all categories</target> | 2008 | <target state="new">Display all categories</target> |
1997 | 2009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">127</context></context-group> | |
1998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> | 2010 | </trans-unit> |
1999 | <trans-unit id="9065795501872450602"> | 2011 | <trans-unit id="9065795501872450602"> |
2000 | <source>Licence</source> | 2012 | <source>Licence</source> |
2001 | <target>ë¼ì´ì„ 스</target> | 2013 | <target>ë¼ì´ì„ 스</target> |
2002 | 2014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
2003 | 2015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">80</context></context-group> | |
2004 | 2016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">34</context></context-group> | |
2005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2017 | </trans-unit> |
2006 | <trans-unit id="4184995865179898060" datatype="html"> | 2018 | <trans-unit id="4184995865179898060" datatype="html"> |
2007 | <source>Display all licenses</source> | 2019 | <source>Display all licenses</source> |
2008 | <target state="new">Display all licenses</target> | 2020 | <target state="new">Display all licenses</target> |
2009 | 2021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">140</context></context-group> | |
2010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 2022 | </trans-unit> |
2011 | <trans-unit id="2826581353496868063"> | 2023 | <trans-unit id="2826581353496868063"> |
2012 | <source>Language</source> | 2024 | <source>Language</source> |
2013 | <target>언어</target> | 2025 | <target>언어</target> |
2014 | 2026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group> | |
2015 | 2027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group> | |
2016 | 2028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">100</context></context-group> | |
2017 | 2029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">43</context></context-group> | |
2018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 2030 | </trans-unit> |
2019 | <trans-unit id="7904142744051432458" datatype="html"> | 2031 | <trans-unit id="7904142744051432458" datatype="html"> |
2020 | <source>Display all languages</source> | 2032 | <source>Display all languages</source> |
2021 | <target state="new">Display all languages</target> | 2033 | <target state="new">Display all languages</target> |
2022 | 2034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group> | |
2023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group></trans-unit> | 2035 | </trans-unit> |
2024 | <trans-unit id="2252476112877289102"> | 2036 | <trans-unit id="2252476112877289102"> |
2025 | <source>All of these tags</source> | 2037 | <source>All of these tags</source> |
2026 | <target>ì´ íƒœê·¸ë“¤ 모ë‘</target> | 2038 | <target>ì´ íƒœê·¸ë“¤ 모ë‘</target> |
2027 | 2039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">162</context></context-group> | |
2028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 2040 | </trans-unit> |
2029 | <trans-unit id="4413784616961145955"> | 2041 | <trans-unit id="4413784616961145955"> |
2030 | <source>One of these tags</source> | 2042 | <source>One of these tags</source> |
2031 | <target>ì´ íƒœê·¸ë“¤ 중 하나</target> | 2043 | <target>ì´ íƒœê·¸ë“¤ 중 하나</target> |
2032 | 2044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | |
2033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit><trans-unit id="5143793904897598509" datatype="html"> | 2045 | </trans-unit> |
2034 | <source>PeerTube instance host</source><target state="new">PeerTube instance host</target> | 2046 | <trans-unit id="5143793904897598509" datatype="html"> |
2047 | <source>PeerTube instance host</source> | ||
2048 | <target state="new">PeerTube instance host</target> | ||
2035 | <context-group purpose="location"> | 2049 | <context-group purpose="location"> |
2036 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 2050 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
2037 | <context context-type="linenumber">178</context> | 2051 | <context context-type="linenumber">178</context> |
2038 | </context-group> | 2052 | </context-group> |
2039 | </trans-unit><trans-unit id="8244789432276387088" datatype="html"> | 2053 | </trans-unit> |
2040 | <source>Result types</source><target state="new">Result types</target> | 2054 | <trans-unit id="8244789432276387088" datatype="html"> |
2055 | <source>Result types</source> | ||
2056 | <target state="new">Result types</target> | ||
2041 | <context-group purpose="location"> | 2057 | <context-group purpose="location"> |
2042 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 2058 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
2043 | <context context-type="linenumber">187</context> | 2059 | <context context-type="linenumber">187</context> |
@@ -2046,25 +2062,37 @@ The link will expire within 1 hour.</target> | |||
2046 | <trans-unit id="283421392567624698" datatype="html"> | 2062 | <trans-unit id="283421392567624698" datatype="html"> |
2047 | <source>Search target</source> | 2063 | <source>Search target</source> |
2048 | <target state="new">Search target</target> | 2064 | <target state="new">Search target</target> |
2049 | 2065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">212</context></context-group> | |
2050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> | 2066 | </trans-unit> |
2051 | <trans-unit id="2489767671380266270" datatype="html"> | 2067 | <trans-unit id="2489767671380266270" datatype="html"> |
2052 | <source>Vidiverse</source> | 2068 | <source>Vidiverse</source> |
2053 | <target state="new">Vidiverse</target> | 2069 | <target state="new">Vidiverse</target> |
2054 | 2070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">222</context></context-group> | |
2055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">222</context></context-group></trans-unit> | 2071 | </trans-unit> |
2056 | <trans-unit id="5478121364779850827" datatype="html"> | 2072 | <trans-unit id="5478121364779850827" datatype="html"> |
2057 | <source>Reset</source> | 2073 | <source>Reset</source> |
2058 | <target state="new"> | 2074 | <target state="new"> |
2059 | Reset | 2075 | Reset |
2060 | </target> | 2076 | </target> |
2061 | 2077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">8</context></context-group> | |
2062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">135</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">148</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">163</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">229</context></context-group></trans-unit> | 2078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">22</context></context-group> |
2079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">41</context></context-group> | ||
2080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">60</context></context-group> | ||
2081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">74</context></context-group> | ||
2082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">109</context></context-group> | ||
2083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">122</context></context-group> | ||
2084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">135</context></context-group> | ||
2085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">148</context></context-group> | ||
2086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">163</context></context-group> | ||
2087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">171</context></context-group> | ||
2088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">188</context></context-group> | ||
2089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">229</context></context-group> | ||
2090 | </trans-unit> | ||
2063 | <trans-unit id="8829497237648100098"> | 2091 | <trans-unit id="8829497237648100098"> |
2064 | <source>Filter</source> | 2092 | <source>Filter</source> |
2065 | <target>í•„í„°</target> | 2093 | <target>í•„í„°</target> |
2066 | 2094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">233</context></context-group> | |
2067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">233</context></context-group></trans-unit> | 2095 | </trans-unit> |
2068 | <trans-unit id="6479885129995567639" datatype="html"> | 2096 | <trans-unit id="6479885129995567639" datatype="html"> |
2069 | <source>Video channels</source> | 2097 | <source>Video channels</source> |
2070 | <target state="new">Video channels</target> | 2098 | <target state="new">Video channels</target> |
@@ -2085,26 +2113,32 @@ The link will expire within 1 hour.</target> | |||
2085 | <target> | 2113 | <target> |
2086 | 기존 ìžë§‰ì„ ì´ ìžë§‰ìœ¼ë¡œ ë®ì–´ì”니다! | 2114 | 기존 ìžë§‰ì„ ì´ ìžë§‰ìœ¼ë¡œ ë®ì–´ì”니다! |
2087 | </target> | 2115 | </target> |
2088 | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">30</context></context-group> | |
2089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 2117 | </trans-unit> |
2090 | <trans-unit id="2752121353049766867"> | 2118 | <trans-unit id="2752121353049766867"> |
2091 | <source>Add this caption</source> | 2119 | <source>Add this caption</source> |
2092 | <target>ì´ ìžë§‰ 추가</target> | 2120 | <target>ì´ ìžë§‰ 추가</target> |
2093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> | 2121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> |
2094 | </trans-unit><trans-unit id="480001148850006323" datatype="html"> | 2122 | </trans-unit> |
2095 | <source>Edit caption</source><target state="new">Edit caption</target> | 2123 | <trans-unit id="480001148850006323" datatype="html"> |
2124 | <source>Edit caption</source> | ||
2125 | <target state="new">Edit caption</target> | ||
2096 | <context-group purpose="location"> | 2126 | <context-group purpose="location"> |
2097 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2127 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2098 | <context context-type="linenumber">5</context> | 2128 | <context context-type="linenumber">5</context> |
2099 | </context-group> | 2129 | </context-group> |
2100 | </trans-unit><trans-unit id="6838559377527923778" datatype="html"> | 2130 | </trans-unit> |
2101 | <source>Caption</source><target state="new">Caption</target> | 2131 | <trans-unit id="6838559377527923778" datatype="html"> |
2132 | <source>Caption</source> | ||
2133 | <target state="new">Caption</target> | ||
2102 | <context-group purpose="location"> | 2134 | <context-group purpose="location"> |
2103 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2135 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2104 | <context context-type="linenumber">10</context> | 2136 | <context context-type="linenumber">10</context> |
2105 | </context-group> | 2137 | </context-group> |
2106 | </trans-unit><trans-unit id="1989971680596153649" datatype="html"> | 2138 | </trans-unit> |
2107 | <source>Edit this caption</source><target state="new">Edit this caption</target> | 2139 | <trans-unit id="1989971680596153649" datatype="html"> |
2140 | <source>Edit this caption</source> | ||
2141 | <target state="new">Edit this caption</target> | ||
2108 | <context-group purpose="location"> | 2142 | <context-group purpose="location"> |
2109 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2143 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2110 | <context context-type="linenumber">31</context> | 2144 | <context context-type="linenumber">31</context> |
@@ -2113,223 +2147,258 @@ The link will expire within 1 hour.</target> | |||
2113 | <trans-unit id="5701618810648052610"> | 2147 | <trans-unit id="5701618810648052610"> |
2114 | <source>Title</source> | 2148 | <source>Title</source> |
2115 | <target>ì œëª©</target> | 2149 | <target>ì œëª©</target> |
2116 | 2150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">17</context></context-group> | |
2117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 2151 | </trans-unit> |
2118 | <trans-unit id="7886570921510760899"> | 2152 | <trans-unit id="7886570921510760899"> |
2119 | <source>Tags</source> | 2153 | <source>Tags</source> |
2120 | <target>태그</target> | 2154 | <target>태그</target> |
2121 | 2155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
2122 | 2156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">52</context></context-group> | |
2123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2157 | </trans-unit> |
2124 | <trans-unit id="354332809647287722" datatype="html"> | 2158 | <trans-unit id="354332809647287722" datatype="html"> |
2125 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> | 2159 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> |
2126 | <target state="new"> | 2160 | <target state="new"> |
2127 | Tags could be used to suggest relevant recommendations. | 2161 | Tags could be used to suggest relevant recommendations. |
2128 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2162 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2129 | There is a maximum of 5 tags. | 2163 | There is a maximum of 5 tags. |
2130 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2164 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2131 | Press | 2165 | Press |
2132 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter | 2166 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter |
2133 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. | 2167 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. |
2134 | 2168 | ||
2135 | </target> | 2169 | </target> |
2136 | 2170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">29</context></context-group> | |
2137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 2171 | </trans-unit> |
2138 | <trans-unit id="3265632123453688399"> | 2172 | <trans-unit id="3265632123453688399"> |
2139 | <source>Enter a new tag</source> | 2173 | <source>Enter a new tag</source> |
2140 | <target>새 태그 ìž…ë ¥</target> | 2174 | <target>새 태그 ìž…ë ¥</target> |
2141 | 2175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-tags.component.ts</context><context context-type="linenumber">19</context></context-group> | |
2142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-tags.component.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 2176 | </trans-unit> |
2143 | <trans-unit id="6179532215548637839" datatype="html"> | 2177 | <trans-unit id="6179532215548637839" datatype="html"> |
2144 | <source>extensions</source> | 2178 | <source>extensions</source> |
2145 | <target state="new">extensions</target> | 2179 | <target state="new">extensions</target> |
2146 | 2180 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts</context><context context-type="linenumber">47</context></context-group> | |
2147 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 2181 | </trans-unit> |
2148 | <trans-unit id="8054921481196967348" datatype="html"> | 2182 | <trans-unit id="8054921481196967348" datatype="html"> |
2149 | <source>This image is too large.</source> | 2183 | <source>This image is too large.</source> |
2150 | <target state="new">This image is too large.</target> | 2184 | <target state="new">This image is too large.</target> |
2151 | 2185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts</context><context context-type="linenumber">55</context></context-group> | |
2152 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="6259523075362402245" datatype="html"> | 2186 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts</context><context context-type="linenumber">52</context></context-group> |
2153 | <source>Upload a new banner</source><target state="new">Upload a new banner</target> | 2187 | </trans-unit> |
2154 | 2188 | <trans-unit id="6259523075362402245" datatype="html"> | |
2155 | 2189 | <source>Upload a new banner</source> | |
2156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit><trans-unit id="1117672957968812680" datatype="html"> | 2190 | <target state="new">Upload a new banner</target> |
2157 | <source>Change your banner</source><target state="new">Change your banner</target> | 2191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">9</context></context-group> |
2158 | 2192 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
2159 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="3394080812181176794" datatype="html"> | 2193 | </trans-unit> |
2160 | <source>Remove banner</source><target state="new">Remove banner</target> | 2194 | <trans-unit id="1117672957968812680" datatype="html"> |
2161 | 2195 | <source>Change your banner</source> | |
2162 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="7306351600905511107" datatype="html"> | 2196 | <target state="new">Change your banner</target> |
2163 | <source>ratio 6/1, recommended size: 1920x317, max size: <x id="PH" equiv-text="getBytes(this.maxBannerSize)"/>, extensions: <x id="PH_1" equiv-text="this.bannerExtensions"/></source><target state="new">ratio 6/1, recommended size: 1920x317, max size: <x id="PH" equiv-text="getBytes(this.maxBannerSize)"/>, extensions: <x id="PH_1" equiv-text="this.bannerExtensions"/></target> | 2197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">18</context></context-group> |
2164 | 2198 | </trans-unit> | |
2165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit><trans-unit id="3220184757632006830" datatype="html"> | 2199 | <trans-unit id="3394080812181176794" datatype="html"> |
2166 | <source>Account avatar</source><target state="new">Account avatar</target> | 2200 | <source>Remove banner</source> |
2167 | 2201 | <target state="new">Remove banner</target> | |
2168 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="1138964882426023395" datatype="html"> | 2202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.html</context><context context-type="linenumber">32</context></context-group> |
2169 | <source>Channel avatar</source><target state="new">Channel avatar</target> | 2203 | </trans-unit> |
2170 | 2204 | <trans-unit id="7306351600905511107" datatype="html"> | |
2171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="1358902062258458923" datatype="html"> | 2205 | <source>ratio 6/1, recommended size: 1920x317, max size: <x id="PH" equiv-text="getBytes(this.maxBannerSize)"/>, extensions: <x id="PH_1" equiv-text="this.bannerExtensions"/></source> |
2172 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source><target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2206 | <target state="new">ratio 6/1, recommended size: 1920x317, max size: <x id="PH" equiv-text="getBytes(this.maxBannerSize)"/>, extensions: <x id="PH_1" equiv-text="this.bannerExtensions"/></target> |
2207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-banner-edit.component.ts</context><context context-type="linenumber">44</context></context-group> | ||
2208 | </trans-unit> | ||
2209 | <trans-unit id="3220184757632006830" datatype="html"> | ||
2210 | <source>Account avatar</source> | ||
2211 | <target state="new">Account avatar</target> | ||
2212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">46</context></context-group> | ||
2213 | </trans-unit> | ||
2214 | <trans-unit id="1138964882426023395" datatype="html"> | ||
2215 | <source>Channel avatar</source> | ||
2216 | <target state="new">Channel avatar</target> | ||
2217 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> | ||
2218 | </trans-unit> | ||
2219 | <trans-unit id="1358902062258458923" datatype="html"> | ||
2220 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | ||
2221 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | ||
2173 | <context-group purpose="location"> | 2222 | <context-group purpose="location"> |
2174 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> | 2223 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> |
2175 | <context context-type="linenumber">2</context> | 2224 | <context context-type="linenumber">2</context> |
2176 | </context-group> | 2225 | </context-group> |
2177 | </trans-unit><trans-unit id="7976591803735140601" datatype="html"> | 2226 | </trans-unit> |
2178 | <source>Latest published video</source><target state="new">Latest published video</target> | 2227 | <trans-unit id="7976591803735140601" datatype="html"> |
2228 | <source>Latest published video</source> | ||
2229 | <target state="new">Latest published video</target> | ||
2179 | <context-group purpose="location"> | 2230 | <context-group purpose="location"> |
2180 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 2231 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
2181 | <context context-type="linenumber">24</context> | 2232 | <context context-type="linenumber">24</context> |
2182 | </context-group> | 2233 | </context-group> |
2183 | </trans-unit><trans-unit id="283609029522452529" datatype="html"> | 2234 | </trans-unit> |
2184 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source><target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | 2235 | <trans-unit id="283609029522452529" datatype="html"> |
2236 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2237 | <target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2185 | <context-group purpose="location"> | 2238 | <context-group purpose="location"> |
2186 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 2239 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
2187 | <context context-type="linenumber">57</context> | 2240 | <context context-type="linenumber">57</context> |
2188 | </context-group> | 2241 | </context-group> |
2189 | </trans-unit><trans-unit id="3059355667050002541" datatype="html"> | 2242 | </trans-unit> |
2190 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source><target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | 2243 | <trans-unit id="3059355667050002541" datatype="html"> |
2244 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2245 | <target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2191 | <context-group purpose="location"> | 2246 | <context-group purpose="location"> |
2192 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 2247 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
2193 | <context context-type="linenumber">47</context> | 2248 | <context context-type="linenumber">47</context> |
2194 | </context-group> | 2249 | </context-group> |
2195 | </trans-unit><trans-unit id="863691161959989717" datatype="html"> | 2250 | </trans-unit> |
2196 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source><target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> | 2251 | <trans-unit id="863691161959989717" datatype="html"> |
2197 | 2252 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | |
2198 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="1247256698916587400" datatype="html"> | 2253 | <target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> |
2199 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source><target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | 2254 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context><context context-type="linenumber">60</context></context-group> |
2255 | </trans-unit> | ||
2256 | <trans-unit id="1247256698916587400" datatype="html"> | ||
2257 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | ||
2258 | <target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | ||
2200 | <context-group purpose="location"> | 2259 | <context-group purpose="location"> |
2201 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 2260 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> |
2202 | <context context-type="linenumber">77</context> | 2261 | <context context-type="linenumber">77</context> |
2203 | </context-group> | 2262 | </context-group> |
2204 | </trans-unit><trans-unit id="1460134385691851101" datatype="html"> | 2263 | </trans-unit> |
2205 | <source>Advanced filters</source><target state="new">Advanced filters</target> | 2264 | <trans-unit id="1460134385691851101" datatype="html"> |
2206 | 2265 | <source>Advanced filters</source> | |
2207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 2266 | <target state="new">Advanced filters</target> |
2267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group> | ||
2268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group> | ||
2269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">41</context></context-group> | ||
2270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group> | ||
2271 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group> | ||
2272 | </trans-unit> | ||
2208 | <trans-unit id="2504502765849142619" datatype="html"> | 2273 | <trans-unit id="2504502765849142619" datatype="html"> |
2209 | <source>No items found</source> | 2274 | <source>No items found</source> |
2210 | <target state="new">No items found</target> | 2275 | <target state="new">No items found</target> |
2211 | 2276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.html</context><context context-type="linenumber">15</context></context-group> | |
2212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 2277 | </trans-unit> |
2213 | <trans-unit id="4902817035128594900"> | 2278 | <trans-unit id="4902817035128594900"> |
2214 | <source>Description</source> | 2279 | <source>Description</source> |
2215 | <target>설명</target> | 2280 | <target>설명</target> |
2216 | 2281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group> | |
2217 | 2282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">35</context></context-group> | |
2218 | 2283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
2219 | 2284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
2220 | 2285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group> | |
2221 | 2286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
2222 | 2287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
2223 | 2288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
2224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 2289 | </trans-unit> |
2225 | <trans-unit id="8740951153302736329" datatype="html"> | 2290 | <trans-unit id="8740951153302736329" datatype="html"> |
2226 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> | 2291 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> |
2227 | <target state="new"> | 2292 | <target state="new"> |
2228 | Video descriptions are truncated by default and require manual action to expand them. | 2293 | Video descriptions are truncated by default and require manual action to expand them. |
2229 | </target> | 2294 | </target> |
2230 | 2295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> | |
2231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit><trans-unit id="2090254132451149776" datatype="html"> | 2296 | </trans-unit> |
2232 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source><target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </target> | 2297 | <trans-unit id="2090254132451149776" datatype="html"> |
2233 | 2298 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> | |
2234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2299 | <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </target> |
2235 | 2300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
2301 | </trans-unit> | ||
2236 | <trans-unit id="5462361983940693567"> | 2302 | <trans-unit id="5462361983940693567"> |
2237 | <source>Channel</source> | 2303 | <source>Channel</source> |
2238 | <target>채ë„</target> | 2304 | <target>채ë„</target> |
2239 | 2305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group> | |
2240 | 2306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group> | |
2241 | 2307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group> | |
2242 | 2308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">64</context></context-group> | |
2243 | 2309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group> | |
2244 | 2310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group> | |
2245 | 2311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group> | |
2246 | 2312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">19</context></context-group> | |
2247 | 2313 | </trans-unit> | |
2248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | ||
2249 | |||
2250 | <trans-unit id="2806917038528218276" datatype="html"> | 2314 | <trans-unit id="2806917038528218276" datatype="html"> |
2251 | <source>FAQ</source> | 2315 | <source>FAQ</source> |
2252 | <target state="new">FAQ</target> | 2316 | <target state="new">FAQ</target> |
2253 | 2317 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group> | |
2254 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 2318 | </trans-unit> |
2255 | <trans-unit id="3620232640697554352" datatype="html"> | 2319 | <trans-unit id="3620232640697554352" datatype="html"> |
2256 | <source>Frequently asked questions about PeerTube</source> | 2320 | <source>Frequently asked questions about PeerTube</source> |
2257 | <target state="new">Frequently asked questions about PeerTube</target> | 2321 | <target state="new">Frequently asked questions about PeerTube</target> |
2258 | 2322 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group> | |
2259 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 2323 | </trans-unit> |
2260 | <trans-unit id="8942351587754185907" datatype="html"> | 2324 | <trans-unit id="8942351587754185907" datatype="html"> |
2261 | <source>API</source> | 2325 | <source>API</source> |
2262 | <target state="new">API</target> | 2326 | <target state="new">API</target> |
2263 | 2327 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group> | |
2264 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 2328 | </trans-unit> |
2265 | <trans-unit id="3722967224215437913" datatype="html"> | 2329 | <trans-unit id="3722967224215437913" datatype="html"> |
2266 | <source>API documentation</source> | 2330 | <source>API documentation</source> |
2267 | <target state="new">API documentation</target> | 2331 | <target state="new">API documentation</target> |
2268 | 2332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group> | |
2269 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 2333 | </trans-unit> |
2270 | <trans-unit id="9012879216268259096" datatype="html"> | 2334 | <trans-unit id="9012879216268259096" datatype="html"> |
2271 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 2335 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
2272 | <target state="new">Schedule publication ( | 2336 | <target state="new">Schedule publication ( |
2273 | <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>) | 2337 | <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>) |
2274 | </target> | 2338 | </target> |
2275 | 2339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">123</context></context-group> | |
2276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">123</context></context-group></trans-unit> | 2340 | </trans-unit> |
2277 | <trans-unit id="9155449485123349070" datatype="html"> | 2341 | <trans-unit id="9155449485123349070" datatype="html"> |
2278 | <source>Contains sensitive content</source> | 2342 | <source>Contains sensitive content</source> |
2279 | <target state="new">Contains sensitive content</target> | 2343 | <target state="new">Contains sensitive content</target> |
2280 | 2344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">137</context></context-group> | |
2281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit><trans-unit id="4850841867094321899" datatype="html"> | 2345 | </trans-unit> |
2282 | <source>Some instances hide videos containing mature or explicit content by default.</source><target state="new">Some instances hide videos containing mature or explicit content by default.</target> | 2346 | <trans-unit id="4850841867094321899" datatype="html"> |
2283 | 2347 | <source>Some instances hide videos containing mature or explicit content by default.</source> | |
2284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 2348 | <target state="new">Some instances hide videos containing mature or explicit content by default.</target> |
2285 | 2349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group> | |
2350 | </trans-unit> | ||
2286 | <trans-unit id="4895908242997839943" datatype="html"> | 2351 | <trans-unit id="4895908242997839943" datatype="html"> |
2287 | <source>Publish after transcoding</source> | 2352 | <source>Publish after transcoding</source> |
2288 | <target state="new">Publish after transcoding</target> | 2353 | <target state="new">Publish after transcoding</target> |
2289 | 2354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">147</context></context-group> | |
2290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> | 2355 | </trans-unit> |
2291 | <trans-unit id="5596242684708779591" datatype="html"> | 2356 | <trans-unit id="5596242684708779591" datatype="html"> |
2292 | <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> | 2357 | <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> |
2293 | <target state="new">If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</target> | 2358 | <target state="new">If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</target> |
2294 | 2359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
2295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 2360 | </trans-unit> |
2296 | <trans-unit id="5984574397847510001" datatype="html"> | 2361 | <trans-unit id="5984574397847510001" datatype="html"> |
2297 | <source>Basic info</source> | 2362 | <source>Basic info</source> |
2298 | <target state="new">Basic info</target> | 2363 | <target state="new">Basic info</target> |
2299 | 2364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
2300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2365 | </trans-unit> |
2301 | <trans-unit id="2142169012597585513" datatype="html"> | 2366 | <trans-unit id="2142169012597585513" datatype="html"> |
2302 | <source>Add another caption</source> | 2367 | <source>Add another caption</source> |
2303 | <target state="new">Add another caption</target> | 2368 | <target state="new">Add another caption</target> |
2304 | 2369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">174</context></context-group> | |
2305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> | 2370 | </trans-unit> |
2306 | <trans-unit id="4525569337497033381" datatype="html"> | 2371 | <trans-unit id="4525569337497033381" datatype="html"> |
2307 | <source>See the subtitle file</source> | 2372 | <source>See the subtitle file</source> |
2308 | <target state="new">See the subtitle file</target> | 2373 | <target state="new">See the subtitle file</target> |
2309 | 2374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> | |
2310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group></trans-unit> | 2375 | </trans-unit> |
2311 | <trans-unit id="5600963353867835532" datatype="html"> | 2376 | <trans-unit id="5600963353867835532" datatype="html"> |
2312 | <source>Already uploaded ✔</source> | 2377 | <source>Already uploaded ✔</source> |
2313 | <target state="new">Already uploaded ✔</target> | 2378 | <target state="new">Already uploaded ✔</target> |
2314 | 2379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> | |
2315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit> | 2380 | </trans-unit> |
2316 | <trans-unit id="73284819990858102" datatype="html"> | 2381 | <trans-unit id="73284819990858102" datatype="html"> |
2317 | <source>Will be created on update</source> | 2382 | <source>Will be created on update</source> |
2318 | <target state="new">Will be created on update</target> | 2383 | <target state="new">Will be created on update</target> |
2319 | 2384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">196</context></context-group> | |
2320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">196</context></context-group></trans-unit> | 2385 | </trans-unit> |
2321 | <trans-unit id="7044449271109607418" datatype="html"> | 2386 | <trans-unit id="7044449271109607418" datatype="html"> |
2322 | <source>Cancel create</source> | 2387 | <source>Cancel create</source> |
2323 | <target state="new">Cancel create</target> | 2388 | <target state="new">Cancel create</target> |
2324 | 2389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">198</context></context-group> | |
2325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit><trans-unit id="8541869921865486762" datatype="html"> | 2390 | </trans-unit> |
2326 | <source>Will be edited on update</source><target state="new">Will be edited on update</target> | 2391 | <trans-unit id="8541869921865486762" datatype="html"> |
2392 | <source>Will be edited on update</source> | ||
2393 | <target state="new">Will be edited on update</target> | ||
2327 | <context-group purpose="location"> | 2394 | <context-group purpose="location"> |
2328 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2395 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2329 | <context context-type="linenumber">204</context> | 2396 | <context context-type="linenumber">204</context> |
2330 | </context-group> | 2397 | </context-group> |
2331 | </trans-unit><trans-unit id="4013233634947488312" datatype="html"> | 2398 | </trans-unit> |
2332 | <source>Cancel edition</source><target state="new">Cancel edition</target> | 2399 | <trans-unit id="4013233634947488312" datatype="html"> |
2400 | <source>Cancel edition</source> | ||
2401 | <target state="new">Cancel edition</target> | ||
2333 | <context-group purpose="location"> | 2402 | <context-group purpose="location"> |
2334 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2403 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2335 | <context context-type="linenumber">206</context> | 2404 | <context context-type="linenumber">206</context> |
@@ -2338,130 +2407,141 @@ The link will expire within 1 hour.</target> | |||
2338 | <trans-unit id="7879454016898626211" datatype="html"> | 2407 | <trans-unit id="7879454016898626211" datatype="html"> |
2339 | <source>Will be deleted on update</source> | 2408 | <source>Will be deleted on update</source> |
2340 | <target state="new">Will be deleted on update</target> | 2409 | <target state="new">Will be deleted on update</target> |
2341 | 2410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">212</context></context-group> | |
2342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> | 2411 | </trans-unit> |
2343 | <trans-unit id="305832955565133216" datatype="html"> | 2412 | <trans-unit id="305832955565133216" datatype="html"> |
2344 | <source>Cancel deletion</source> | 2413 | <source>Cancel deletion</source> |
2345 | <target state="new">Cancel deletion</target> | 2414 | <target state="new">Cancel deletion</target> |
2346 | 2415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">214</context></context-group> | |
2347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">214</context></context-group></trans-unit> | 2416 | </trans-unit> |
2348 | <trans-unit id="360396717319152766" datatype="html"> | 2417 | <trans-unit id="360396717319152766" datatype="html"> |
2349 | <source>No captions for now.</source> | 2418 | <source>No captions for now.</source> |
2350 | <target state="new"> | 2419 | <target state="new"> |
2351 | No captions for now. | 2420 | No captions for now. |
2352 | </target> | 2421 | </target> |
2353 | 2422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
2354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> | 2423 | </trans-unit> |
2355 | <trans-unit id="8508836953540308271" datatype="html"> | 2424 | <trans-unit id="8508836953540308271" datatype="html"> |
2356 | <source>Live settings</source> | 2425 | <source>Live settings</source> |
2357 | <target state="new">Live settings</target> | 2426 | <target state="new">Live settings</target> |
2358 | 2427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">235</context></context-group> | |
2359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">235</context></context-group></trans-unit> | 2428 | </trans-unit> |
2360 | |||
2361 | |||
2362 | <trans-unit id="1212376766715456139" datatype="html"> | 2429 | <trans-unit id="1212376766715456139" datatype="html"> |
2363 | <source>âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</source> | 2430 | <source>âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</source> |
2364 | <target state="new">âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</target> | 2431 | <target state="new">âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</target> |
2365 | 2432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">288</context></context-group> | |
2366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">288</context></context-group></trans-unit> | 2433 | </trans-unit> |
2367 | <trans-unit id="8891497955962997247" datatype="html"> | 2434 | <trans-unit id="8891497955962997247" datatype="html"> |
2368 | <source>Automatically publish a replay when your live ends</source> | 2435 | <source>Automatically publish a replay when your live ends</source> |
2369 | <target state="new">Automatically publish a replay when your live ends</target> | 2436 | <target state="new">Automatically publish a replay when your live ends</target> |
2370 | 2437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group> | |
2371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group></trans-unit> | 2438 | </trans-unit> |
2372 | |||
2373 | <trans-unit id="1168086599577356916" datatype="html"> | 2439 | <trans-unit id="1168086599577356916" datatype="html"> |
2374 | <source>Video preview</source> | 2440 | <source>Video preview</source> |
2375 | <target state="new">Video preview</target> | 2441 | <target state="new">Video preview</target> |
2376 | 2442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">307</context></context-group> | |
2377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">307</context></context-group></trans-unit> | 2443 | </trans-unit> |
2378 | <trans-unit id="2288513108450439427" datatype="html"> | 2444 | <trans-unit id="2288513108450439427" datatype="html"> |
2379 | <source>Support</source> | 2445 | <source>Support</source> |
2380 | <target state="new">Support</target> | 2446 | <target state="new">Support</target> |
2381 | 2447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group> | |
2382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">316</context></context-group></trans-unit><trans-unit id="1359533927353954373" datatype="html"> | 2448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">316</context></context-group> |
2383 | <source>View account</source><target state="new">View account</target> | 2449 | </trans-unit> |
2384 | 2450 | <trans-unit id="1359533927353954373" datatype="html"> | |
2385 | 2451 | <source>View account</source> | |
2386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="3799746968259478616" datatype="html"> | 2452 | <target state="new">View account</target> |
2387 | <source> View account </source><target state="new"> View account </target> | 2453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">30</context></context-group> |
2388 | 2454 | </trans-unit> | |
2389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="6778225321073009261" datatype="html"> | 2455 | <trans-unit id="3799746968259478616" datatype="html"> |
2390 | <source> View owner account </source><target state="new"> View owner account </target> | 2456 | <source>View account</source> |
2391 | 2457 | <target state="new"> View account </target> | |
2392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="8798391261676185924" datatype="html"> | 2458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">43</context></context-group> |
2393 | <source>VIDEO CHANNEL</source><target state="new">VIDEO CHANNEL</target> | 2459 | </trans-unit> |
2394 | 2460 | <trans-unit id="6778225321073009261" datatype="html"> | |
2395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit><trans-unit id="5121874940679887597" datatype="html"> | 2461 | <source>View owner account</source> |
2396 | <source>Copy channel handle</source><target state="new">Copy channel handle</target> | 2462 | <target state="new"> View owner account </target> |
2397 | 2463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">47</context></context-group> | |
2398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit><trans-unit id="2486917589932345430" datatype="html"> | 2464 | </trans-unit> |
2399 | <source>OWNER ACCOUNT</source><target state="new">OWNER ACCOUNT</target> | 2465 | <trans-unit id="8798391261676185924" datatype="html"> |
2400 | 2466 | <source>VIDEO CHANNEL</source> | |
2401 | 2467 | <target state="new">VIDEO CHANNEL</target> | |
2402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 2468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">57</context></context-group> |
2469 | </trans-unit> | ||
2470 | <trans-unit id="5121874940679887597" datatype="html"> | ||
2471 | <source>Copy channel handle</source> | ||
2472 | <target state="new">Copy channel handle</target> | ||
2473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">68</context></context-group> | ||
2474 | </trans-unit> | ||
2475 | <trans-unit id="2486917589932345430" datatype="html"> | ||
2476 | <source>OWNER ACCOUNT</source> | ||
2477 | <target state="new">OWNER ACCOUNT</target> | ||
2478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | ||
2479 | </trans-unit> | ||
2403 | <trans-unit id="1952020204339597057" datatype="html"> | 2480 | <trans-unit id="1952020204339597057" datatype="html"> |
2404 | <source>Short text to tell people how they can support you (membership platform...).</source> | 2481 | <source>Short text to tell people how they can support you (membership platform...).</source> |
2405 | <target state="new"> | 2482 | <target state="new"> |
2406 | Short text to tell people how they can support you (membership platform...). | 2483 | Short text to tell people how they can support you (membership platform...). |
2407 | </target> | 2484 | </target> |
2408 | 2485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">319</context></context-group> | |
2409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">319</context></context-group></trans-unit> | 2486 | </trans-unit> |
2410 | <trans-unit id="7958716262877895706" datatype="html"> | 2487 | <trans-unit id="7958716262877895706" datatype="html"> |
2411 | <source>Original publication date</source> | 2488 | <source>Original publication date</source> |
2412 | <target state="new">Original publication date</target> | 2489 | <target state="new">Original publication date</target> |
2413 | 2490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">336</context></context-group> | |
2414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">336</context></context-group></trans-unit> | 2491 | </trans-unit> |
2415 | <trans-unit id="50985514722149155" datatype="html"> | 2492 | <trans-unit id="50985514722149155" datatype="html"> |
2416 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> | 2493 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> |
2417 | <target state="new"> | 2494 | <target state="new"> |
2418 | This is the date when the content was originally published (e.g. the release date for a film) | 2495 | This is the date when the content was originally published (e.g. the release date for a film) |
2419 | </target> | 2496 | </target> |
2420 | 2497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">339</context></context-group> | |
2421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">339</context></context-group></trans-unit> | 2498 | </trans-unit> |
2422 | <trans-unit id="1669378369440073270" datatype="html"> | 2499 | <trans-unit id="1669378369440073270" datatype="html"> |
2423 | <source>Plugin settings</source> | 2500 | <source>Plugin settings</source> |
2424 | <target state="new">Plugin settings</target> | 2501 | <target state="new">Plugin settings</target> |
2425 | 2502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">370</context></context-group> | |
2426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">370</context></context-group></trans-unit><trans-unit id="8693603235657020323" datatype="html"> | 2503 | </trans-unit> |
2427 | <source>Other</source><target state="new">Other</target> | 2504 | <trans-unit id="8693603235657020323" datatype="html"> |
2428 | 2505 | <source>Other</source> | |
2429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">190</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 2506 | <target state="new">Other</target> |
2507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">190</context></context-group> | ||
2508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group> | ||
2509 | </trans-unit> | ||
2430 | <trans-unit id="2200003513633568069" datatype="html"> | 2510 | <trans-unit id="2200003513633568069" datatype="html"> |
2431 | <source>Enable video comments</source> | 2511 | <source>Enable video comments</source> |
2432 | <target state="new">Enable video comments</target> | 2512 | <target state="new">Enable video comments</target> |
2433 | 2513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">357</context></context-group> | |
2434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">357</context></context-group></trans-unit> | 2514 | </trans-unit> |
2435 | <trans-unit id="8896564060463626070" datatype="html"> | 2515 | <trans-unit id="8896564060463626070" datatype="html"> |
2436 | <source>Enable download</source> | 2516 | <source>Enable download</source> |
2437 | <target state="new">Enable download</target> | 2517 | <target state="new">Enable download</target> |
2438 | 2518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">362</context></context-group> | |
2439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">362</context></context-group></trans-unit> | 2519 | </trans-unit> |
2440 | <trans-unit id="8821221480638803282" datatype="html"> | 2520 | <trans-unit id="8821221480638803282" datatype="html"> |
2441 | <source>Advanced settings</source> | 2521 | <source>Advanced settings</source> |
2442 | <target state="new">Advanced settings</target> | 2522 | <target state="new">Advanced settings</target> |
2443 | 2523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group> | |
2444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit> | 2524 | </trans-unit> |
2445 | <trans-unit id="2375260419993138758" datatype="html"> | 2525 | <trans-unit id="2375260419993138758" datatype="html"> |
2446 | <source>URL</source> | 2526 | <source>URL</source> |
2447 | <target state="new">URL</target> | 2527 | <target state="new">URL</target> |
2448 | 2528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">6</context></context-group> | |
2449 | 2529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">24</context></context-group> | |
2450 | 2530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">92</context></context-group> | |
2451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 2531 | </trans-unit> |
2452 | <trans-unit id="6760671759540007434" datatype="html"> | 2532 | <trans-unit id="6760671759540007434" datatype="html"> |
2453 | <source>You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </source> | 2533 | <source>You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </source> |
2454 | <target state="new"> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </target> | 2534 | <target state="new"> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. </target> |
2455 | 2535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">10</context></context-group> | |
2456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 2536 | </trans-unit> |
2457 | <trans-unit id="460353452916242022" datatype="html"> | 2537 | <trans-unit id="460353452916242022" datatype="html"> |
2458 | <source>Sorry, but something went wrong</source> | 2538 | <source>Sorry, but something went wrong</source> |
2459 | <target state="new">Sorry, but something went wrong</target> | 2539 | <target state="new">Sorry, but something went wrong</target> |
2460 | 2540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">43</context></context-group> | |
2461 | 2541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">51</context></context-group> | |
2462 | 2542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">44</context></context-group> | |
2463 | 2543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">86</context></context-group> | |
2464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">51</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 2544 | </trans-unit> |
2465 | <trans-unit id="5359075917564707730" datatype="html"> | 2545 | <trans-unit id="5359075917564707730" datatype="html"> |
2466 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> | 2546 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> |
2467 | <target state="new"> | 2547 | <target state="new"> |
@@ -2471,7 +2551,6 @@ The link will expire within 1 hour.</target> | |||
2471 | </target> | 2551 | </target> |
2472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group> | 2552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group> |
2473 | </trans-unit> | 2553 | </trans-unit> |
2474 | |||
2475 | <trans-unit id="6722765664648523978" datatype="html"> | 2554 | <trans-unit id="6722765664648523978" datatype="html"> |
2476 | <source>Select the file to upload</source> | 2555 | <source>Select the file to upload</source> |
2477 | <target state="new">Select the file to upload</target> | 2556 | <target state="new">Select the file to upload</target> |
@@ -2481,20 +2560,24 @@ The link will expire within 1 hour.</target> | |||
2481 | <trans-unit id="9172233176401579786" datatype="html"> | 2560 | <trans-unit id="9172233176401579786" datatype="html"> |
2482 | <source>Scheduled</source> | 2561 | <source>Scheduled</source> |
2483 | <target state="new">Scheduled</target> | 2562 | <target state="new">Scheduled</target> |
2484 | 2563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">209</context></context-group> | |
2485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">209</context></context-group></trans-unit> | 2564 | </trans-unit> |
2486 | <trans-unit id="1435317307066082710" datatype="html"> | 2565 | <trans-unit id="1435317307066082710" datatype="html"> |
2487 | <source>Hide the video until a specific date</source> | 2566 | <source>Hide the video until a specific date</source> |
2488 | <target state="new">Hide the video until a specific date</target> | 2567 | <target state="new">Hide the video until a specific date</target> |
2489 | 2568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">210</context></context-group> | |
2490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit><trans-unit id="1087181129481039628" datatype="html"> | 2569 | </trans-unit> |
2491 | <source>Normal live</source><target state="new">Normal live</target> | 2570 | <trans-unit id="1087181129481039628" datatype="html"> |
2571 | <source>Normal live</source> | ||
2572 | <target state="new">Normal live</target> | ||
2492 | <context-group purpose="location"> | 2573 | <context-group purpose="location"> |
2493 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context> | 2574 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context> |
2494 | <context context-type="linenumber">22</context> | 2575 | <context context-type="linenumber">22</context> |
2495 | </context-group> | 2576 | </context-group> |
2496 | </trans-unit><trans-unit id="3517255641769192386" datatype="html"> | 2577 | </trans-unit> |
2497 | <source>Permanent/recurring live</source><target state="new">Permanent/recurring live</target> | 2578 | <trans-unit id="3517255641769192386" datatype="html"> |
2579 | <source>Permanent/recurring live</source> | ||
2580 | <target state="new">Permanent/recurring live</target> | ||
2498 | <context-group purpose="location"> | 2581 | <context-group purpose="location"> |
2499 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context> | 2582 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context> |
2500 | <context context-type="linenumber">29</context> | 2583 | <context context-type="linenumber">29</context> |
@@ -2503,80 +2586,88 @@ The link will expire within 1 hour.</target> | |||
2503 | <trans-unit id="6148369758871787018" datatype="html"> | 2586 | <trans-unit id="6148369758871787018" datatype="html"> |
2504 | <source>Video background image</source> | 2587 | <source>Video background image</source> |
2505 | <target state="new">Video background image</target> | 2588 | <target state="new">Video background image</target> |
2506 | 2589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">34</context></context-group> | |
2507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2590 | </trans-unit> |
2508 | <trans-unit id="7099631707196015765" datatype="html"> | 2591 | <trans-unit id="7099631707196015765" datatype="html"> |
2509 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> | 2592 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> |
2510 | <target state="new"> | 2593 | <target state="new"> |
2511 | Image that will be merged with your audio file. | 2594 | Image that will be merged with your audio file. |
2512 | 2595 | ||
2513 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2596 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2514 | The chosen image will be definitive and cannot be modified. | 2597 | The chosen image will be definitive and cannot be modified. |
2515 | 2598 | ||
2516 | </target> | 2599 | </target> |
2517 | 2600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">36</context></context-group> | |
2518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2601 | </trans-unit> |
2519 | <trans-unit id="4626927731329688072" datatype="html"> | 2602 | <trans-unit id="4626927731329688072" datatype="html"> |
2520 | <source>Total video uploaded</source> | 2603 | <source>Total video uploaded</source> |
2521 | <target state="new">Total video uploaded</target> | 2604 | <target state="new">Total video uploaded</target> |
2522 | 2605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">63</context></context-group> | |
2523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 2606 | </trans-unit> |
2524 | <trans-unit id="1185207825965405436" datatype="html"> | 2607 | <trans-unit id="1185207825965405436" datatype="html"> |
2525 | <source>Processing…</source> | 2608 | <source>Processing…</source> |
2526 | <target state="new">Processing…</target> | 2609 | <target state="new">Processing…</target> |
2527 | 2610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">65</context></context-group> | |
2528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 2611 | </trans-unit> |
2529 | <trans-unit id="7934833136974560675" datatype="html"> | 2612 | <trans-unit id="7934833136974560675" datatype="html"> |
2530 | <source>Retry</source> | 2613 | <source>Retry</source> |
2531 | <target state="new">Retry</target> | 2614 | <target state="new">Retry</target> |
2532 | <note priority="1" from="description">Retry failed upload of a video</note> | 2615 | <note priority="1" from="description">Retry failed upload of a video</note> |
2533 | 2616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">80</context></context-group> | |
2534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 2617 | </trans-unit> |
2535 | <trans-unit id="2127094963121208963" datatype="html"> | 2618 | <trans-unit id="2127094963121208963" datatype="html"> |
2536 | <source>Total video quota</source> | 2619 | <source>Total video quota</source> |
2537 | <target state="new">Total video quota</target> | 2620 | <target state="new">Total video quota</target> |
2538 | 2621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">131</context></context-group> | |
2539 | 2622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group> | |
2540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">131</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2623 | </trans-unit> |
2541 | <trans-unit id="1522676094837508187" datatype="html"> | 2624 | <trans-unit id="1522676094837508187" datatype="html"> |
2542 | <source>Congratulations! Your video is now available in your private library.</source> | 2625 | <source>Congratulations! Your video is now available in your private library.</source> |
2543 | <target state="new"> | 2626 | <target state="new"> |
2544 | Congratulations! Your video is now available in your private library. | 2627 | Congratulations! Your video is now available in your private library. |
2545 | </target> | 2628 | </target> |
2546 | 2629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">90</context></context-group> | |
2547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> | 2630 | </trans-unit> |
2548 | <trans-unit id="3768339632235914548" datatype="html"> | 2631 | <trans-unit id="3768339632235914548" datatype="html"> |
2549 | <source>Publish will be available when upload is finished</source> | 2632 | <source>Publish will be available when upload is finished</source> |
2550 | <target state="new">Publish will be available when upload is finished</target> | 2633 | <target state="new">Publish will be available when upload is finished</target> |
2551 | 2634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">104</context></context-group> | |
2552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 2635 | </trans-unit> |
2553 | <trans-unit id="7430416142942514215" datatype="html"> | 2636 | <trans-unit id="7430416142942514215" datatype="html"> |
2554 | <source>Publish</source> | 2637 | <source>Publish</source> |
2555 | <target state="new">Publish</target> | 2638 | <target state="new">Publish</target> |
2556 | 2639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">106</context></context-group> | |
2557 | 2640 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group> | |
2558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit><trans-unit id="6161604372916832458" datatype="html"> | 2641 | </trans-unit> |
2559 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2642 | <trans-unit id="6161604372916832458" datatype="html"> |
2560 | 2643 | <source>Upload on hold</source> | |
2561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 2644 | <target state="new">Upload on hold</target> |
2645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">173</context></context-group> | ||
2646 | </trans-unit> | ||
2562 | <trans-unit id="285180972645018518" datatype="html"> | 2647 | <trans-unit id="285180972645018518" datatype="html"> |
2563 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2648 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2564 | <target state="new">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> | 2649 | <target state="new">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> |
2565 | 2650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context><context context-type="linenumber">102</context></context-group> | |
2566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context><context context-type="linenumber">102</context></context-group></trans-unit><trans-unit id="1138810463037464722" datatype="html"> | 2651 | </trans-unit> |
2567 | <source>Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.</source><target state="new">Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.</target> | 2652 | <trans-unit id="1138810463037464722" datatype="html"> |
2653 | <source>Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.</source> | ||
2654 | <target state="new">Uploaded videos are reviewed before publishing for your account. If you want to add videos without moderation review, an admin must turn off your videos auto-block.</target> | ||
2568 | <context-group purpose="location"> | 2655 | <context-group purpose="location"> |
2569 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2656 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2570 | <context context-type="linenumber">104</context> | 2657 | <context context-type="linenumber">104</context> |
2571 | </context-group> | 2658 | </context-group> |
2572 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 2659 | </trans-unit> |
2573 | <source>Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.</source><target state="new">Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.</target> | 2660 | <trans-unit id="438743381693904838" datatype="html"> |
2661 | <source>Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.</source> | ||
2662 | <target state="new">Your daily video quota is insufficient. If you want to add more videos, you must wait for 24 hours or an admin must increase your daily quota.</target> | ||
2574 | <context-group purpose="location"> | 2663 | <context-group purpose="location"> |
2575 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2664 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2576 | <context context-type="linenumber">106</context> | 2665 | <context context-type="linenumber">106</context> |
2577 | </context-group> | 2666 | </context-group> |
2578 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 2667 | </trans-unit> |
2579 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source><target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | 2668 | <trans-unit id="6796692581512042469" datatype="html"> |
2669 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
2670 | <target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | ||
2580 | <context-group purpose="location"> | 2671 | <context-group purpose="location"> |
2581 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2672 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2582 | <context context-type="linenumber">108</context> | 2673 | <context context-type="linenumber">108</context> |
@@ -2585,8 +2676,8 @@ The link will expire within 1 hour.</target> | |||
2585 | <trans-unit id="2587226585711833549" datatype="html"> | 2676 | <trans-unit id="2587226585711833549" datatype="html"> |
2586 | <source>Read instance rules for help</source> | 2677 | <source>Read instance rules for help</source> |
2587 | <target state="new">Read instance rules for help</target> | 2678 | <target state="new">Read instance rules for help</target> |
2588 | 2679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">2</context></context-group> | |
2589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 2680 | </trans-unit> |
2590 | <trans-unit id="3455474330346212563" datatype="html"> | 2681 | <trans-unit id="3455474330346212563" datatype="html"> |
2591 | <source>Select the torrent to import</source> | 2682 | <source>Select the torrent to import</source> |
2592 | <target state="new">Select the torrent to import</target> | 2683 | <target state="new">Select the torrent to import</target> |
@@ -2608,111 +2699,123 @@ The link will expire within 1 hour.</target> | |||
2608 | <target state="new"> | 2699 | <target state="new"> |
2609 | Congratulations, the video will be imported with BitTorrent! You can already add information about this video. | 2700 | Congratulations, the video will be imported with BitTorrent! You can already add information about this video. |
2610 | </target> | 2701 | </target> |
2611 | 2702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">55</context></context-group> | |
2612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="4422946962830681102" datatype="html"> | 2703 | </trans-unit> |
2613 | <source>Torrents with only 1 file are supported.</source><target state="new">Torrents with only 1 file are supported.</target> | 2704 | <trans-unit id="4422946962830681102" datatype="html"> |
2614 | 2705 | <source>Torrents with only 1 file are supported.</source> | |
2615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 2706 | <target state="new">Torrents with only 1 file are supported.</target> |
2707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">118</context></context-group> | ||
2708 | </trans-unit> | ||
2616 | <trans-unit id="7860848084471862305" datatype="html"> | 2709 | <trans-unit id="7860848084471862305" datatype="html"> |
2617 | <source>Cannot create live because this instance have too many created lives</source> | 2710 | <source>Cannot create live because this instance have too many created lives</source> |
2618 | <target state="new">Cannot create live because this instance have too many created lives</target> | 2711 | <target state="new">Cannot create live because this instance have too many created lives</target> |
2619 | 2712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">103</context></context-group> | |
2620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 2713 | </trans-unit> |
2621 | <trans-unit id="1278564497286613571" datatype="html"> | 2714 | <trans-unit id="1278564497286613571" datatype="html"> |
2622 | <source>Cannot create live because you created too many lives</source> | 2715 | <source>Cannot create live because you created too many lives</source> |
2623 | <target state="new">Cannot create live because you created too many lives</target> | 2716 | <target state="new">Cannot create live because you created too many lives</target> |
2624 | 2717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">105</context></context-group> | |
2625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 2718 | </trans-unit> |
2626 | <trans-unit id="2621043320678012413" datatype="html"> | 2719 | <trans-unit id="2621043320678012413" datatype="html"> |
2627 | <source>Live published.</source> | 2720 | <source>Live published.</source> |
2628 | <target state="new">Live published.</target> | 2721 | <target state="new">Live published.</target> |
2629 | 2722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">134</context></context-group> | |
2630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit><trans-unit id="5872059367236038160" datatype="html"> | 2723 | </trans-unit> |
2631 | <source>Stream only once and save a replay of your live</source><target state="new">Stream only once and save a replay of your live</target> | 2724 | <trans-unit id="5872059367236038160" datatype="html"> |
2632 | 2725 | <source>Stream only once and save a replay of your live</source> | |
2633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">157</context></context-group></trans-unit><trans-unit id="2360261543675520397" datatype="html"> | 2726 | <target state="new">Stream only once and save a replay of your live</target> |
2634 | <source>Stream only once</source><target state="new">Stream only once</target> | 2727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">157</context></context-group> |
2635 | 2728 | </trans-unit> | |
2636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit><trans-unit id="5168540607709796871" datatype="html"> | 2729 | <trans-unit id="2360261543675520397" datatype="html"> |
2637 | <source>Stream multiple times, replays can't be saved</source><target state="new">Stream multiple times, replays can't be saved</target> | 2730 | <source>Stream only once</source> |
2638 | 2731 | <target state="new">Stream only once</target> | |
2639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit><trans-unit id="58134197356653483" datatype="html"> | 2732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">160</context></context-group> |
2640 | <source>Stream multiple times using the same URL</source><target state="new">Stream multiple times using the same URL</target> | 2733 | </trans-unit> |
2641 | 2734 | <trans-unit id="5168540607709796871" datatype="html"> | |
2642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 2735 | <source>Stream multiple times, replays can't be saved</source> |
2736 | <target state="new">Stream multiple times, replays can't be saved</target> | ||
2737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">165</context></context-group> | ||
2738 | </trans-unit> | ||
2739 | <trans-unit id="58134197356653483" datatype="html"> | ||
2740 | <source>Stream multiple times using the same URL</source> | ||
2741 | <target state="new">Stream multiple times using the same URL</target> | ||
2742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">168</context></context-group> | ||
2743 | </trans-unit> | ||
2643 | <trans-unit id="8218579597782287078" datatype="html"> | 2744 | <trans-unit id="8218579597782287078" datatype="html"> |
2644 | <source>Go Live</source> | 2745 | <source>Go Live</source> |
2645 | <target state="new">Go Live</target> | 2746 | <target state="new">Go Live</target> |
2646 | 2747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">37</context></context-group> | |
2647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 2748 | </trans-unit> |
2648 | <trans-unit id="3282368691598224543" datatype="html"> | 2749 | <trans-unit id="3282368691598224543" datatype="html"> |
2649 | <source>Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. </source> | 2750 | <source>Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. </source> |
2650 | <target state="new"> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | 2751 | <target state="new"> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. |
2651 | </target> | 2752 | </target> |
2652 | 2753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">47</context></context-group> | |
2653 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 2754 | </trans-unit> |
2654 | <trans-unit id="2993949426196989262" datatype="html"> | 2755 | <trans-unit id="2993949426196989262" datatype="html"> |
2655 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> | 2756 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> |
2656 | <target state="new"> | 2757 | <target state="new"> |
2657 | We recommend you to not use the | 2758 | We recommend you to not use the |
2658 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root | 2759 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root |
2659 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. | 2760 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. |
2660 | 2761 | ||
2661 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2762 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2662 | Instead, | 2763 | Instead, |
2663 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account | 2764 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account |
2664 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. | 2765 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. |
2665 | 2766 | ||
2666 | </target> | 2767 | </target> |
2667 | 2768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">33</context></context-group> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 2769 | </trans-unit> |
2669 | <trans-unit id="293476877021544115" datatype="html"> | 2770 | <trans-unit id="293476877021544115" datatype="html"> |
2670 | <source>Import <x id="INTERPOLATION"/></source> | 2771 | <source>Import <x id="INTERPOLATION"/></source> |
2671 | <target state="new">Import | 2772 | <target state="new">Import |
2672 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2773 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> |
2673 | </target> | 2774 | </target> |
2674 | 2775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">44</context></context-group> | |
2675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 2776 | </trans-unit> |
2676 | <trans-unit id="4766833966971572147" datatype="html"> | 2777 | <trans-unit id="4766833966971572147" datatype="html"> |
2677 | <source>Upload <x id="INTERPOLATION"/></source> | 2778 | <source>Upload <x id="INTERPOLATION"/></source> |
2678 | <target state="new">Upload | 2779 | <target state="new">Upload |
2679 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2780 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> |
2680 | </target> | 2781 | </target> |
2681 | 2782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">45</context></context-group> | |
2682 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 2783 | </trans-unit> |
2683 | <trans-unit id="7003826819757856838" datatype="html"> | 2784 | <trans-unit id="7003826819757856838" datatype="html"> |
2684 | <source>Upload a file</source> | 2785 | <source>Upload a file</source> |
2685 | <target state="new">Upload a file</target> | 2786 | <target state="new">Upload a file</target> |
2686 | 2787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">53</context></context-group> | |
2687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 2788 | </trans-unit> |
2688 | <trans-unit id="2061223017941329156" datatype="html"> | 2789 | <trans-unit id="2061223017941329156" datatype="html"> |
2689 | <source>Import with URL</source> | 2790 | <source>Import with URL</source> |
2690 | <target state="new">Import with URL</target> | 2791 | <target state="new">Import with URL</target> |
2691 | 2792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">63</context></context-group> | |
2692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 2793 | </trans-unit> |
2693 | <trans-unit id="8740142697043012403" datatype="html"> | 2794 | <trans-unit id="8740142697043012403" datatype="html"> |
2694 | <source>Import with torrent</source> | 2795 | <source>Import with torrent</source> |
2695 | <target state="new">Import with torrent</target> | 2796 | <target state="new">Import with torrent</target> |
2696 | 2797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">73</context></context-group> | |
2697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 2798 | </trans-unit> |
2698 | <trans-unit id="6066940329544282265" datatype="html"> | 2799 | <trans-unit id="6066940329544282265" datatype="html"> |
2699 | <source>Go live</source> | 2800 | <source>Go live</source> |
2700 | <target state="new">Go live</target> | 2801 | <target state="new">Go live</target> |
2701 | 2802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">83</context></context-group> | |
2702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 2803 | </trans-unit> |
2703 | <trans-unit id="3907889591911208762" datatype="html"> | 2804 | <trans-unit id="3907889591911208762" datatype="html"> |
2704 | <source>Other videos</source> | 2805 | <source>Other videos</source> |
2705 | <target state="new"> | 2806 | <target state="new"> |
2706 | Other videos | 2807 | Other videos |
2707 | </target> | 2808 | </target> |
2708 | 2809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">4</context></context-group> | |
2709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 2810 | </trans-unit> |
2710 | <trans-unit id="2913936134410914576" datatype="html"> | 2811 | <trans-unit id="2913936134410914576" datatype="html"> |
2711 | <source>AUTOPLAY</source> | 2812 | <source>AUTOPLAY</source> |
2712 | <target state="new">AUTOPLAY</target> | 2813 | <target state="new">AUTOPLAY</target> |
2713 | 2814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">10</context></context-group> | |
2714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="2738123251363312498" datatype="html"> | 2815 | </trans-unit> |
2715 | <source>Next video to be played</source><target state="new">Next video to be played</target> | 2816 | <trans-unit id="2738123251363312498" datatype="html"> |
2817 | <source>Next video to be played</source> | ||
2818 | <target state="new">Next video to be played</target> | ||
2716 | <context-group purpose="location"> | 2819 | <context-group purpose="location"> |
2717 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context> | 2820 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context> |
2718 | <context context-type="linenumber">16</context> | 2821 | <context context-type="linenumber">16</context> |
@@ -2721,8 +2824,8 @@ The link will expire within 1 hour.</target> | |||
2721 | <trans-unit id="4619111912751495491" datatype="html"> | 2824 | <trans-unit id="4619111912751495491" datatype="html"> |
2722 | <source>Report this comment</source> | 2825 | <source>Report this comment</source> |
2723 | <target state="new">Report this comment</target> | 2826 | <target state="new">Report this comment</target> |
2724 | 2827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context><context context-type="linenumber">178</context></context-group> | |
2725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context><context context-type="linenumber">178</context></context-group></trans-unit> | 2828 | </trans-unit> |
2726 | <trans-unit id="7419704019640008953" datatype="html"> | 2829 | <trans-unit id="7419704019640008953" datatype="html"> |
2727 | <source>Share</source> | 2830 | <source>Share</source> |
2728 | <target state="new">Share</target> | 2831 | <target state="new">Share</target> |
@@ -2733,14 +2836,18 @@ The link will expire within 1 hour.</target> | |||
2733 | <source>Share the playlist</source> | 2836 | <source>Share the playlist</source> |
2734 | <target state="new">Share the playlist</target> | 2837 | <target state="new">Share the playlist</target> |
2735 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">11</context></context-group> | 2838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">11</context></context-group> |
2736 | </trans-unit><trans-unit id="937533808893845780" datatype="html"> | 2839 | </trans-unit> |
2737 | <source>This playlist is private so you won't be able to share it with external users</source><target state="new">This playlist is private so you won't be able to share it with external users</target> | 2840 | <trans-unit id="937533808893845780" datatype="html"> |
2841 | <source>This playlist is private so you won't be able to share it with external users</source> | ||
2842 | <target state="new">This playlist is private so you won't be able to share it with external users</target> | ||
2738 | <context-group purpose="location"> | 2843 | <context-group purpose="location"> |
2739 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2844 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2740 | <context context-type="linenumber">14</context> | 2845 | <context context-type="linenumber">14</context> |
2741 | </context-group> | 2846 | </context-group> |
2742 | </trans-unit><trans-unit id="5806907163449517166" datatype="html"> | 2847 | </trans-unit> |
2743 | <source> Update playlist privacy </source><target state="new"> Update playlist privacy </target> | 2848 | <trans-unit id="5806907163449517166" datatype="html"> |
2849 | <source>Update playlist privacy</source> | ||
2850 | <target state="new"> Update playlist privacy </target> | ||
2744 | <context-group purpose="location"> | 2851 | <context-group purpose="location"> |
2745 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2852 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2746 | <context context-type="linenumber">16,18</context> | 2853 | <context context-type="linenumber">16,18</context> |
@@ -2749,20 +2856,24 @@ The link will expire within 1 hour.</target> | |||
2749 | <trans-unit id="6460270615876918310" datatype="html"> | 2856 | <trans-unit id="6460270615876918310" datatype="html"> |
2750 | <source>Share the playlist at this video position</source> | 2857 | <source>Share the playlist at this video position</source> |
2751 | <target state="new">Share the playlist at this video position</target> | 2858 | <target state="new">Share the playlist at this video position</target> |
2752 | 2859 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">71</context></context-group> | |
2753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 2860 | </trans-unit> |
2754 | <trans-unit id="1253396341165671470" datatype="html"> | 2861 | <trans-unit id="1253396341165671470" datatype="html"> |
2755 | <source>Share the video</source> | 2862 | <source>Share the video</source> |
2756 | <target state="new">Share the video</target> | 2863 | <target state="new">Share the video</target> |
2757 | 2864 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">79</context></context-group> | |
2758 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="5254843797242866315" datatype="html"> | 2865 | </trans-unit> |
2759 | <source>This video is private so you won't be able to share it with external users</source><target state="new">This video is private so you won't be able to share it with external users</target> | 2866 | <trans-unit id="5254843797242866315" datatype="html"> |
2867 | <source>This video is private so you won't be able to share it with external users</source> | ||
2868 | <target state="new">This video is private so you won't be able to share it with external users</target> | ||
2760 | <context-group purpose="location"> | 2869 | <context-group purpose="location"> |
2761 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2870 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2762 | <context context-type="linenumber">82</context> | 2871 | <context context-type="linenumber">82</context> |
2763 | </context-group> | 2872 | </context-group> |
2764 | </trans-unit><trans-unit id="3201319007886576629" datatype="html"> | 2873 | </trans-unit> |
2765 | <source> Update video privacy </source><target state="new"> Update video privacy </target> | 2874 | <trans-unit id="3201319007886576629" datatype="html"> |
2875 | <source>Update video privacy</source> | ||
2876 | <target state="new"> Update video privacy </target> | ||
2766 | <context-group purpose="location"> | 2877 | <context-group purpose="location"> |
2767 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2878 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2768 | <context context-type="linenumber">84,86</context> | 2879 | <context context-type="linenumber">84,86</context> |
@@ -2771,43 +2882,45 @@ The link will expire within 1 hour.</target> | |||
2771 | <trans-unit id="1845599966367432388" datatype="html"> | 2882 | <trans-unit id="1845599966367432388" datatype="html"> |
2772 | <source>QR-Code</source> | 2883 | <source>QR-Code</source> |
2773 | <target state="new">QR-Code</target> | 2884 | <target state="new">QR-Code</target> |
2774 | 2885 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">35</context></context-group> | |
2775 | 2886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">102</context></context-group> | |
2776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> | 2887 | </trans-unit> |
2777 | <trans-unit id="1122876732223594710" datatype="html"> | 2888 | <trans-unit id="1122876732223594710" datatype="html"> |
2778 | <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> | 2889 | <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> |
2779 | <target state="new"> | 2890 | <target state="new"> |
2780 | 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). | 2891 | 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). |
2781 | </target> | 2892 | </target> |
2782 | 2893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">54</context></context-group> | |
2783 | 2894 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">121</context></context-group> | |
2784 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 2895 | </trans-unit> |
2785 | <trans-unit id="8151017381798767627" datatype="html"> | 2896 | <trans-unit id="8151017381798767627" datatype="html"> |
2786 | <source>Embed</source> | 2897 | <source>Embed</source> |
2787 | <target state="new">Embed</target> | 2898 | <target state="new">Embed</target> |
2788 | 2899 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">45</context></context-group> | |
2789 | 2900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">112</context></context-group> | |
2790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">112</context></context-group></trans-unit> | 2901 | </trans-unit> |
2791 | <trans-unit id="6375858514817734542" datatype="html"> | 2902 | <trans-unit id="6375858514817734542" datatype="html"> |
2792 | <source>Auto select subtitle</source> | 2903 | <source>Auto select subtitle</source> |
2793 | <target state="new">Auto select subtitle</target> | 2904 | <target state="new">Auto select subtitle</target> |
2794 | 2905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">154</context></context-group> | |
2795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">154</context></context-group></trans-unit> | 2906 | </trans-unit> |
2796 | <trans-unit id="2353402732767789211" datatype="html"> | 2907 | <trans-unit id="2353402732767789211" datatype="html"> |
2797 | <source>More customization</source> | 2908 | <source>More customization</source> |
2798 | <target state="new"> | 2909 | <target state="new"> |
2799 | More customization | 2910 | More customization |
2800 | </target> | 2911 | </target> |
2801 | 2912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">255</context></context-group> | |
2802 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit> | 2913 | </trans-unit> |
2803 | <trans-unit id="1284179134768564307" datatype="html"> | 2914 | <trans-unit id="1284179134768564307" datatype="html"> |
2804 | <source>Less customization</source> | 2915 | <source>Less customization</source> |
2805 | <target state="new"> | 2916 | <target state="new"> |
2806 | Less customization | 2917 | Less customization |
2807 | </target> | 2918 | </target> |
2808 | 2919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">263</context></context-group> | |
2809 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">263</context></context-group></trans-unit><trans-unit id="1290987288288099212" datatype="html"> | 2920 | </trans-unit> |
2810 | <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source><target state="new">Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></target> | 2921 | <trans-unit id="1290987288288099212" datatype="html"> |
2922 | <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source> | ||
2923 | <target state="new">Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></target> | ||
2811 | <context-group purpose="location"> | 2924 | <context-group purpose="location"> |
2812 | <context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context> | 2925 | <context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context> |
2813 | <context context-type="linenumber">3</context> | 2926 | <context context-type="linenumber">3</context> |
@@ -2816,41 +2929,46 @@ The link will expire within 1 hour.</target> | |||
2816 | <trans-unit id="2454050363478003966" datatype="html"> | 2929 | <trans-unit id="2454050363478003966" datatype="html"> |
2817 | <source>Login</source> | 2930 | <source>Login</source> |
2818 | <target state="new">Login</target> | 2931 | <target state="new">Login</target> |
2819 | 2932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
2820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 2933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> |
2934 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group> | ||
2935 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">103</context></context-group> | ||
2936 | </trans-unit> | ||
2821 | <trans-unit id="1452803153270294110" datatype="html"> | 2937 | <trans-unit id="1452803153270294110" datatype="html"> |
2822 | <source>Autoplay</source> | 2938 | <source>Autoplay</source> |
2823 | <target state="new">Autoplay</target> | 2939 | <target state="new">Autoplay</target> |
2824 | 2940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">185</context></context-group> | |
2825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">185</context></context-group></trans-unit> | 2941 | </trans-unit> |
2826 | |||
2827 | <trans-unit id="5336944753883027145" datatype="html"> | 2942 | <trans-unit id="5336944753883027145" datatype="html"> |
2828 | <source>Maybe later</source> | 2943 | <source>Maybe later</source> |
2829 | <target state="new">Maybe later</target> | 2944 | <target state="new">Maybe later</target> |
2830 | 2945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context><context context-type="linenumber">11</context></context-group> | |
2831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2946 | </trans-unit> |
2832 | <trans-unit id="3959826834147169200" datatype="html"> | 2947 | <trans-unit id="3959826834147169200" datatype="html"> |
2833 | <source>Muted</source> | 2948 | <source>Muted</source> |
2834 | <target state="new">Muted</target> | 2949 | <target state="new">Muted</target> |
2835 | 2950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">104</context></context-group> | |
2836 | 2951 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group> | |
2837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group> |
2953 | </trans-unit> | ||
2838 | <trans-unit id="2784956659778044823" datatype="html"> | 2954 | <trans-unit id="2784956659778044823" datatype="html"> |
2839 | <source>Loop</source> | 2955 | <source>Loop</source> |
2840 | <target state="new">Loop</target> | 2956 | <target state="new">Loop</target> |
2841 | 2957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">199</context></context-group> | |
2842 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">199</context></context-group></trans-unit> | 2958 | </trans-unit> |
2843 | <trans-unit id="5908032061347078472" datatype="html"> | 2959 | <trans-unit id="5908032061347078472" datatype="html"> |
2844 | <source>Use origin instance URL</source> | 2960 | <source>Use origin instance URL</source> |
2845 | <target state="new">Use origin instance URL</target> | 2961 | <target state="new">Use origin instance URL</target> |
2846 | 2962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">206</context></context-group> | |
2847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">206</context></context-group></trans-unit> | 2963 | </trans-unit> |
2848 | <trans-unit id="6212841954039032241" datatype="html"> | 2964 | <trans-unit id="6212841954039032241" datatype="html"> |
2849 | <source>Display video title</source> | 2965 | <source>Display video title</source> |
2850 | <target state="new">Display video title</target> | 2966 | <target state="new">Display video title</target> |
2851 | 2967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">215</context></context-group> | |
2852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">215</context></context-group></trans-unit><trans-unit id="7482217084177855485" datatype="html"> | 2968 | </trans-unit> |
2853 | <source>P2P</source><target state="new">P2P</target> | 2969 | <trans-unit id="7482217084177855485" datatype="html"> |
2970 | <source>P2P</source> | ||
2971 | <target state="new">P2P</target> | ||
2854 | <context-group purpose="location"> | 2972 | <context-group purpose="location"> |
2855 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> | 2973 | <context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context> |
2856 | <context context-type="linenumber">222</context> | 2974 | <context context-type="linenumber">222</context> |
@@ -2859,81 +2977,75 @@ The link will expire within 1 hour.</target> | |||
2859 | <trans-unit id="1068153312491986796" datatype="html"> | 2977 | <trans-unit id="1068153312491986796" datatype="html"> |
2860 | <source>Display privacy warning</source> | 2978 | <source>Display privacy warning</source> |
2861 | <target state="new">Display privacy warning</target> | 2979 | <target state="new">Display privacy warning</target> |
2862 | 2980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">229</context></context-group> | |
2863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">229</context></context-group></trans-unit> | 2981 | </trans-unit> |
2864 | <trans-unit id="7540352830225038263" datatype="html"> | 2982 | <trans-unit id="7540352830225038263" datatype="html"> |
2865 | <source>Display player controls</source> | 2983 | <source>Display player controls</source> |
2866 | <target state="new">Display player controls</target> | 2984 | <target state="new">Display player controls</target> |
2867 | 2985 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">236</context></context-group> | |
2868 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit> | 2986 | </trans-unit> |
2869 | <trans-unit id="805456636864344681" datatype="html"> | 2987 | <trans-unit id="805456636864344681" datatype="html"> |
2870 | <source>Display PeerTube button link</source> | 2988 | <source>Display PeerTube button link</source> |
2871 | <target state="new">Display PeerTube button link</target> | 2989 | <target state="new">Display PeerTube button link</target> |
2872 | 2990 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">243</context></context-group> | |
2873 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">243</context></context-group></trans-unit> | 2991 | </trans-unit> |
2874 | <trans-unit id="8928816882866356838" datatype="html"> | 2992 | <trans-unit id="8928816882866356838" datatype="html"> |
2875 | <source>Public</source> | 2993 | <source>Public</source> |
2876 | <target state="new">Public</target> | 2994 | <target state="new">Public</target> |
2877 | 2995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group> | |
2878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2996 | </trans-unit> |
2879 | |||
2880 | |||
2881 | |||
2882 | |||
2883 | |||
2884 | <trans-unit id="4416005356063364306" datatype="html"> | 2997 | <trans-unit id="4416005356063364306" datatype="html"> |
2885 | <source>This video is blocked.</source> | 2998 | <source>This video is blocked.</source> |
2886 | <target state="new">This video is blocked.</target> | 2999 | <target state="new">This video is blocked.</target> |
2887 | 3000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">38</context></context-group> | |
2888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 3001 | </trans-unit> |
2889 | <trans-unit id="2482137713226830428" datatype="html"> | 3002 | <trans-unit id="2482137713226830428" datatype="html"> |
2890 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 3003 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2891 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 3004 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2892 | 3005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group> | |
2893 | 3006 | </trans-unit> | |
2894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | ||
2895 | <trans-unit id="1813238393038053050" datatype="html"> | 3007 | <trans-unit id="1813238393038053050" datatype="html"> |
2896 | <source>SUPPORT</source> | 3008 | <source>SUPPORT</source> |
2897 | <target state="new">SUPPORT</target> | 3009 | <target state="new">SUPPORT</target> |
2898 | 3010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">13</context></context-group> | |
2899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 3011 | </trans-unit> |
2900 | <trans-unit id="9219888125536520293" datatype="html"> | 3012 | <trans-unit id="9219888125536520293" datatype="html"> |
2901 | <source>SHARE</source> | 3013 | <source>SHARE</source> |
2902 | <target state="new">SHARE</target> | 3014 | <target state="new">SHARE</target> |
2903 | 3015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">18</context></context-group> | |
2904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3016 | </trans-unit> |
2905 | <trans-unit id="6671956963490165282" datatype="html"> | 3017 | <trans-unit id="6671956963490165282" datatype="html"> |
2906 | <source>SAVE</source> | 3018 | <source>SAVE</source> |
2907 | <target state="new">SAVE</target> | 3019 | <target state="new">SAVE</target> |
2908 | 3020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">29</context></context-group> | |
2909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3021 | </trans-unit> |
2910 | <trans-unit id="647016352598204238" datatype="html"> | 3022 | <trans-unit id="647016352598204238" datatype="html"> |
2911 | <source>DOWNLOAD</source> | 3023 | <source>DOWNLOAD</source> |
2912 | <target state="new">DOWNLOAD</target> | 3024 | <target state="new">DOWNLOAD</target> |
2913 | 3025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">43</context></context-group> | |
2914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 3026 | </trans-unit> |
2915 | <trans-unit id="677619204556459328" datatype="html"> | 3027 | <trans-unit id="677619204556459328" datatype="html"> |
2916 | <source>Like this video</source> | 3028 | <source>Like this video</source> |
2917 | <target state="new">Like this video</target> | 3029 | <target state="new">Like this video</target> |
2918 | 3030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">37</context></context-group> | |
2919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 3031 | </trans-unit> |
2920 | <trans-unit id="1979134407801821102" datatype="html"> | 3032 | <trans-unit id="1979134407801821102" datatype="html"> |
2921 | <source>Dislike this video</source> | 3033 | <source>Dislike this video</source> |
2922 | <target state="new">Dislike this video</target> | 3034 | <target state="new">Dislike this video</target> |
2923 | 3035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">38</context></context-group> | |
2924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 3036 | </trans-unit> |
2925 | <trans-unit id="4001371302469308813" datatype="html"> | 3037 | <trans-unit id="4001371302469308813" datatype="html"> |
2926 | <source>Support options for this video</source> | 3038 | <source>Support options for this video</source> |
2927 | <target state="new">Support options for this video</target> | 3039 | <target state="new">Support options for this video</target> |
2928 | 3040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">57</context></context-group> | |
2929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 3041 | </trans-unit> |
2930 | <trans-unit id="687548610091961489" datatype="html"> | 3042 | <trans-unit id="687548610091961489" datatype="html"> |
2931 | <source>By <x id="INTERPOLATION"/></source> | 3043 | <source>By <x id="INTERPOLATION"/></source> |
2932 | <target state="new">By | 3044 | <target state="new">By |
2933 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | 3045 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> |
2934 | </target> | 3046 | </target> |
2935 | 3047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group> | |
2936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 3048 | </trans-unit> |
2937 | <trans-unit id="1144407473317535723" datatype="html"> | 3049 | <trans-unit id="1144407473317535723" datatype="html"> |
2938 | <source>Subscribe</source> | 3050 | <source>Subscribe</source> |
2939 | <target state="new">Subscribe</target> | 3051 | <target state="new">Subscribe</target> |
@@ -2957,289 +3069,296 @@ The link will expire within 1 hour.</target> | |||
2957 | <trans-unit id="7215101881367554791" datatype="html"> | 3069 | <trans-unit id="7215101881367554791" datatype="html"> |
2958 | <source>Show more</source> | 3070 | <source>Show more</source> |
2959 | <target state="new">Show more</target> | 3071 | <target state="new">Show more</target> |
2960 | 3072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-description.component.html</context><context context-type="linenumber">10</context></context-group> | |
2961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-description.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3073 | </trans-unit> |
2962 | <trans-unit id="3517550046701184661" datatype="html"> | 3074 | <trans-unit id="3517550046701184661" datatype="html"> |
2963 | <source>Show less</source> | 3075 | <source>Show less</source> |
2964 | <target state="new">Show less</target> | 3076 | <target state="new">Show less</target> |
2965 | 3077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-description.component.html</context><context context-type="linenumber">16</context></context-group> | |
2966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-description.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="66785722678644243" datatype="html"> | 3078 | </trans-unit> |
2967 | <source>Origin</source><target state="new">Origin</target> | 3079 | <trans-unit id="66785722678644243" datatype="html"> |
2968 | 3080 | <source>Origin</source> | |
2969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit><trans-unit id="6981359593518942576" datatype="html"> | 3081 | <target state="new">Origin</target> |
2970 | <source>Open the video on the origin instance</source><target state="new">Open the video on the origin instance</target> | 3082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">7</context></context-group> |
3083 | </trans-unit> | ||
3084 | <trans-unit id="6981359593518942576" datatype="html"> | ||
3085 | <source>Open the video on the origin instance</source> | ||
3086 | <target state="new">Open the video on the origin instance</target> | ||
2971 | <context-group purpose="location"> | 3087 | <context-group purpose="location"> |
2972 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> | 3088 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> |
2973 | <context context-type="linenumber">14</context> | 3089 | <context context-type="linenumber">14</context> |
2974 | </context-group> | 3090 | </context-group> |
2975 | </trans-unit> | 3091 | </trans-unit> |
2976 | |||
2977 | <trans-unit id="5139892963394684487" datatype="html"> | 3092 | <trans-unit id="5139892963394684487" datatype="html"> |
2978 | <source>Originally published</source> | 3093 | <source>Originally published</source> |
2979 | <target state="new">Originally published</target> | 3094 | <target state="new">Originally published</target> |
2980 | 3095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">20</context></context-group> | |
2981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3096 | </trans-unit> |
2982 | <trans-unit id="6402393085909200998" datatype="html"> | 3097 | <trans-unit id="6402393085909200998" datatype="html"> |
2983 | <source>Friendly Reminder:</source> | 3098 | <source>Friendly Reminder:</source> |
2984 | <target state="new">Friendly Reminder: </target> | 3099 | <target state="new">Friendly Reminder: </target> |
2985 | 3100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">4</context></context-group> | |
2986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 3101 | </trans-unit> |
2987 | <trans-unit id="2935783216050341269" datatype="html"> | 3102 | <trans-unit id="2935783216050341269" datatype="html"> |
2988 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> | 3103 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> |
2989 | <target state="new"> | 3104 | <target state="new"> |
2990 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. | 3105 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. |
2991 | </target> | 3106 | </target> |
2992 | 3107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">5</context></context-group> | |
2993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 3108 | </trans-unit> |
2994 | <trans-unit id="4619188387782427495" datatype="html"> | 3109 | <trans-unit id="4619188387782427495" datatype="html"> |
2995 | <source>More information</source> | 3110 | <source>More information</source> |
2996 | <target state="new">More information</target> | 3111 | <target state="new">More information</target> |
2997 | 3112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">9</context></context-group> | |
2998 | 3113 | </trans-unit> | |
2999 | |||
3000 | |||
3001 | |||
3002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | ||
3003 | <trans-unit id="3452334748875293295" datatype="html"> | 3114 | <trans-unit id="3452334748875293295" datatype="html"> |
3004 | <source>The video was blocked due to automatic blocking of new videos</source> | 3115 | <source>The video was blocked due to automatic blocking of new videos</source> |
3005 | <target state="new">The video was blocked due to automatic blocking of new videos</target> | 3116 | <target state="new">The video was blocked due to automatic blocking of new videos</target> |
3006 | 3117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">50</context></context-group> | |
3007 | 3118 | </trans-unit> | |
3008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | ||
3009 | <trans-unit id="1465291804668949243" datatype="html"> | 3119 | <trans-unit id="1465291804668949243" datatype="html"> |
3010 | <source>NSFW</source> | 3120 | <source>NSFW</source> |
3011 | <target state="new">NSFW</target> | 3121 | <target state="new">NSFW</target> |
3012 | 3122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
3013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 3123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">75</context></context-group> |
3124 | </trans-unit> | ||
3014 | <trans-unit id="4512155674928869984" datatype="html"> | 3125 | <trans-unit id="4512155674928869984" datatype="html"> |
3015 | <source>Get more information</source> | 3126 | <source>Get more information</source> |
3016 | <target state="new">Get more information</target> | 3127 | <target state="new">Get more information</target> |
3017 | 3128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">9</context></context-group> | |
3018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 3129 | </trans-unit> |
3019 | <trans-unit id="5184373289520493569" datatype="html"> | 3130 | <trans-unit id="5184373289520493569" datatype="html"> |
3020 | <source>OK</source> | 3131 | <source>OK</source> |
3021 | <target state="new"> | 3132 | <target state="new"> |
3022 | OK | 3133 | OK |
3023 | </target> | 3134 | </target> |
3024 | 3135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">12</context></context-group> | |
3025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="6216656500190325717" datatype="html"> | 3136 | </trans-unit> |
3026 | <source> Transcoding failed, this video may not work properly. | 3137 | <trans-unit id="6216656500190325717" datatype="html"> |
3027 | </source><target state="new"> Transcoding failed, this video may not work properly. | 3138 | <source>Transcoding failed, this video may not work properly.</source> |
3139 | <target state="new"> Transcoding failed, this video may not work properly. | ||
3028 | </target> | 3140 | </target> |
3029 | <context-group purpose="location"> | 3141 | <context-group purpose="location"> |
3030 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3142 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3031 | <context context-type="linenumber">1,3</context> | 3143 | <context context-type="linenumber">1,3</context> |
3032 | </context-group> | 3144 | </context-group> |
3033 | </trans-unit><trans-unit id="6355398227384499371" datatype="html"> | 3145 | </trans-unit> |
3034 | <source> Move to external storage failed, this video may not work properly. | 3146 | <trans-unit id="6355398227384499371" datatype="html"> |
3035 | </source><target state="new"> Move to external storage failed, this video may not work properly. | 3147 | <source>Move to external storage failed, this video may not work properly.</source> |
3148 | <target state="new"> Move to external storage failed, this video may not work properly. | ||
3036 | </target> | 3149 | </target> |
3037 | <context-group purpose="location"> | 3150 | <context-group purpose="location"> |
3038 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3151 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3039 | <context context-type="linenumber">5,7</context> | 3152 | <context context-type="linenumber">5,7</context> |
3040 | </context-group> | 3153 | </context-group> |
3041 | </trans-unit><trans-unit id="4092533321838934102" datatype="html"> | 3154 | </trans-unit> |
3042 | <source> The video is being imported, it will be available when the import is finished. | 3155 | <trans-unit id="4092533321838934102" datatype="html"> |
3043 | </source><target state="new"> The video is being imported, it will be available when the import is finished. | 3156 | <source>The video is being imported, it will be available when the import is finished.</source> |
3157 | <target state="new"> The video is being imported, it will be available when the import is finished. | ||
3044 | </target> | 3158 | </target> |
3045 | 3159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">9</context></context-group> | |
3046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit><trans-unit id="8304621069698650554" datatype="html"> | 3160 | </trans-unit> |
3047 | <source> The video is being transcoded, it may not work properly. | 3161 | <trans-unit id="8304621069698650554" datatype="html"> |
3048 | </source><target state="new"> The video is being transcoded, it may not work properly. | 3162 | <source>The video is being transcoded, it may not work properly.</source> |
3163 | <target state="new"> The video is being transcoded, it may not work properly. | ||
3049 | </target> | 3164 | </target> |
3050 | 3165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group> | |
3051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="1353168089968436742" datatype="html"> | 3166 | </trans-unit> |
3052 | <source> The video is being edited, it may not work properly. | 3167 | <trans-unit id="1353168089968436742" datatype="html"> |
3053 | </source><target state="new"> The video is being edited, it may not work properly. | 3168 | <source>The video is being edited, it may not work properly.</source> |
3169 | <target state="new"> The video is being edited, it may not work properly. | ||
3054 | </target> | 3170 | </target> |
3055 | <context-group purpose="location"> | 3171 | <context-group purpose="location"> |
3056 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3172 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3057 | <context context-type="linenumber">17,19</context> | 3173 | <context context-type="linenumber">17,19</context> |
3058 | </context-group> | 3174 | </context-group> |
3059 | </trans-unit><trans-unit id="9080034597841586171" datatype="html"> | 3175 | </trans-unit> |
3060 | <source> The video is being moved to an external server, it may not work properly. | 3176 | <trans-unit id="9080034597841586171" datatype="html"> |
3061 | </source><target state="new"> The video is being moved to an external server, it may not work properly. | 3177 | <source>The video is being moved to an external server, it may not work properly.</source> |
3178 | <target state="new"> The video is being moved to an external server, it may not work properly. | ||
3062 | </target> | 3179 | </target> |
3063 | 3180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group> | |
3064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit><trans-unit id="8619499607322327082" datatype="html"> | 3181 | </trans-unit> |
3065 | <source> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 3182 | <trans-unit id="8619499607322327082" datatype="html"> |
3066 | </source><target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 3183 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
3184 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | ||
3067 | </target> | 3185 | </target> |
3068 | 3186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group> | |
3069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit><trans-unit id="4262297989675590582" datatype="html"> | 3187 | </trans-unit> |
3070 | <source> This live has not started yet. | 3188 | <trans-unit id="4262297989675590582" datatype="html"> |
3071 | </source><target state="new"> This live has not started yet. | 3189 | <source>This live has not started yet.</source> |
3190 | <target state="new"> This live has not started yet. | ||
3072 | </target> | 3191 | </target> |
3073 | 3192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group> | |
3074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="4926204350710628499" datatype="html"> | 3193 | </trans-unit> |
3075 | <source> This live has ended. | 3194 | <trans-unit id="4926204350710628499" datatype="html"> |
3076 | </source><target state="new"> This live has ended. | 3195 | <source>This live has ended.</source> |
3196 | <target state="new"> This live has ended. | ||
3077 | </target> | 3197 | </target> |
3078 | 3198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">33</context></context-group> | |
3079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3199 | </trans-unit> |
3080 | |||
3081 | |||
3082 | |||
3083 | <trans-unit id="8518611938109939710" datatype="html"> | 3200 | <trans-unit id="8518611938109939710" datatype="html"> |
3084 | <source>SORT BY</source> | 3201 | <source>SORT BY</source> |
3085 | <target state="new"> | 3202 | <target state="new"> |
3086 | SORT BY | 3203 | SORT BY |
3087 | </target> | 3204 | </target> |
3088 | 3205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">10</context></context-group> | |
3089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3206 | </trans-unit> |
3090 | <trans-unit id="6448160249466325288" datatype="html"> | 3207 | <trans-unit id="6448160249466325288" datatype="html"> |
3091 | <source>Most recent first (default)</source> | 3208 | <source>Most recent first (default)</source> |
3092 | <target state="new">Most recent first (default)</target> | 3209 | <target state="new">Most recent first (default)</target> |
3093 | 3210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">14</context></context-group> | |
3094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3211 | </trans-unit> |
3095 | <trans-unit id="5179007899354903649" datatype="html"> | 3212 | <trans-unit id="5179007899354903649" datatype="html"> |
3096 | <source>Most replies first</source> | 3213 | <source>Most replies first</source> |
3097 | <target state="new">Most replies first</target> | 3214 | <target state="new">Most replies first</target> |
3098 | 3215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">15</context></context-group> | |
3099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 3216 | </trans-unit> |
3100 | <trans-unit id="7494537777006082055" datatype="html"> | 3217 | <trans-unit id="7494537777006082055" datatype="html"> |
3101 | <source>No comments.</source> | 3218 | <source>No comments.</source> |
3102 | <target state="new">No comments.</target> | 3219 | <target state="new">No comments.</target> |
3103 | 3220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">28</context></context-group> | |
3104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="6390009909920475335" datatype="html"> | 3221 | </trans-unit> |
3105 | <source> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </source><target state="new"> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </target> | 3222 | <trans-unit id="6390009909920475335" datatype="html"> |
3106 | 3223 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </source> | |
3107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit><trans-unit id="4036338619293319383" datatype="html"> | 3224 | <target state="new"> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others </target> |
3108 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source><target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> | 3225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">73</context></context-group> |
3109 | 3226 | </trans-unit> | |
3110 | 3227 | <trans-unit id="4036338619293319383" datatype="html"> | |
3111 | 3228 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | |
3112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit><trans-unit id="127329338495775339" datatype="html"> | 3229 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> |
3113 | <source> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </source><target state="new"> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> | 3230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">74</context></context-group> |
3114 | 3231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">77</context></context-group> | |
3115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="5535545444690528619" datatype="html"> | 3232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group> |
3116 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/></source><target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 3233 | </trans-unit> |
3117 | 3234 | <trans-unit id="127329338495775339" datatype="html"> | |
3118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3235 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </source> |
3119 | 3236 | <target state="new"> View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> from <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> | |
3120 | 3237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">76</context></context-group> | |
3121 | 3238 | </trans-unit> | |
3239 | <trans-unit id="5535545444690528619" datatype="html"> | ||
3240 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}" xid="2084023438878610739"/></source> | ||
3241 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | ||
3242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">81</context></context-group> | ||
3243 | </trans-unit> | ||
3122 | <trans-unit id="1055254162789146714" datatype="html"> | 3244 | <trans-unit id="1055254162789146714" datatype="html"> |
3123 | <source>Comments are disabled.</source> | 3245 | <source>Comments are disabled.</source> |
3124 | <target state="new"> | 3246 | <target state="new"> |
3125 | Comments are disabled. | 3247 | Comments are disabled. |
3126 | </target> | 3248 | </target> |
3127 | 3249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">91</context></context-group> | |
3128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 3250 | </trans-unit> |
3129 | <trans-unit id="3691787517663044217" datatype="html"> | 3251 | <trans-unit id="3691787517663044217" datatype="html"> |
3130 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 3252 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
3131 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 3253 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
3132 | 3254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">175</context></context-group> | |
3133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 3255 | </trans-unit> |
3134 | <trans-unit id="7321800851971795962" datatype="html"> | 3256 | <trans-unit id="7321800851971795962" datatype="html"> |
3135 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 3257 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
3136 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 3258 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
3137 | 3259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">177</context></context-group> | |
3138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 3260 | </trans-unit> |
3139 | <trans-unit id="5964038603724691720" datatype="html"> | 3261 | <trans-unit id="5964038603724691720" datatype="html"> |
3140 | <source>Delete and re-draft</source> | 3262 | <source>Delete and re-draft</source> |
3141 | <target state="new">Delete and re-draft</target> | 3263 | <target state="new">Delete and re-draft</target> |
3142 | 3264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">205</context></context-group> | |
3143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 3265 | </trans-unit> |
3144 | <trans-unit id="7163633882758007711" datatype="html"> | 3266 | <trans-unit id="7163633882758007711" datatype="html"> |
3145 | <source>Do you really want to delete and re-draft this comment?</source> | 3267 | <source>Do you really want to delete and re-draft this comment?</source> |
3146 | <target state="new">Do you really want to delete and re-draft this comment?</target> | 3268 | <target state="new">Do you really want to delete and re-draft this comment?</target> |
3147 | 3269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">206</context></context-group> | |
3148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">206</context></context-group></trans-unit> | 3270 | </trans-unit> |
3149 | <trans-unit id="5733075023444401902" datatype="html"> | 3271 | <trans-unit id="5733075023444401902" datatype="html"> |
3150 | <source>Add comment...</source> | 3272 | <source>Add comment...</source> |
3151 | <target state="new">Add comment...</target> | 3273 | <target state="new">Add comment...</target> |
3152 | 3274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group> | |
3153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 3275 | </trans-unit> |
3154 | <trans-unit id="982956590420630883" datatype="html"> | 3276 | <trans-unit id="982956590420630883" datatype="html"> |
3155 | <source>Markdown compatible</source> | 3277 | <source>Markdown compatible</source> |
3156 | <target state="new">Markdown compatible</target> | 3278 | <target state="new">Markdown compatible</target> |
3157 | 3279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">15</context></context-group> | |
3158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 3280 | </trans-unit> |
3159 | <trans-unit id="5793595564950675122" datatype="html"> | 3281 | <trans-unit id="5793595564950675122" datatype="html"> |
3160 | <source>Markdown compatible that supports:</source> | 3282 | <source>Markdown compatible that supports:</source> |
3161 | <target state="new">Markdown compatible that supports:</target> | 3283 | <target state="new">Markdown compatible that supports:</target> |
3162 | 3284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">18</context></context-group> | |
3163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3285 | </trans-unit> |
3164 | <trans-unit id="8422216333877786919" datatype="html"> | 3286 | <trans-unit id="8422216333877786919" datatype="html"> |
3165 | <source>Auto generated links</source> | 3287 | <source>Auto generated links</source> |
3166 | <target state="new">Auto generated links</target> | 3288 | <target state="new">Auto generated links</target> |
3167 | 3289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">21</context></context-group> | |
3168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3290 | </trans-unit> |
3169 | <trans-unit id="6365822416124232422" datatype="html"> | 3291 | <trans-unit id="6365822416124232422" datatype="html"> |
3170 | <source>Break lines</source> | 3292 | <source>Break lines</source> |
3171 | <target state="new">Break lines</target> | 3293 | <target state="new">Break lines</target> |
3172 | 3294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group> | |
3173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3295 | </trans-unit> |
3174 | |||
3175 | |||
3176 | <trans-unit id="2810844969104710423" datatype="html"> | 3296 | <trans-unit id="2810844969104710423" datatype="html"> |
3177 | <source>bold</source> | 3297 | <source>bold</source> |
3178 | <target state="new">bold</target> | 3298 | <target state="new">bold</target> |
3179 | 3299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group> | |
3180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 3300 | </trans-unit> |
3181 | <trans-unit id="8497278965577453274" datatype="html"> | 3301 | <trans-unit id="8497278965577453274" datatype="html"> |
3182 | <source>italic</source> | 3302 | <source>italic</source> |
3183 | <target state="new">italic</target> | 3303 | <target state="new">italic</target> |
3184 | 3304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group> | |
3185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 3305 | </trans-unit> |
3186 | <trans-unit id="7227611412155083002" datatype="html"> | 3306 | <trans-unit id="7227611412155083002" datatype="html"> |
3187 | <source>Emoji shortcuts</source> | 3307 | <source>Emoji shortcuts</source> |
3188 | <target state="new">Emoji shortcuts</target> | 3308 | <target state="new">Emoji shortcuts</target> |
3189 | 3309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">29</context></context-group> | |
3190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3310 | </trans-unit> |
3191 | <trans-unit id="6608581312644027413" datatype="html"> | 3311 | <trans-unit id="6608581312644027413" datatype="html"> |
3192 | <source>Emoji markup</source> | 3312 | <source>Emoji markup</source> |
3193 | <target state="new">Emoji markup</target> | 3313 | <target state="new">Emoji markup</target> |
3194 | 3314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">33</context></context-group> | |
3195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3315 | </trans-unit> |
3196 | <trans-unit id="381522038671562286" datatype="html"> | 3316 | <trans-unit id="381522038671562286" datatype="html"> |
3197 | <source>See complete list</source> | 3317 | <source>See complete list</source> |
3198 | <target state="new">See complete list</target> | 3318 | <target state="new">See complete list</target> |
3199 | 3319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">35</context></context-group> | |
3200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 3320 | </trans-unit> |
3201 | <trans-unit id="2263890353858735493" datatype="html"> | 3321 | <trans-unit id="2263890353858735493" datatype="html"> |
3202 | <source>You are one step away from commenting</source> | 3322 | <source>You are one step away from commenting</source> |
3203 | <target state="new">You are one step away from commenting</target> | 3323 | <target state="new">You are one step away from commenting</target> |
3204 | 3324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">59</context></context-group> | |
3205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3325 | </trans-unit> |
3206 | <trans-unit id="7508177761852352782" datatype="html"> | 3326 | <trans-unit id="7508177761852352782" datatype="html"> |
3207 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | 3327 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> |
3208 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 3328 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> |
3209 | 3329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">64</context></context-group> | |
3210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3330 | </trans-unit> |
3211 | <trans-unit id="2958389355547305739" datatype="html"> | 3331 | <trans-unit id="2958389355547305739" datatype="html"> |
3212 | <source>Login to comment</source> | 3332 | <source>Login to comment</source> |
3213 | <target state="new">Login to comment</target> | 3333 | <target state="new">Login to comment</target> |
3214 | 3334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">78</context></context-group> | |
3215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 3335 | </trans-unit> |
3216 | <trans-unit id="4817080330698362530" datatype="html"> | 3336 | <trans-unit id="4817080330698362530" datatype="html"> |
3217 | <source>Markdown Emoji List</source> | 3337 | <source>Markdown Emoji List</source> |
3218 | <target state="new">Markdown Emoji List</target> | 3338 | <target state="new">Markdown Emoji List</target> |
3219 | 3339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">86</context></context-group> | |
3220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 3340 | </trans-unit> |
3221 | |||
3222 | |||
3223 | <trans-unit id="3572897237443938692" datatype="html"> | 3341 | <trans-unit id="3572897237443938692" datatype="html"> |
3224 | <source>Highlighted comment</source> | 3342 | <source>Highlighted comment</source> |
3225 | <target state="new">Highlighted comment</target> | 3343 | <target state="new">Highlighted comment</target> |
3226 | 3344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">10</context></context-group> | |
3227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3345 | </trans-unit> |
3228 | <trans-unit id="4502286564339177240" datatype="html"> | 3346 | <trans-unit id="4502286564339177240" datatype="html"> |
3229 | <source>Reply</source> | 3347 | <source>Reply</source> |
3230 | <target state="new">Reply</target> | 3348 | <target state="new">Reply</target> |
3231 | 3349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">83</context></context-group> | |
3232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 3350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group> |
3351 | </trans-unit> | ||
3233 | <trans-unit id="2447932355167015019" datatype="html"> | 3352 | <trans-unit id="2447932355167015019" datatype="html"> |
3234 | <source>This comment has been deleted</source> | 3353 | <source>This comment has been deleted</source> |
3235 | <target state="new">This comment has been deleted</target> | 3354 | <target state="new">This comment has been deleted</target> |
3236 | 3355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">53</context></context-group> | |
3237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 3356 | </trans-unit> |
3238 | <trans-unit id="9031514421077169181" datatype="html"> | 3357 | <trans-unit id="9031514421077169181" datatype="html"> |
3239 | <source>Video redundancies</source> | 3358 | <source>Video redundancies</source> |
3240 | <target state="new">Video redundancies</target> | 3359 | <target state="new">Video redundancies</target> |
3241 | 3360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">85</context></context-group> | |
3242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3361 | </trans-unit> |
3243 | <trans-unit id="3516494528184217808" datatype="html"> | 3362 | <trans-unit id="3516494528184217808" datatype="html"> |
3244 | <source>1 host (without "http://") per line</source> | 3363 | <source>1 host (without "http://") per line</source> |
3245 | <target state="new">1 host (without "http://") per line</target> | 3364 | <target state="new">1 host (without "http://") per line</target> |
@@ -3250,9 +3369,9 @@ The link will expire within 1 hour.</target> | |||
3250 | <target state="new"> | 3369 | <target state="new"> |
3251 | Your report will be sent to moderators of | 3370 | Your report will be sent to moderators of |
3252 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | 3371 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> |
3253 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( | 3372 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( |
3254 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | 3373 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too |
3255 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | 3374 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. |
3256 | 3375 | ||
3257 | </target> | 3376 | </target> |
3258 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> | 3377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> |
@@ -3261,9 +3380,8 @@ The link will expire within 1 hour.</target> | |||
3261 | <trans-unit id="658727060940996385" datatype="html"> | 3380 | <trans-unit id="658727060940996385" datatype="html"> |
3262 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 3381 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
3263 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | 3382 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> |
3264 | 3383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context><context context-type="linenumber">40</context></context-group> | |
3265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 3384 | </trans-unit> |
3266 | |||
3267 | <trans-unit id="3029923402309610616" datatype="html"> | 3385 | <trans-unit id="3029923402309610616" datatype="html"> |
3268 | <source>Token renewed. Update your client configuration accordingly.</source> | 3386 | <source>Token renewed. Update your client configuration accordingly.</source> |
3269 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | 3387 | <target state="new">Token renewed. Update your client configuration accordingly.</target> |
@@ -3272,7 +3390,6 @@ The link will expire within 1 hour.</target> | |||
3272 | <context context-type="linenumber">49</context> | 3390 | <context context-type="linenumber">49</context> |
3273 | </context-group> | 3391 | </context-group> |
3274 | </trans-unit> | 3392 | </trans-unit> |
3275 | |||
3276 | <trans-unit id="5302915360176176604" datatype="html"> | 3393 | <trans-unit id="5302915360176176604" datatype="html"> |
3277 | <source>SUBSCRIPTION FEED</source> | 3394 | <source>SUBSCRIPTION FEED</source> |
3278 | <target state="new">SUBSCRIPTION FEED</target> | 3395 | <target state="new">SUBSCRIPTION FEED</target> |
@@ -3284,8 +3401,8 @@ The link will expire within 1 hour.</target> | |||
3284 | <trans-unit id="2645809032917283525" datatype="html"> | 3401 | <trans-unit id="2645809032917283525" datatype="html"> |
3285 | <source>Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.</source> | 3402 | <source>Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.</source> |
3286 | <target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> | 3403 | <target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> |
3287 | 3404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">9</context></context-group> | |
3288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 3405 | </trans-unit> |
3289 | <trans-unit id="7944777648309302794" datatype="html"> | 3406 | <trans-unit id="7944777648309302794" datatype="html"> |
3290 | <source>Feed URL</source> | 3407 | <source>Feed URL</source> |
3291 | <target state="new">Feed URL</target> | 3408 | <target state="new">Feed URL</target> |
@@ -3313,52 +3430,30 @@ The link will expire within 1 hour.</target> | |||
3313 | <trans-unit id="270726559962362501" datatype="html"> | 3430 | <trans-unit id="270726559962362501" datatype="html"> |
3314 | <source>Renew token</source> | 3431 | <source>Renew token</source> |
3315 | <target state="new">Renew token</target> | 3432 | <target state="new">Renew token</target> |
3316 | 3433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group> | |
3317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 3434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context><context context-type="linenumber">41</context></context-group> |
3435 | </trans-unit> | ||
3318 | <trans-unit id="9209781328340965816" datatype="html"> | 3436 | <trans-unit id="9209781328340965816" datatype="html"> |
3319 | <source>Filter...</source> | 3437 | <source>Filter...</source> |
3320 | <target state="new">Filter...</target> | 3438 | <target state="new">Filter...</target> |
3321 | 3439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">21</context></context-group> | |
3322 | 3440 | </trans-unit> | |
3323 | |||
3324 | |||
3325 | |||
3326 | |||
3327 | |||
3328 | |||
3329 | |||
3330 | |||
3331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | ||
3332 | <trans-unit id="6559246822757089203" datatype="html"> | 3441 | <trans-unit id="6559246822757089203" datatype="html"> |
3333 | <source>Clear filters</source> | 3442 | <source>Clear filters</source> |
3334 | <target state="new">Clear filters</target> | 3443 | <target state="new">Clear filters</target> |
3335 | 3444 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">27</context></context-group> | |
3336 | 3445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group> | |
3337 | 3446 | </trans-unit> | |
3338 | |||
3339 | |||
3340 | |||
3341 | |||
3342 | |||
3343 | |||
3344 | |||
3345 | |||
3346 | |||
3347 | |||
3348 | |||
3349 | |||
3350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | ||
3351 | <trans-unit id="4266779970063047572" datatype="html"> | 3447 | <trans-unit id="4266779970063047572" datatype="html"> |
3352 | <source>Video/Comment/Account</source> | 3448 | <source>Video/Comment/Account</source> |
3353 | <target state="new">Video/Comment/Account</target> | 3449 | <target state="new">Video/Comment/Account</target> |
3354 | 3450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">22</context></context-group> | |
3355 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3451 | </trans-unit> |
3356 | <trans-unit id="8040881171107393560" datatype="html"> | 3452 | <trans-unit id="8040881171107393560" datatype="html"> |
3357 | <source>ID</source> | 3453 | <source>ID</source> |
3358 | <target state="new">ID</target> | 3454 | <target state="new">ID</target> |
3359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">45</context></context-group> | 3455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">45</context></context-group> |
3360 | </trans-unit> | 3456 | </trans-unit> |
3361 | |||
3362 | <trans-unit id="5911214550882917183" datatype="html"> | 3457 | <trans-unit id="5911214550882917183" datatype="html"> |
3363 | <source>State</source> | 3458 | <source>State</source> |
3364 | <target state="new">State</target> | 3459 | <target state="new">State</target> |
@@ -3368,55 +3463,55 @@ The link will expire within 1 hour.</target> | |||
3368 | <trans-unit id="2092225601747599163" datatype="html"> | 3463 | <trans-unit id="2092225601747599163" datatype="html"> |
3369 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3464 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3370 | <target state="new">Created | 3465 | <target state="new">Created |
3371 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3466 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3372 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3467 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3373 | </target> | 3468 | </target> |
3374 | 3469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
3375 | 3470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">33</context></context-group> | |
3376 | 3471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group> | |
3377 | 3472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">20</context></context-group> | |
3378 | 3473 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">23</context></context-group> | |
3379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3474 | </trans-unit> |
3380 | <trans-unit id="8898602327647937914" datatype="html"> | 3475 | <trans-unit id="8898602327647937914" datatype="html"> |
3381 | <source>Open actor page in a new tab</source> | 3476 | <source>Open actor page in a new tab</source> |
3382 | <target state="new">Open actor page in a new tab</target> | 3477 | <target state="new">Open actor page in a new tab</target> |
3383 | 3478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
3384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 3479 | </trans-unit> |
3385 | <trans-unit id="7317290694079257887" datatype="html"> | 3480 | <trans-unit id="7317290694079257887" datatype="html"> |
3386 | <source>Accepted</source> | 3481 | <source>Accepted</source> |
3387 | <target state="new">Accepted</target> | 3482 | <target state="new">Accepted</target> |
3388 | 3483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">49</context></context-group> | |
3389 | 3484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">51</context></context-group> | |
3390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 3485 | </trans-unit> |
3391 | <trans-unit id="4416413576346763682" datatype="html"> | 3486 | <trans-unit id="4416413576346763682" datatype="html"> |
3392 | <source>Pending</source> | 3487 | <source>Pending</source> |
3393 | <target state="new">Pending</target> | 3488 | <target state="new">Pending</target> |
3394 | 3489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">52</context></context-group> | |
3395 | 3490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">54</context></context-group> | |
3396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 3491 | </trans-unit> |
3397 | <trans-unit id="8905995985388209337" datatype="html"> | 3492 | <trans-unit id="8905995985388209337" datatype="html"> |
3398 | <source>Accept</source> | 3493 | <source>Accept</source> |
3399 | <target state="new">Accept</target> | 3494 | <target state="new">Accept</target> |
3400 | 3495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">35</context></context-group> | |
3401 | 3496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group> | |
3402 | 3497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">33</context></context-group> | |
3403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3498 | </trans-unit> |
3404 | <trans-unit id="8415175881466057254" datatype="html"> | 3499 | <trans-unit id="8415175881466057254" datatype="html"> |
3405 | <source>Refuse</source> | 3500 | <source>Refuse</source> |
3406 | <target state="new">Refuse</target> | 3501 | <target state="new">Refuse</target> |
3407 | 3502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">36</context></context-group> | |
3408 | 3503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">34</context></context-group> | |
3409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 3504 | </trans-unit> |
3410 | <trans-unit id="6961112234462008319" datatype="html"> | 3505 | <trans-unit id="6961112234462008319" datatype="html"> |
3411 | <source>No follower found matching current filters.</source> | 3506 | <source>No follower found matching current filters.</source> |
3412 | <target state="new">No follower found matching current filters.</target> | 3507 | <target state="new">No follower found matching current filters.</target> |
3413 | 3508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">64</context></context-group> | |
3414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3509 | </trans-unit> |
3415 | <trans-unit id="2117404838551056159" datatype="html"> | 3510 | <trans-unit id="2117404838551056159" datatype="html"> |
3416 | <source>Your instance doesn't have any follower.</source> | 3511 | <source>Your instance doesn't have any follower.</source> |
3417 | <target state="new">Your instance doesn't have any follower.</target> | 3512 | <target state="new">Your instance doesn't have any follower.</target> |
3418 | 3513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">65</context></context-group> | |
3419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 3514 | </trans-unit> |
3420 | <trans-unit id="2845798909207198924" datatype="html"> | 3515 | <trans-unit id="2845798909207198924" datatype="html"> |
3421 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> | 3516 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> |
3422 | <target state="new">Showing | 3517 | <target state="new">Showing |
@@ -3424,36 +3519,33 @@ The link will expire within 1 hour.</target> | |||
3424 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3519 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3425 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers | 3520 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers |
3426 | </target> | 3521 | </target> |
3427 | 3522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">11</context></context-group> | |
3428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 3523 | </trans-unit> |
3429 | |||
3430 | |||
3431 | <trans-unit id="6571718060636962350" datatype="html"> | 3524 | <trans-unit id="6571718060636962350" datatype="html"> |
3432 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3525 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3433 | <target state="new">Redundancy allowed | 3526 | <target state="new">Redundancy allowed |
3434 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3527 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3435 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3528 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3436 | </target> | 3529 | </target> |
3437 | 3530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">34</context></context-group> | |
3438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 3531 | </trans-unit> |
3439 | |||
3440 | <trans-unit id="8246779176913476983" datatype="html"> | 3532 | <trans-unit id="8246779176913476983" datatype="html"> |
3441 | <source>Open instance in a new tab</source> | 3533 | <source>Open instance in a new tab</source> |
3442 | <target state="new">Open instance in a new tab</target> | 3534 | <target state="new">Open instance in a new tab</target> |
3443 | 3535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3444 | 3536 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">42</context></context-group> | |
3445 | 3537 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">42</context></context-group> | |
3446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 3538 | </trans-unit> |
3447 | <trans-unit id="9132918641931433659" datatype="html"> | 3539 | <trans-unit id="9132918641931433659" datatype="html"> |
3448 | <source>No host found matching current filters.</source> | 3540 | <source>No host found matching current filters.</source> |
3449 | <target state="new">No host found matching current filters.</target> | 3541 | <target state="new">No host found matching current filters.</target> |
3450 | 3542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">71</context></context-group> | |
3451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 3543 | </trans-unit> |
3452 | <trans-unit id="7274241885665071790" datatype="html"> | 3544 | <trans-unit id="7274241885665071790" datatype="html"> |
3453 | <source>Your instance is not following anyone.</source> | 3545 | <source>Your instance is not following anyone.</source> |
3454 | <target state="new">Your instance is not following anyone.</target> | 3546 | <target state="new">Your instance is not following anyone.</target> |
3455 | 3547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">72</context></context-group> | |
3456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 3548 | </trans-unit> |
3457 | <trans-unit id="4774348799569692380" datatype="html"> | 3549 | <trans-unit id="4774348799569692380" datatype="html"> |
3458 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3550 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
3459 | <target state="new">Showing | 3551 | <target state="new">Showing |
@@ -3461,18 +3553,18 @@ The link will expire within 1 hour.</target> | |||
3461 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3553 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3462 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts | 3554 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts |
3463 | </target> | 3555 | </target> |
3464 | 3556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">11</context></context-group> | |
3465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 3557 | </trans-unit> |
3466 | |||
3467 | <trans-unit id="9216117865911519658" datatype="html"> | 3558 | <trans-unit id="9216117865911519658" datatype="html"> |
3468 | <source>Action</source><target state="new">Action</target> | 3559 | <source>Action</source> |
3469 | 3560 | <target state="new">Action</target> | |
3470 | 3561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">30</context></context-group> | |
3471 | 3562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
3472 | 3563 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">22</context></context-group> | |
3473 | 3564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">22</context></context-group> | |
3474 | 3565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">30</context></context-group> | |
3475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 3566 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">30</context></context-group> |
3567 | </trans-unit> | ||
3476 | <trans-unit id="5968342253366599875" datatype="html"> | 3568 | <trans-unit id="5968342253366599875" datatype="html"> |
3477 | <source>Videos redundancies</source> | 3569 | <source>Videos redundancies</source> |
3478 | <target state="new">Videos redundancies</target> | 3570 | <target state="new">Videos redundancies</target> |
@@ -3488,30 +3580,30 @@ The link will expire within 1 hour.</target> | |||
3488 | <target state="new">Remote videos duplicated by my instance</target> | 3580 | <target state="new">Remote videos duplicated by my instance</target> |
3489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group> | 3581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group> |
3490 | </trans-unit> | 3582 | </trans-unit> |
3491 | |||
3492 | <trans-unit id="8363291180171434623" datatype="html"> | 3583 | <trans-unit id="8363291180171434623" datatype="html"> |
3493 | <source>Table parameters</source> | 3584 | <source>Table parameters</source> |
3494 | <target state="new">Table parameters</target> | 3585 | <target state="new">Table parameters</target> |
3495 | 3586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">47</context></context-group> | |
3496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 3587 | </trans-unit> |
3497 | <trans-unit id="5230110096688656830" datatype="html"> | 3588 | <trans-unit id="5230110096688656830" datatype="html"> |
3498 | <source>Select columns</source> | 3589 | <source>Select columns</source> |
3499 | <target state="new">Select columns</target> | 3590 | <target state="new">Select columns</target> |
3500 | 3591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">53</context></context-group> | |
3501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 3592 | </trans-unit> |
3502 | <trans-unit id="5893518121808195081" datatype="html"> | 3593 | <trans-unit id="5893518121808195081" datatype="html"> |
3503 | <source>Highlight banned users</source> | 3594 | <source>Highlight banned users</source> |
3504 | <target state="new">Highlight banned users</target> | 3595 | <target state="new">Highlight banned users</target> |
3505 | 3596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">59</context></context-group> | |
3506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3597 | </trans-unit> |
3507 | <trans-unit id="5248717555542428023" datatype="html"> | 3598 | <trans-unit id="5248717555542428023" datatype="html"> |
3508 | <source>Username</source> | 3599 | <source>Username</source> |
3509 | <target state="new">Username</target> | 3600 | <target state="new">Username</target> |
3510 | 3601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3511 | 3602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3512 | 3603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
3513 | 3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group> | |
3514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group> |
3606 | </trans-unit> | ||
3515 | <trans-unit id="5428411040014095392" datatype="html"> | 3607 | <trans-unit id="5428411040014095392" datatype="html"> |
3516 | <source>e.g. jane_doe</source> | 3608 | <source>e.g. jane_doe</source> |
3517 | <target state="new">e.g. jane_doe</target> | 3609 | <target state="new">e.g. jane_doe</target> |
@@ -3521,154 +3613,157 @@ The link will expire within 1 hour.</target> | |||
3521 | <trans-unit id="6612230394519751963" datatype="html"> | 3613 | <trans-unit id="6612230394519751963" datatype="html"> |
3522 | <source>john</source> | 3614 | <source>john</source> |
3523 | <target state="new">john</target> | 3615 | <target state="new">john</target> |
3524 | 3616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
3525 | 3617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
3526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3618 | </trans-unit> |
3527 | <trans-unit id="6475711663580561164" datatype="html"> | 3619 | <trans-unit id="6475711663580561164" datatype="html"> |
3528 | <source>mail@example.com</source> | 3620 | <source>mail@example.com</source> |
3529 | <target state="new">mail@example.com</target> | 3621 | <target state="new">mail@example.com</target> |
3530 | 3622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group> | |
3531 | 3623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group> | |
3532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3624 | </trans-unit> |
3533 | <trans-unit id="8371296837649897723" datatype="html"> | 3625 | <trans-unit id="8371296837649897723" datatype="html"> |
3534 | <source>If you leave the password empty, an email will be sent to the user.</source> | 3626 | <source>If you leave the password empty, an email will be sent to the user.</source> |
3535 | <target state="new"> | 3627 | <target state="new"> |
3536 | If you leave the password empty, an email will be sent to the user. | 3628 | If you leave the password empty, an email will be sent to the user. |
3537 | </target> | 3629 | </target> |
3538 | 3630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">120</context></context-group> | |
3539 | 3631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">120</context></context-group> | |
3540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">120</context></context-group></trans-unit> | 3632 | </trans-unit> |
3541 | <trans-unit id="4145496584631696119" datatype="html"> | 3633 | <trans-unit id="4145496584631696119" datatype="html"> |
3542 | <source>Role</source> | 3634 | <source>Role</source> |
3543 | <target state="new">Role</target> | 3635 | <target state="new">Role</target> |
3544 | 3636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3545 | 3637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 3638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group> |
3639 | </trans-unit> | ||
3547 | <trans-unit id="7046347992315328430" datatype="html"> | 3640 | <trans-unit id="7046347992315328430" datatype="html"> |
3548 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> | 3641 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> |
3549 | <target state="new"> | 3642 | <target state="new"> |
3550 | Transcoding is enabled. The video quota only takes into account | 3643 | Transcoding is enabled. The video quota only takes into account |
3551 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original | 3644 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original |
3552 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. | 3645 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. |
3553 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 3646 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
3554 | At most, this user could upload ~ | 3647 | At most, this user could upload ~ |
3555 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. | 3648 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. |
3556 | 3649 | ||
3557 | </target> | 3650 | </target> |
3558 | 3651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | |
3559 | 3652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | |
3560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 3653 | </trans-unit> |
3561 | <trans-unit id="2743014784334706527" datatype="html"> | 3654 | <trans-unit id="2743014784334706527" datatype="html"> |
3562 | <source>Daily video quota</source> | 3655 | <source>Daily video quota</source> |
3563 | <target state="new">Daily video quota</target> | 3656 | <target state="new">Daily video quota</target> |
3564 | 3657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">172</context></context-group> | |
3565 | 3658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">172</context></context-group> | |
3566 | 3659 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">13</context></context-group> | |
3567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 3660 | </trans-unit> |
3568 | <trans-unit id="2622255144026150901" datatype="html"> | 3661 | <trans-unit id="2622255144026150901" datatype="html"> |
3569 | <source>Auth plugin</source> | 3662 | <source>Auth plugin</source> |
3570 | <target state="new">Auth plugin</target> | 3663 | <target state="new">Auth plugin</target> |
3571 | 3664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3572 | 3665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 3666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">135</context></context-group> |
3667 | </trans-unit> | ||
3574 | <trans-unit id="588099657508661970" datatype="html"> | 3668 | <trans-unit id="588099657508661970" datatype="html"> |
3575 | <source>None (local authentication)</source> | 3669 | <source>None (local authentication)</source> |
3576 | <target state="new">None (local authentication)</target> | 3670 | <target state="new">None (local authentication)</target> |
3577 | 3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">192</context></context-group> | |
3578 | 3672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">192</context></context-group> | |
3579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">192</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 3673 | </trans-unit> |
3580 | <trans-unit id="2070907480317730379" datatype="html"> | 3674 | <trans-unit id="2070907480317730379" datatype="html"> |
3581 | <source>Doesn't need review before a video goes public</source> | 3675 | <source>Doesn't need review before a video goes public</source> |
3582 | <target state="new">Doesn't need review before a video goes public</target> | 3676 | <target state="new">Doesn't need review before a video goes public</target> |
3583 | 3677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group> | |
3584 | 3678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group> | |
3585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group></trans-unit> | 3679 | </trans-unit> |
3586 | <trans-unit id="6667250632809964191" datatype="html"> | 3680 | <trans-unit id="6667250632809964191" datatype="html"> |
3587 | <source>Send a link to reset the password by email to the user</source> | 3681 | <source>Send a link to reset the password by email to the user</source> |
3588 | <target state="new">Send a link to reset the password by email to the user</target> | 3682 | <target state="new">Send a link to reset the password by email to the user</target> |
3589 | 3683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
3590 | 3684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
3591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> | 3685 | </trans-unit> |
3592 | <trans-unit id="1412406834353485520" datatype="html"> | 3686 | <trans-unit id="1412406834353485520" datatype="html"> |
3593 | <source>Ask for new password</source> | 3687 | <source>Ask for new password</source> |
3594 | <target state="new">Ask for new password</target> | 3688 | <target state="new">Ask for new password</target> |
3595 | 3689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group> | |
3596 | 3690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group> | |
3597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group></trans-unit> | 3691 | </trans-unit> |
3598 | <trans-unit id="3791201588898094481" datatype="html"> | 3692 | <trans-unit id="3791201588898094481" datatype="html"> |
3599 | <source>Manually set the user password</source> | 3693 | <source>Manually set the user password</source> |
3600 | <target state="new">Manually set the user password</target> | 3694 | <target state="new">Manually set the user password</target> |
3601 | 3695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group> | |
3602 | 3696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group> | |
3603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit> | 3697 | </trans-unit> |
3604 | <trans-unit id="8461842260159597706" datatype="html"> | 3698 | <trans-unit id="8461842260159597706" datatype="html"> |
3605 | <source>Show</source> | 3699 | <source>Show</source> |
3606 | <target state="new">Show</target> | 3700 | <target state="new">Show</target> |
3607 | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
3608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 3702 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group> |
3703 | </trans-unit> | ||
3609 | <trans-unit id="8461609631969932886" datatype="html"> | 3704 | <trans-unit id="8461609631969932886" datatype="html"> |
3610 | <source>Hide</source> | 3705 | <source>Hide</source> |
3611 | <target state="new">Hide</target> | 3706 | <target state="new">Hide</target> |
3612 | 3707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">119</context></context-group> | |
3613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 3708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> |
3709 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group> | ||
3710 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group> | ||
3711 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">76</context></context-group> | ||
3712 | </trans-unit> | ||
3614 | <trans-unit id="7049348886126005391" datatype="html"> | 3713 | <trans-unit id="7049348886126005391" datatype="html"> |
3615 | <source>Batch actions</source> | 3714 | <source>Batch actions</source> |
3616 | <target state="new">Batch actions</target> | 3715 | <target state="new">Batch actions</target> |
3617 | 3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> | |
3618 | 3717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group> | |
3619 | 3718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group> | |
3620 | 3719 | </trans-unit> | |
3621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | ||
3622 | |||
3623 | |||
3624 | <trans-unit id="675721269041534709" datatype="html"> | 3720 | <trans-unit id="675721269041534709" datatype="html"> |
3625 | <source>The user was banned</source> | 3721 | <source>The user was banned</source> |
3626 | <target state="new">The user was banned</target> | 3722 | <target state="new">The user was banned</target> |
3627 | 3723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">109</context></context-group> | |
3628 | 3724 | </trans-unit> | |
3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | ||
3630 | <trans-unit id="2348557406282409966" datatype="html"> | 3725 | <trans-unit id="2348557406282409966" datatype="html"> |
3631 | <source>Open account in a new tab</source> | 3726 | <source>Open account in a new tab</source> |
3632 | <target state="new">Open account in a new tab</target> | 3727 | <target state="new">Open account in a new tab</target> |
3633 | 3728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">69</context></context-group> | |
3634 | 3729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">94</context></context-group> | |
3635 | 3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group> | |
3636 | 3731 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group> | |
3637 | 3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group> | |
3638 | 3733 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group> | |
3639 | 3734 | </trans-unit> | |
3640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | ||
3641 | <trans-unit id="3111569165173971676" datatype="html"> | 3735 | <trans-unit id="3111569165173971676" datatype="html"> |
3642 | <source>Deleted account</source> | 3736 | <source>Deleted account</source> |
3643 | <target state="new"> | 3737 | <target state="new"> |
3644 | Deleted account | 3738 | Deleted account |
3645 | </target> | 3739 | </target> |
3646 | 3740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">54</context></context-group> | |
3647 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 3741 | </trans-unit> |
3648 | <trans-unit id="3254358851993549668" datatype="html"> | 3742 | <trans-unit id="3254358851993549668" datatype="html"> |
3649 | <source>User's email must be verified to login</source> | 3743 | <source>User's email must be verified to login</source> |
3650 | <target state="new">User's email must be verified to login</target> | 3744 | <target state="new">User's email must be verified to login</target> |
3651 | 3745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group> | |
3652 | 3746 | </trans-unit> | |
3653 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group></trans-unit> | ||
3654 | <trans-unit id="3939342579126794385" datatype="html"> | 3747 | <trans-unit id="3939342579126794385" datatype="html"> |
3655 | <source>User's email is verified / User can login without email verification</source> | 3748 | <source>User's email is verified / User can login without email verification</source> |
3656 | <target state="new">User's email is verified / User can login without email verification</target> | 3749 | <target state="new">User's email is verified / User can login without email verification</target> |
3657 | 3750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">124</context></context-group> | |
3658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3751 | </trans-unit> |
3659 | <trans-unit id="242888077027281874" datatype="html"> | 3752 | <trans-unit id="242888077027281874" datatype="html"> |
3660 | <source>Total daily video quota</source> | 3753 | <source>Total daily video quota</source> |
3661 | <target state="new">Total daily video quota</target> | 3754 | <target state="new">Total daily video quota</target> |
3662 | 3755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group> | |
3663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 3756 | </trans-unit> |
3664 | <trans-unit id="1242902302929086301" datatype="html"> | 3757 | <trans-unit id="1242902302929086301" datatype="html"> |
3665 | <source>Ban reason:</source> | 3758 | <source>Ban reason:</source> |
3666 | <target state="new">Ban reason:</target> | 3759 | <target state="new">Ban reason:</target> |
3667 | 3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">163</context></context-group> | |
3668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="6124612368324200166" datatype="html"> | 3761 | </trans-unit> |
3669 | <source>Banned users</source><target state="new">Banned users</target> | 3762 | <trans-unit id="6124612368324200166" datatype="html"> |
3670 | 3763 | <source>Banned users</source> | |
3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 3764 | <target state="new">Banned users</target> |
3765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">45</context></context-group> | ||
3766 | </trans-unit> | ||
3672 | <trans-unit id="5642198289374753866" datatype="html"> | 3767 | <trans-unit id="5642198289374753866" datatype="html"> |
3673 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 3768 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
3674 | <target state="new">Showing | 3769 | <target state="new">Showing |
@@ -3676,50 +3771,49 @@ The link will expire within 1 hour.</target> | |||
3676 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3771 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3677 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users | 3772 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users |
3678 | </target> | 3773 | </target> |
3679 | 3774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">11</context></context-group> | |
3680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 3775 | </trans-unit> |
3681 | <trans-unit id="2049290282534091182" datatype="html"> | 3776 | <trans-unit id="2049290282534091182" datatype="html"> |
3682 | <source>Moderation</source> | 3777 | <source>Moderation</source> |
3683 | <target state="new">Moderation</target> | 3778 | <target state="new">Moderation</target> |
3684 | 3779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | |
3685 | 3780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">70</context></context-group> | |
3686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group> |
3687 | 3782 | </trans-unit> | |
3688 | |||
3689 | |||
3690 | |||
3691 | |||
3692 | |||
3693 | |||
3694 | <trans-unit id="746099155736913817" datatype="html"> | 3783 | <trans-unit id="746099155736913817" datatype="html"> |
3695 | <source>Video blocks</source> | 3784 | <source>Video blocks</source> |
3696 | <target state="new">Video blocks</target> | 3785 | <target state="new">Video blocks</target> |
3697 | 3786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group> | |
3698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group> |
3788 | </trans-unit> | ||
3699 | <trans-unit id="7815838401315213887" datatype="html"> | 3789 | <trans-unit id="7815838401315213887" datatype="html"> |
3700 | <source>Muted accounts</source> | 3790 | <source>Muted accounts</source> |
3701 | <target state="new">Muted accounts</target> | 3791 | <target state="new">Muted accounts</target> |
3702 | 3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group> | |
3703 | 3793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">90</context></context-group> | |
3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group> |
3795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group> | ||
3796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | ||
3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | ||
3798 | </trans-unit> | ||
3705 | <trans-unit id="5668793810321242853" datatype="html"> | 3799 | <trans-unit id="5668793810321242853" datatype="html"> |
3706 | <source>Muted servers</source> | 3800 | <source>Muted servers</source> |
3707 | <target state="new">Muted servers</target> | 3801 | <target state="new">Muted servers</target> |
3708 | 3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">125</context></context-group> | |
3709 | 3803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">94</context></context-group> | |
3710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group> |
3711 | 3805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3712 | 3806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3713 | 3807 | </trans-unit> | |
3714 | <trans-unit id="2343069726009080052" datatype="html"> | 3808 | <trans-unit id="2343069726009080052" datatype="html"> |
3715 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3809 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3716 | <target state="new">Video | 3810 | <target state="new">Video |
3717 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3811 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3718 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3812 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3719 | </target> | 3813 | </target> |
3720 | 3814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group> | |
3721 | 3815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">26</context></context-group> | |
3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 3816 | </trans-unit> |
3723 | <trans-unit id="3122686335401195400" datatype="html"> | 3817 | <trans-unit id="3122686335401195400" datatype="html"> |
3724 | <source>Total size</source> | 3818 | <source>Total size</source> |
3725 | <target state="new">Total size</target> | 3819 | <target state="new">Total size</target> |
@@ -3733,32 +3827,36 @@ The link will expire within 1 hour.</target> | |||
3733 | <trans-unit id="7423116442791683693" datatype="html"> | 3827 | <trans-unit id="7423116442791683693" datatype="html"> |
3734 | <source>Your instance doesn't mirror any video.</source> | 3828 | <source>Your instance doesn't mirror any video.</source> |
3735 | <target state="new">Your instance doesn't mirror any video.</target> | 3829 | <target state="new">Your instance doesn't mirror any video.</target> |
3736 | 3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">79</context></context-group> | |
3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 3831 | </trans-unit> |
3738 | <trans-unit id="1944582937285351613" datatype="html"> | 3832 | <trans-unit id="1944582937285351613" datatype="html"> |
3739 | <source>Your instance has no mirrored videos.</source> | 3833 | <source>Your instance has no mirrored videos.</source> |
3740 | <target state="new">Your instance has no mirrored videos.</target> | 3834 | <target state="new">Your instance has no mirrored videos.</target> |
3741 | 3835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">80</context></context-group> | |
3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 3836 | </trans-unit> |
3743 | <trans-unit id="7292311893283564173" datatype="html"> | 3837 | <trans-unit id="7292311893283564173" datatype="html"> |
3744 | <source>Enabled strategies stats</source> | 3838 | <source>Enabled strategies stats</source> |
3745 | <target state="new">Enabled strategies stats</target> | 3839 | <target state="new">Enabled strategies stats</target> |
3746 | 3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">89</context></context-group> | |
3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">89</context></context-group></trans-unit> | 3841 | </trans-unit> |
3748 | <trans-unit id="7595922272001217567" datatype="html"> | 3842 | <trans-unit id="7595922272001217567" datatype="html"> |
3749 | <source>No redundancy strategy is enabled on your instance.</source> | 3843 | <source>No redundancy strategy is enabled on your instance.</source> |
3750 | <target state="new"> | 3844 | <target state="new"> |
3751 | No redundancy strategy is enabled on your instance. | 3845 | No redundancy strategy is enabled on your instance. |
3752 | </target> | 3846 | </target> |
3753 | 3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">93</context></context-group> | |
3754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit><trans-unit id="4824046935922837124" datatype="html"> | 3848 | </trans-unit> |
3755 | <source>Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</source><target state="new">Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</target> | 3849 | <trans-unit id="4824046935922837124" datatype="html"> |
3850 | <source>Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</source> | ||
3851 | <target state="new">Used (<x id="PH" equiv-text="this.bytesToHuman(stats.totalUsed)"/>)</target> | ||
3756 | <context-group purpose="location"> | 3852 | <context-group purpose="location"> |
3757 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | 3853 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
3758 | <context context-type="linenumber">99</context> | 3854 | <context context-type="linenumber">99</context> |
3759 | </context-group> | 3855 | </context-group> |
3760 | </trans-unit><trans-unit id="5874809640561431793" datatype="html"> | 3856 | </trans-unit> |
3761 | <source>Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</source><target state="new">Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</target> | 3857 | <trans-unit id="5874809640561431793" datatype="html"> |
3858 | <source>Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</source> | ||
3859 | <target state="new">Available (<x id="PH" equiv-text="this.bytesToHuman(totalAvailable)"/>)</target> | ||
3762 | <context-group purpose="location"> | 3860 | <context-group purpose="location"> |
3763 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | 3861 | <context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
3764 | <context context-type="linenumber">105</context> | 3862 | <context context-type="linenumber">105</context> |
@@ -3767,41 +3865,47 @@ The link will expire within 1 hour.</target> | |||
3767 | <trans-unit id="7574091010118901399" datatype="html"> | 3865 | <trans-unit id="7574091010118901399" datatype="html"> |
3768 | <source>Sensitive</source> | 3866 | <source>Sensitive</source> |
3769 | <target state="new">Sensitive</target> | 3867 | <target state="new">Sensitive</target> |
3770 | 3868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
3771 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3869 | </trans-unit> |
3772 | <trans-unit id="2478877938420291792" datatype="html"> | 3870 | <trans-unit id="2478877938420291792" datatype="html"> |
3773 | <source>Unfederated</source> | 3871 | <source>Unfederated</source> |
3774 | <target state="new">Unfederated</target> | 3872 | <target state="new">Unfederated</target> |
3775 | 3873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">28</context></context-group> | |
3776 | 3874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">60</context></context-group> | |
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 3875 | </trans-unit> |
3778 | <trans-unit id="7692347838587821095" datatype="html"> | 3876 | <trans-unit id="7692347838587821095" datatype="html"> |
3779 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3877 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3780 | <target state="new">Date | 3878 | <target state="new">Date |
3781 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3879 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3782 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3880 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3783 | </target> | 3881 | </target> |
3784 | 3882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> | |
3785 | 3883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> | |
3786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3884 | </trans-unit> |
3787 | <trans-unit id="1451763834047485033" datatype="html"> | 3885 | <trans-unit id="1451763834047485033" datatype="html"> |
3788 | <source>Select this row</source> | 3886 | <source>Select this row</source> |
3789 | <target state="new">Select this row</target> | 3887 | <target state="new">Select this row</target> |
3790 | 3888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">54</context></context-group> | |
3791 | 3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group> | |
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit><trans-unit id="4043531994869127329" datatype="html"> | 3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">51</context></context-group> |
3793 | <source>See full comment</source><target state="new">See full comment</target> | 3891 | </trans-unit> |
3794 | 3892 | <trans-unit id="4043531994869127329" datatype="html"> | |
3795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 3893 | <source>See full comment</source> |
3894 | <target state="new">See full comment</target> | ||
3895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">58</context></context-group> | ||
3896 | </trans-unit> | ||
3796 | <trans-unit id="3193976279273491157" datatype="html"> | 3897 | <trans-unit id="3193976279273491157" datatype="html"> |
3797 | <source>Actions</source> | 3898 | <source>Actions</source> |
3798 | <target state="new">Actions</target> | 3899 | <target state="new">Actions</target> |
3799 | 3900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
3800 | 3901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3801 | 3902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">64</context></context-group> | |
3802 | 3903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group> | |
3803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit><trans-unit id="8390803680962035202" datatype="html"> | 3904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group> |
3804 | <source>Follower</source><target state="new">Follower</target> | 3905 | </trans-unit> |
3906 | <trans-unit id="8390803680962035202" datatype="html"> | ||
3907 | <source>Follower</source> | ||
3908 | <target state="new">Follower</target> | ||
3805 | <context-group purpose="location"> | 3909 | <context-group purpose="location"> |
3806 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 3910 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
3807 | <context context-type="linenumber">24</context> | 3911 | <context context-type="linenumber">24</context> |
@@ -3810,70 +3914,88 @@ The link will expire within 1 hour.</target> | |||
3810 | <trans-unit id="4691552465058437520" datatype="html"> | 3914 | <trans-unit id="4691552465058437520" datatype="html"> |
3811 | <source>Commented video</source> | 3915 | <source>Commented video</source> |
3812 | <target state="new">Commented video</target> | 3916 | <target state="new">Commented video</target> |
3813 | 3917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">81</context></context-group> | |
3814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3918 | </trans-unit> |
3815 | <trans-unit id="7266085473379376028" datatype="html"> | 3919 | <trans-unit id="7266085473379376028" datatype="html"> |
3816 | <source>No comments found matching current filters.</source> | 3920 | <source>No comments found matching current filters.</source> |
3817 | <target state="new">No comments found matching current filters.</target> | 3921 | <target state="new">No comments found matching current filters.</target> |
3818 | 3922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">106</context></context-group> | |
3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 3923 | </trans-unit> |
3820 | <trans-unit id="2398388496754671928" datatype="html"> | 3924 | <trans-unit id="2398388496754671928" datatype="html"> |
3821 | <source>No comments found.</source> | 3925 | <source>No comments found.</source> |
3822 | <target state="new">No comments found.</target> | 3926 | <target state="new">No comments found.</target> |
3823 | 3927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group> | |
3824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit><trans-unit id="4604870995665811499" datatype="html"> | 3928 | </trans-unit> |
3825 | <source>Local comments</source><target state="new">Local comments</target> | 3929 | <trans-unit id="4604870995665811499" datatype="html"> |
3826 | 3930 | <source>Local comments</source> | |
3827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit><trans-unit id="2721988499779041837" datatype="html"> | 3931 | <target state="new">Local comments</target> |
3828 | <source>Remote comments</source><target state="new">Remote comments</target> | 3932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">51</context></context-group> |
3829 | 3933 | </trans-unit> | |
3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 3934 | <trans-unit id="2721988499779041837" datatype="html"> |
3935 | <source>Remote comments</source> | ||
3936 | <target state="new">Remote comments</target> | ||
3937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">55</context></context-group> | ||
3938 | </trans-unit> | ||
3831 | <trans-unit id="1420624050293070194" datatype="html"> | 3939 | <trans-unit id="1420624050293070194" datatype="html"> |
3832 | <source>No abuses found matching current filters.</source> | 3940 | <source>No abuses found matching current filters.</source> |
3833 | <target state="new">No abuses found matching current filters.</target> | 3941 | <target state="new">No abuses found matching current filters.</target> |
3834 | 3942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">152</context></context-group> | |
3835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 3943 | </trans-unit> |
3836 | <trans-unit id="639328713281980021" datatype="html"> | 3944 | <trans-unit id="639328713281980021" datatype="html"> |
3837 | <source>No abuses found.</source> | 3945 | <source>No abuses found.</source> |
3838 | <target state="new">No abuses found.</target> | 3946 | <target state="new">No abuses found.</target> |
3839 | 3947 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">153</context></context-group> | |
3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">153</context></context-group></trans-unit><trans-unit id="1807029821872995706" datatype="html"> | 3948 | </trans-unit> |
3841 | <source>Unsolved reports</source><target state="new">Unsolved reports</target> | 3949 | <trans-unit id="1807029821872995706" datatype="html"> |
3842 | 3950 | <source>Unsolved reports</source> | |
3843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="2570256912317308673" datatype="html"> | 3951 | <target state="new">Unsolved reports</target> |
3844 | <source>Accepted reports</source><target state="new">Accepted reports</target> | 3952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">43</context></context-group> |
3845 | 3953 | </trans-unit> | |
3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="4335414817109654558" datatype="html"> | 3954 | <trans-unit id="2570256912317308673" datatype="html"> |
3847 | <source>Refused reports</source><target state="new">Refused reports</target> | 3955 | <source>Accepted reports</source> |
3848 | 3956 | <target state="new">Accepted reports</target> | |
3849 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit><trans-unit id="5604806676748121035" datatype="html"> | 3957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">47</context></context-group> |
3850 | <source>Reports with blocked videos</source><target state="new">Reports with blocked videos</target> | 3958 | </trans-unit> |
3851 | 3959 | <trans-unit id="4335414817109654558" datatype="html"> | |
3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="5105869928182826553" datatype="html"> | 3960 | <source>Refused reports</source> |
3853 | <source>Reports with deleted videos</source><target state="new">Reports with deleted videos</target> | 3961 | <target state="new">Refused reports</target> |
3854 | 3962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">51</context></context-group> | |
3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3963 | </trans-unit> |
3964 | <trans-unit id="5604806676748121035" datatype="html"> | ||
3965 | <source>Reports with blocked videos</source> | ||
3966 | <target state="new">Reports with blocked videos</target> | ||
3967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">55</context></context-group> | ||
3968 | </trans-unit> | ||
3969 | <trans-unit id="5105869928182826553" datatype="html"> | ||
3970 | <source>Reports with deleted videos</source> | ||
3971 | <target state="new">Reports with deleted videos</target> | ||
3972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">59</context></context-group> | ||
3973 | </trans-unit> | ||
3856 | <trans-unit id="4678289986918934018" datatype="html"> | 3974 | <trans-unit id="4678289986918934018" datatype="html"> |
3857 | <source>Block reason:</source> | 3975 | <source>Block reason:</source> |
3858 | <target state="new">Block reason:</target> | 3976 | <target state="new">Block reason:</target> |
3859 | 3977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">75</context></context-group> | |
3860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 3978 | </trans-unit> |
3861 | <trans-unit id="8390860433951751429" datatype="html"> | 3979 | <trans-unit id="8390860433951751429" datatype="html"> |
3862 | <source>No blocked video found matching current filters.</source> | 3980 | <source>No blocked video found matching current filters.</source> |
3863 | <target state="new">No blocked video found matching current filters.</target> | 3981 | <target state="new">No blocked video found matching current filters.</target> |
3864 | 3982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">92</context></context-group> | |
3865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 3983 | </trans-unit> |
3866 | <trans-unit id="5030329587275248535" datatype="html"> | 3984 | <trans-unit id="5030329587275248535" datatype="html"> |
3867 | <source>No blocked video found.</source> | 3985 | <source>No blocked video found.</source> |
3868 | <target state="new">No blocked video found.</target> | 3986 | <target state="new">No blocked video found.</target> |
3869 | 3987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">93</context></context-group> | |
3870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit><trans-unit id="7755288609601798418" datatype="html"> | 3988 | </trans-unit> |
3871 | <source>Automatic blocks</source><target state="new">Automatic blocks</target> | 3989 | <trans-unit id="7755288609601798418" datatype="html"> |
3872 | 3990 | <source>Automatic blocks</source> | |
3873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit><trans-unit id="6510868134640657079" datatype="html"> | 3991 | <target state="new">Automatic blocks</target> |
3874 | <source>Manual blocks</source><target state="new">Manual blocks</target> | 3992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">34</context></context-group> |
3875 | 3993 | </trans-unit> | |
3876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 3994 | <trans-unit id="6510868134640657079" datatype="html"> |
3995 | <source>Manual blocks</source> | ||
3996 | <target state="new">Manual blocks</target> | ||
3997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">38</context></context-group> | ||
3998 | </trans-unit> | ||
3877 | <trans-unit id="2143435845912984377" datatype="html"> | 3999 | <trans-unit id="2143435845912984377" datatype="html"> |
3878 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 4000 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
3879 | <target state="new">Showing | 4001 | <target state="new">Showing |
@@ -3881,14 +4003,16 @@ The link will expire within 1 hour.</target> | |||
3881 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 4003 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3882 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos | 4004 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos |
3883 | </target> | 4005 | </target> |
3884 | 4006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">11</context></context-group> | |
3885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 4007 | </trans-unit> |
3886 | <trans-unit id="1868606282505332204" datatype="html"> | 4008 | <trans-unit id="1868606282505332204" datatype="html"> |
3887 | <source>Reports</source> | 4009 | <source>Reports</source> |
3888 | <target state="new">Reports</target> | 4010 | <target state="new">Reports</target> |
3889 | 4011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group> | |
3890 | 4012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 4013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">34</context></context-group> |
4014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group> | ||
4015 | </trans-unit> | ||
3892 | <trans-unit id="7075448128175750939" datatype="html"> | 4016 | <trans-unit id="7075448128175750939" datatype="html"> |
3893 | <source>Moderation comment</source> | 4017 | <source>Moderation comment</source> |
3894 | <target state="new">Moderation comment</target> | 4018 | <target state="new">Moderation comment</target> |
@@ -3899,105 +4023,97 @@ The link will expire within 1 hour.</target> | |||
3899 | <target state="new"> | 4023 | <target state="new"> |
3900 | This comment can only be seen by you or the other moderators. | 4024 | This comment can only be seen by you or the other moderators. |
3901 | </target> | 4025 | </target> |
3902 | 4026 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">20</context></context-group> | |
3903 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 4027 | </trans-unit> |
3904 | <trans-unit id="3981851640772035362" datatype="html"> | 4028 | <trans-unit id="3981851640772035362" datatype="html"> |
3905 | <source>Update this comment</source> | 4029 | <source>Update this comment</source> |
3906 | <target state="new">Update this comment</target> | 4030 | <target state="new">Update this comment</target> |
3907 | 4031 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">30</context></context-group> | |
3908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 4032 | </trans-unit> |
3909 | |||
3910 | |||
3911 | |||
3912 | |||
3913 | |||
3914 | |||
3915 | <trans-unit id="730589419287534524" datatype="html"> | 4033 | <trans-unit id="730589419287534524" datatype="html"> |
3916 | <source>Reporter</source> | 4034 | <source>Reporter</source> |
3917 | <target state="new">Reporter</target> | 4035 | <target state="new">Reporter</target> |
3918 | 4036 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> | |
3919 | 4037 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">21</context></context-group> | |
3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 4038 | </trans-unit> |
3921 | |||
3922 | |||
3923 | <trans-unit id="6549265851868599441" datatype="html"> | 4039 | <trans-unit id="6549265851868599441" datatype="html"> |
3924 | <source>Video</source> | 4040 | <source>Video</source> |
3925 | <target state="new">Video</target> | 4041 | <target state="new">Video</target> |
3926 | 4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3927 | 4043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">40</context></context-group> | |
3928 | 4044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | |
3929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 4045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group> |
4046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group> | ||
4047 | </trans-unit> | ||
3930 | <trans-unit id="2662644497259948010" datatype="html"> | 4048 | <trans-unit id="2662644497259948010" datatype="html"> |
3931 | <source>Comment</source> | 4049 | <source>Comment</source> |
3932 | <target state="new">Comment</target> | 4050 | <target state="new">Comment</target> |
3933 | 4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group> | |
3934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group> |
4053 | </trans-unit> | ||
3935 | <trans-unit id="1359961255805685312" datatype="html"> | 4054 | <trans-unit id="1359961255805685312" datatype="html"> |
3936 | <source>This video has been reported multiple times.</source> | 4055 | <source>This video has been reported multiple times.</source> |
3937 | <target state="new">This video has been reported multiple times.</target> | 4056 | <target state="new">This video has been reported multiple times.</target> |
3938 | 4057 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group> | |
3939 | 4058 | </trans-unit> | |
3940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | ||
3941 | <trans-unit id="8103613717136753118" datatype="html"> | 4059 | <trans-unit id="8103613717136753118" datatype="html"> |
3942 | <source>The video was blocked</source> | 4060 | <source>The video was blocked</source> |
3943 | <target state="new">The video was blocked</target> | 4061 | <target state="new">The video was blocked</target> |
3944 | 4062 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">73</context></context-group> | |
3945 | 4063 | </trans-unit> | |
3946 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | ||
3947 | <trans-unit id="5021295327106206941" datatype="html"> | 4064 | <trans-unit id="5021295327106206941" datatype="html"> |
3948 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | 4065 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> |
3949 | <target state="new">by | 4066 | <target state="new">by |
3950 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on | 4067 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on |
3951 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> | 4068 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> |
3952 | </target> | 4069 | </target> |
3953 | 4070 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">85</context></context-group> | |
3954 | 4071 | </trans-unit> | |
3955 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | ||
3956 | <trans-unit id="1443698606045744844" datatype="html"> | 4072 | <trans-unit id="1443698606045744844" datatype="html"> |
3957 | <source>Video was deleted</source> | 4073 | <source>Video was deleted</source> |
3958 | <target state="new">Video was deleted</target> | 4074 | <target state="new">Video was deleted</target> |
3959 | 4075 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">79</context></context-group> | |
3960 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 4076 | </trans-unit> |
3961 | <trans-unit id="1530731524535521716" datatype="html"> | 4077 | <trans-unit id="1530731524535521716" datatype="html"> |
3962 | <source>Account deleted</source> | 4078 | <source>Account deleted</source> |
3963 | <target state="new"> | 4079 | <target state="new"> |
3964 | Account deleted | 4080 | Account deleted |
3965 | </target> | 4081 | </target> |
3966 | 4082 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">110</context></context-group> | |
3967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">110</context></context-group></trans-unit> | 4083 | </trans-unit> |
3968 | <trans-unit id="1191715835847858871" datatype="html"> | 4084 | <trans-unit id="1191715835847858871" datatype="html"> |
3969 | <source>Open video in a new tab</source> | 4085 | <source>Open video in a new tab</source> |
3970 | <target state="new">Open video in a new tab</target> | 4086 | <target state="new">Open video in a new tab</target> |
3971 | 4087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">47</context></context-group> | |
3972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 4088 | </trans-unit> |
3973 | <trans-unit id="3301856295120048857" datatype="html"> | 4089 | <trans-unit id="3301856295120048857" datatype="html"> |
3974 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 4090 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3975 | <target state="new">State | 4091 | <target state="new">State |
3976 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 4092 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3977 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 4093 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3978 | </target> | 4094 | </target> |
3979 | 4095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">25</context></context-group> | |
3980 | 4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">32</context></context-group> | |
3981 | 4097 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">24</context></context-group> | |
3982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 4098 | </trans-unit> |
3983 | <trans-unit id="6452372740127749380" datatype="html"> | 4099 | <trans-unit id="6452372740127749380" datatype="html"> |
3984 | <source>Messages</source> | 4100 | <source>Messages</source> |
3985 | <target state="new">Messages</target> | 4101 | <target state="new">Messages</target> |
3986 | 4102 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">25</context></context-group> | |
3987 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 4103 | </trans-unit> |
3988 | <trans-unit id="1969144763032891922" datatype="html"> | 4104 | <trans-unit id="1969144763032891922" datatype="html"> |
3989 | <source>Internal note</source> | 4105 | <source>Internal note</source> |
3990 | <target state="new">Internal note</target> | 4106 | <target state="new">Internal note</target> |
3991 | 4107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">26</context></context-group> | |
3992 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 4108 | </trans-unit> |
3993 | <trans-unit id="7418735164633152705" datatype="html"> | 4109 | <trans-unit id="7418735164633152705" datatype="html"> |
3994 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 4110 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3995 | <target state="new">Score | 4111 | <target state="new">Score |
3996 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 4112 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3997 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 4113 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3998 | </target> | 4114 | </target> |
3999 | 4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">26</context></context-group> | |
4000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 4116 | </trans-unit> |
4001 | <trans-unit id="9173448803033928792" datatype="html"> | 4117 | <trans-unit id="9173448803033928792" datatype="html"> |
4002 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | 4118 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> |
4003 | <target state="new">Showing | 4119 | <target state="new">Showing |
@@ -4005,79 +4121,81 @@ The link will expire within 1 hour.</target> | |||
4005 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 4121 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
4006 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports | 4122 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports |
4007 | </target> | 4123 | </target> |
4008 | 4124 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">6</context></context-group> | |
4009 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 4125 | </trans-unit> |
4010 | <trans-unit id="3109314382334906782" datatype="html"> | 4126 | <trans-unit id="3109314382334906782" datatype="html"> |
4011 | <source>Reportee</source> | 4127 | <source>Reportee</source> |
4012 | <target state="new">Reportee</target> | 4128 | <target state="new">Reportee</target> |
4013 | 4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> | |
4014 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4130 | </trans-unit> |
4015 | <trans-unit id="1258618443362430782" datatype="html"> | 4131 | <trans-unit id="1258618443362430782" datatype="html"> |
4016 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> | 4132 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> |
4017 | <target state="new"> | 4133 | <target state="new"> |
4018 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> | 4134 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> |
4019 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 4135 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
4020 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 4136 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
4021 | </target> | 4137 | </target> |
4022 | 4138 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> | |
4023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 4139 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> |
4140 | </trans-unit> | ||
4024 | <trans-unit id="6540177673229220400" datatype="html"> | 4141 | <trans-unit id="6540177673229220400" datatype="html"> |
4025 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 4142 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
4026 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { | 4143 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { |
4027 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } | 4144 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } |
4028 | </target> | 4145 | </target> |
4029 | 4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">22</context></context-group> | |
4030 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 4147 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">42</context></context-group> |
4148 | </trans-unit> | ||
4031 | <trans-unit id="7239750919884229270" datatype="html"> | 4149 | <trans-unit id="7239750919884229270" datatype="html"> |
4032 | <source>Updated</source> | 4150 | <source>Updated</source> |
4033 | <target state="new">Updated</target> | 4151 | <target state="new">Updated</target> |
4034 | 4152 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">48</context></context-group> | |
4035 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4153 | </trans-unit> |
4036 | <trans-unit id="6409548912081699487" datatype="html"> | 4154 | <trans-unit id="6409548912081699487" datatype="html"> |
4037 | <source>Mute domain</source> | 4155 | <source>Mute domain</source> |
4038 | <target state="new">Mute domain</target> | 4156 | <target state="new">Mute domain</target> |
4039 | 4157 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">18</context></context-group> | |
4040 | 4158 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">18</context></context-group> | |
4041 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 4159 | </trans-unit> |
4042 | <trans-unit id="2381859602529023966" datatype="html"> | 4160 | <trans-unit id="2381859602529023966" datatype="html"> |
4043 | <source>Instance</source> | 4161 | <source>Instance</source> |
4044 | <target state="new">Instance</target> | 4162 | <target state="new">Instance</target> |
4045 | 4163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | |
4046 | 4164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">217</context></context-group> | |
4047 | 4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group> | |
4048 | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group> | |
4049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">217</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 4167 | </trans-unit> |
4050 | <trans-unit id="1300704815627663264" datatype="html"> | 4168 | <trans-unit id="1300704815627663264" datatype="html"> |
4051 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 4169 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
4052 | <target state="new">Muted at | 4170 | <target state="new">Muted at |
4053 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 4171 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
4054 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 4172 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
4055 | </target> | 4173 | </target> |
4056 | 4174 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group> | |
4057 | 4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group> | |
4058 | 4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">32</context></context-group> | |
4059 | 4177 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">32</context></context-group> | |
4060 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 4178 | </trans-unit> |
4061 | <trans-unit id="6453471031802119612" datatype="html"> | 4179 | <trans-unit id="6453471031802119612" datatype="html"> |
4062 | <source>Unmute</source> | 4180 | <source>Unmute</source> |
4063 | <target state="new">Unmute</target> | 4181 | <target state="new">Unmute</target> |
4064 | 4182 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">31</context></context-group> | |
4065 | 4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">31</context></context-group> | |
4066 | 4184 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">39</context></context-group> | |
4067 | 4185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">39</context></context-group> | |
4068 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4186 | </trans-unit> |
4069 | <trans-unit id="6728985502447585050" datatype="html"> | 4187 | <trans-unit id="6728985502447585050" datatype="html"> |
4070 | <source>No server found matching current filters.</source> | 4188 | <source>No server found matching current filters.</source> |
4071 | <target state="new">No server found matching current filters.</target> | 4189 | <target state="new">No server found matching current filters.</target> |
4072 | 4190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">55</context></context-group> | |
4073 | 4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">55</context></context-group> | |
4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 4192 | </trans-unit> |
4075 | <trans-unit id="299774363533169870" datatype="html"> | 4193 | <trans-unit id="299774363533169870" datatype="html"> |
4076 | <source>No server found.</source> | 4194 | <source>No server found.</source> |
4077 | <target state="new">No server found.</target> | 4195 | <target state="new">No server found.</target> |
4078 | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">56</context></context-group> | |
4079 | 4197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">56</context></context-group> | |
4080 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 4198 | </trans-unit> |
4081 | <trans-unit id="6250599179731937899" datatype="html"> | 4199 | <trans-unit id="6250599179731937899" datatype="html"> |
4082 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> | 4200 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> |
4083 | <target state="new">Showing | 4201 | <target state="new">Showing |
@@ -4085,56 +4203,56 @@ The link will expire within 1 hour.</target> | |||
4085 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 4203 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
4086 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances | 4204 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances |
4087 | </target> | 4205 | </target> |
4088 | 4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group> | |
4089 | 4207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group> | |
4090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 4208 | </trans-unit> |
4091 | <trans-unit id="4917252294930256268" datatype="html"> | 4209 | <trans-unit id="4917252294930256268" datatype="html"> |
4092 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> | 4210 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> |
4093 | <target state="new"> | 4211 | <target state="new"> |
4094 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. | 4212 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. |
4095 | </target> | 4213 | </target> |
4096 | 4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">27</context></context-group> | |
4097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 4215 | </trans-unit> |
4098 | <trans-unit id="4058814854824495833" datatype="html"> | 4216 | <trans-unit id="4058814854824495833" datatype="html"> |
4099 | <source>Mute domains</source> | 4217 | <source>Mute domains</source> |
4100 | <target state="new">Mute domains</target> | 4218 | <target state="new">Mute domains</target> |
4101 | 4219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">63</context></context-group> | |
4102 | 4220 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">63</context></context-group> | |
4103 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">63</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 4221 | </trans-unit> |
4104 | <trans-unit id="4086606389696938932" datatype="html"> | 4222 | <trans-unit id="4086606389696938932" datatype="html"> |
4105 | <source>Account</source> | 4223 | <source>Account</source> |
4106 | <target state="new">Account</target> | 4224 | <target state="new">Account</target> |
4107 | 4225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
4108 | 4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
4109 | 4227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 4228 | </trans-unit> |
4111 | <trans-unit id="8564972645418093229" datatype="html"> | 4229 | <trans-unit id="8564972645418093229" datatype="html"> |
4112 | <source>No account found matching current filters.</source> | 4230 | <source>No account found matching current filters.</source> |
4113 | <target state="new">No account found matching current filters.</target> | 4231 | <target state="new">No account found matching current filters.</target> |
4114 | 4232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">53</context></context-group> | |
4115 | 4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">53</context></context-group> | |
4116 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 4234 | </trans-unit> |
4117 | <trans-unit id="3819155299647062711" datatype="html"> | 4235 | <trans-unit id="3819155299647062711" datatype="html"> |
4118 | <source>No account found.</source> | 4236 | <source>No account found.</source> |
4119 | <target state="new">No account found.</target> | 4237 | <target state="new">No account found.</target> |
4120 | 4238 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">54</context></context-group> | |
4121 | 4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">54</context></context-group> | |
4122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 4240 | </trans-unit> |
4123 | <trans-unit id="2338185419645468935" datatype="html"> | 4241 | <trans-unit id="2338185419645468935" datatype="html"> |
4124 | <source>List installed plugins</source> | 4242 | <source>List installed plugins</source> |
4125 | <target state="new">List installed plugins</target> | 4243 | <target state="new">List installed plugins</target> |
4126 | 4244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">26</context></context-group> | |
4127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 4245 | </trans-unit> |
4128 | <trans-unit id="8897412584195581488" datatype="html"> | 4246 | <trans-unit id="8897412584195581488" datatype="html"> |
4129 | <source>Search plugins</source> | 4247 | <source>Search plugins</source> |
4130 | <target state="new">Search plugins</target> | 4248 | <target state="new">Search plugins</target> |
4131 | 4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">35</context></context-group> | |
4132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 4250 | </trans-unit> |
4133 | <trans-unit id="4994333937800672218" datatype="html"> | 4251 | <trans-unit id="4994333937800672218" datatype="html"> |
4134 | <source>Show plugin</source> | 4252 | <source>Show plugin</source> |
4135 | <target state="new">Show plugin</target> | 4253 | <target state="new">Show plugin</target> |
4136 | 4254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">44</context></context-group> | |
4137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 4255 | </trans-unit> |
4138 | <trans-unit id="602667807232759122" datatype="html"> | 4256 | <trans-unit id="602667807232759122" datatype="html"> |
4139 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 4257 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
4140 | <target state="new">Showing | 4258 | <target state="new">Showing |
@@ -4148,20 +4266,25 @@ The link will expire within 1 hour.</target> | |||
4148 | <trans-unit id="8259696070728377358" datatype="html"> | 4266 | <trans-unit id="8259696070728377358" datatype="html"> |
4149 | <source>Plugins/Themes</source> | 4267 | <source>Plugins/Themes</source> |
4150 | <target state="new">Plugins/Themes</target> | 4268 | <target state="new">Plugins/Themes</target> |
4151 | 4269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">142</context></context-group> | |
4152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 4270 | </trans-unit> |
4153 | <trans-unit id="4894835484717268716" datatype="html"> | 4271 | <trans-unit id="4894835484717268716" datatype="html"> |
4154 | <source>Installed</source> | 4272 | <source>Installed</source> |
4155 | <target state="new">Installed</target> | 4273 | <target state="new">Installed</target> |
4156 | 4274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">35</context></context-group> | |
4157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="6185935497147252048" datatype="html"> | 4275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">3</context></context-group> |
4158 | <source>This plugin is developed by Framasoft</source><target state="new">This plugin is developed by Framasoft</target> | 4276 | </trans-unit> |
4277 | <trans-unit id="6185935497147252048" datatype="html"> | ||
4278 | <source>This plugin is developed by Framasoft</source> | ||
4279 | <target state="new">This plugin is developed by Framasoft</target> | ||
4159 | <context-group purpose="location"> | 4280 | <context-group purpose="location"> |
4160 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4281 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4161 | <context context-type="linenumber">37</context> | 4282 | <context context-type="linenumber">37</context> |
4162 | </context-group> | 4283 | </context-group> |
4163 | </trans-unit><trans-unit id="8336721444092720377" datatype="html"> | 4284 | </trans-unit> |
4164 | <source> Official </source><target state="new"> Official </target> | 4285 | <trans-unit id="8336721444092720377" datatype="html"> |
4286 | <source>Official</source> | ||
4287 | <target state="new"> Official </target> | ||
4165 | <context-group purpose="location"> | 4288 | <context-group purpose="location"> |
4166 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4289 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4167 | <context context-type="linenumber">37,39</context> | 4290 | <context context-type="linenumber">37,39</context> |
@@ -4170,35 +4293,41 @@ The link will expire within 1 hour.</target> | |||
4170 | <trans-unit id="7002061007877950198" datatype="html"> | 4293 | <trans-unit id="7002061007877950198" datatype="html"> |
4171 | <source>Plugin homepage (new window)</source> | 4294 | <source>Plugin homepage (new window)</source> |
4172 | <target state="new">Plugin homepage (new window)</target> | 4295 | <target state="new">Plugin homepage (new window)</target> |
4173 | 4296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">8</context></context-group> | |
4174 | 4297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">12</context></context-group> | |
4175 | 4298 | </trans-unit> | |
4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="3981257963098530375" datatype="html"> | 4299 | <trans-unit id="3981257963098530375" datatype="html"> |
4177 | <source>Navigate between installed plugins and themes or find new ones</source><target state="new">Navigate between installed plugins and themes or find new ones</target> | 4300 | <source>Navigate between installed plugins and themes or find new ones</source> |
4301 | <target state="new">Navigate between installed plugins and themes or find new ones</target> | ||
4178 | <context-group purpose="location"> | 4302 | <context-group purpose="location"> |
4179 | <context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context> | 4303 | <context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context> |
4180 | <context context-type="linenumber">2</context> | 4304 | <context context-type="linenumber">2</context> |
4181 | </context-group> | 4305 | </context-group> |
4182 | </trans-unit> | 4306 | </trans-unit> |
4183 | |||
4184 | <trans-unit id="8630916846096019339" datatype="html"> | 4307 | <trans-unit id="8630916846096019339" datatype="html"> |
4185 | <source>Users can resolve distant content</source> | 4308 | <source>Users can resolve distant content</source> |
4186 | <target state="new">Users can resolve distant content</target> | 4309 | <target state="new">Users can resolve distant content</target> |
4187 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">126</context></context-group> | 4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">126</context></context-group> |
4188 | </trans-unit><trans-unit id="3300472325769888962" datatype="html"> | 4311 | </trans-unit> |
4189 | <source>Plugins & Themes</source><target state="new">Plugins & Themes</target> | 4312 | <trans-unit id="3300472325769888962" datatype="html"> |
4313 | <source>Plugins & Themes</source> | ||
4314 | <target state="new">Plugins & Themes</target> | ||
4190 | <context-group purpose="location"> | 4315 | <context-group purpose="location"> |
4191 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 4316 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
4192 | <context context-type="linenumber">133</context> | 4317 | <context context-type="linenumber">133</context> |
4193 | </context-group> | 4318 | </context-group> |
4194 | </trans-unit><trans-unit id="1782375284146839174" datatype="html"> | 4319 | </trans-unit> |
4195 | <source>Available themes</source><target state="new">Available themes</target> | 4320 | <trans-unit id="1782375284146839174" datatype="html"> |
4321 | <source>Available themes</source> | ||
4322 | <target state="new">Available themes</target> | ||
4196 | <context-group purpose="location"> | 4323 | <context-group purpose="location"> |
4197 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 4324 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
4198 | <context context-type="linenumber">137</context> | 4325 | <context context-type="linenumber">137</context> |
4199 | </context-group> | 4326 | </context-group> |
4200 | </trans-unit><trans-unit id="9205443410527464015" datatype="html"> | 4327 | </trans-unit> |
4201 | <source>Plugins enabled</source><target state="new">Plugins enabled</target> | 4328 | <trans-unit id="9205443410527464015" datatype="html"> |
4329 | <source>Plugins enabled</source> | ||
4330 | <target state="new">Plugins enabled</target> | ||
4202 | <context-group purpose="location"> | 4331 | <context-group purpose="location"> |
4203 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> | 4332 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context> |
4204 | <context context-type="linenumber">146</context> | 4333 | <context context-type="linenumber">146</context> |
@@ -4210,72 +4339,75 @@ The link will expire within 1 hour.</target> | |||
4210 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> | 4339 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> |
4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> | 4340 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> |
4212 | </trans-unit> | 4341 | </trans-unit> |
4213 | |||
4214 | <trans-unit id="4786000816576841850" datatype="html"> | 4342 | <trans-unit id="4786000816576841850" datatype="html"> |
4215 | <source>Display settings</source> | 4343 | <source>Display settings</source> |
4216 | <target state="new">Display settings</target> | 4344 | <target state="new">Display settings</target> |
4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group> | 4345 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
4218 | </trans-unit> | 4346 | </trans-unit> |
4219 | |||
4220 | <trans-unit id="2144158274184161635" datatype="html"> | 4347 | <trans-unit id="2144158274184161635" datatype="html"> |
4221 | <source>Videos with the most interactions for recent videos</source><target state="new">Videos with the most interactions for recent videos</target> | 4348 | <source>Videos with the most interactions for recent videos</source> |
4222 | 4349 | <target state="new">Videos with the most interactions for recent videos</target> | |
4223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">204</context></context-group></trans-unit><trans-unit id="8312243926314494468" datatype="html"> | 4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">204</context></context-group> |
4224 | <source>Videos with the most views during the last 24 hours</source><target state="new">Videos with the most views during the last 24 hours</target> | 4351 | </trans-unit> |
4225 | 4352 | <trans-unit id="8312243926314494468" datatype="html"> | |
4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">208</context></context-group></trans-unit><trans-unit id="8731139416455609016" datatype="html"> | 4353 | <source>Videos with the most views during the last 24 hours</source> |
4227 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source><target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | 4354 | <target state="new">Videos with the most views during the last 24 hours</target> |
4355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">208</context></context-group> | ||
4356 | </trans-unit> | ||
4357 | <trans-unit id="8731139416455609016" datatype="html"> | ||
4358 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
4359 | <target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | ||
4228 | <context-group purpose="location"> | 4360 | <context-group purpose="location"> |
4229 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4361 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
4230 | <context context-type="linenumber">209</context> | 4362 | <context context-type="linenumber">209</context> |
4231 | </context-group> | 4363 | </context-group> |
4232 | </trans-unit> | 4364 | </trans-unit> |
4233 | |||
4234 | |||
4235 | |||
4236 | <trans-unit id="1671858302647356245" datatype="html"> | 4365 | <trans-unit id="1671858302647356245" datatype="html"> |
4237 | <source>Videos that have the most likes</source> | 4366 | <source>Videos that have the most likes</source> |
4238 | <target state="new">Videos that have the most likes</target> | 4367 | <target state="new">Videos that have the most likes</target> |
4239 | 4368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">205</context></context-group> | |
4240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 4369 | </trans-unit> |
4241 | <trans-unit id="2006841089844688970" datatype="html"> | 4370 | <trans-unit id="2006841089844688970" datatype="html"> |
4242 | <source>To load your new installed plugins or themes, refresh the page.</source> | 4371 | <source>To load your new installed plugins or themes, refresh the page.</source> |
4243 | <target state="new"> | 4372 | <target state="new"> |
4244 | To load your new installed plugins or themes, refresh the page. | 4373 | To load your new installed plugins or themes, refresh the page. |
4245 | </target> | 4374 | </target> |
4246 | 4375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">3</context></context-group> | |
4247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="7577430199525157466" datatype="html"> | 4376 | </trans-unit> |
4248 | <source>Popular plugins</source><target state="new">Popular plugins</target> | 4377 | <trans-unit id="7577430199525157466" datatype="html"> |
4378 | <source>Popular plugins</source> | ||
4379 | <target state="new">Popular plugins</target> | ||
4249 | <context-group purpose="location"> | 4380 | <context-group purpose="location"> |
4250 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4381 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4251 | <context context-type="linenumber">10</context> | 4382 | <context context-type="linenumber">10</context> |
4252 | </context-group> | 4383 | </context-group> |
4253 | </trans-unit><trans-unit id="830877982972543118" datatype="html"> | 4384 | </trans-unit> |
4254 | <source>Popular themes</source><target state="new">Popular themes</target> | 4385 | <trans-unit id="830877982972543118" datatype="html"> |
4386 | <source>Popular themes</source> | ||
4387 | <target state="new">Popular themes</target> | ||
4255 | <context-group purpose="location"> | 4388 | <context-group purpose="location"> |
4256 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4389 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
4257 | <context context-type="linenumber">11</context> | 4390 | <context context-type="linenumber">11</context> |
4258 | </context-group> | 4391 | </context-group> |
4259 | </trans-unit> | 4392 | </trans-unit> |
4260 | <trans-unit id="1780056719120519633" datatype="html"> | 4393 | <trans-unit id="1780056719120519633" datatype="html"> |
4261 | <source> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source><target state="new"> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target> | 4394 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> |
4262 | 4395 | <target state="new"> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target> | |
4263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">17</context></context-group> |
4264 | 4397 | </trans-unit> | |
4265 | <trans-unit id="3148804384763272950" datatype="html"> | 4398 | <trans-unit id="3148804384763272950" datatype="html"> |
4266 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> | 4399 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> |
4267 | <target state="new">{VAR_PLURAL, plural, =1 {result} other {results} }</target> | 4400 | <target state="new">{VAR_PLURAL, plural, =1 {result} other {results} }</target> |
4268 | 4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">18</context></context-group> | |
4269 | 4402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> | |
4270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 4403 | </trans-unit> |
4271 | <trans-unit id="2722270956157821098" datatype="html"> | 4404 | <trans-unit id="2722270956157821098" datatype="html"> |
4272 | <source>No results.</source> | 4405 | <source>No results.</source> |
4273 | <target state="new"> | 4406 | <target state="new"> |
4274 | No results. | 4407 | No results. |
4275 | </target> | 4408 | </target> |
4276 | 4409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">27</context></context-group> | |
4277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 4410 | </trans-unit> |
4278 | |||
4279 | <trans-unit id="2601639465696257054" datatype="html"> | 4411 | <trans-unit id="2601639465696257054" datatype="html"> |
4280 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> | 4412 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> |
4281 | <target state="new"> | 4413 | <target state="new"> |
@@ -4288,42 +4420,41 @@ The link will expire within 1 hour.</target> | |||
4288 | <trans-unit id="29832309535656200" datatype="html"> | 4420 | <trans-unit id="29832309535656200" datatype="html"> |
4289 | <source>System</source> | 4421 | <source>System</source> |
4290 | <target state="new">System</target> | 4422 | <target state="new">System</target> |
4291 | 4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">148</context></context-group> | |
4292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 4424 | </trans-unit> |
4293 | |||
4294 | |||
4295 | |||
4296 | <trans-unit id="8949443215142664126" datatype="html"> | 4425 | <trans-unit id="8949443215142664126" datatype="html"> |
4297 | <source>Delete this comment</source> | 4426 | <source>Delete this comment</source> |
4298 | <target state="new">Delete this comment</target> | 4427 | <target state="new">Delete this comment</target> |
4299 | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">80</context></context-group> | |
4300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 4429 | </trans-unit> |
4301 | <trans-unit id="3327751240218085797" datatype="html"> | 4430 | <trans-unit id="3327751240218085797" datatype="html"> |
4302 | <source>Delete all comments of this account</source> | 4431 | <source>Delete all comments of this account</source> |
4303 | <target state="new">Delete all comments of this account</target> | 4432 | <target state="new">Delete all comments of this account</target> |
4304 | 4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
4305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 4434 | </trans-unit> |
4306 | <trans-unit id="2850960459131251840" datatype="html"> | 4435 | <trans-unit id="2850960459131251840" datatype="html"> |
4307 | <source>Comments are deleted after a few minutes</source> | 4436 | <source>Comments are deleted after a few minutes</source> |
4308 | <target state="new">Comments are deleted after a few minutes</target> | 4437 | <target state="new">Comments are deleted after a few minutes</target> |
4309 | 4438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 4439 | </trans-unit> |
4311 | <trans-unit id="545410448674339480" datatype="html"> | 4440 | <trans-unit id="545410448674339480" datatype="html"> |
4312 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4441 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
4313 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | 4442 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> |
4314 | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">148</context></context-group> | |
4315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 4444 | </trans-unit> |
4316 | <trans-unit id="379090446060940062" datatype="html"> | 4445 | <trans-unit id="379090446060940062" datatype="html"> |
4317 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4446 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
4318 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> | 4447 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> |
4319 | 4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">168</context></context-group> | |
4320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 4449 | </trans-unit> |
4321 | <trans-unit id="4539246224625965241" datatype="html"> | 4450 | <trans-unit id="4539246224625965241" datatype="html"> |
4322 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4451 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
4323 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | 4452 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> |
4324 | 4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">180</context></context-group> | |
4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">180</context></context-group></trans-unit><trans-unit id="3204306399736151644" datatype="html"> | 4454 | </trans-unit> |
4326 | <source>Comments list</source><target state="new">Comments list</target> | 4455 | <trans-unit id="3204306399736151644" datatype="html"> |
4456 | <source>Comments list</source> | ||
4457 | <target state="new">Comments list</target> | ||
4327 | <context-group purpose="location"> | 4458 | <context-group purpose="location"> |
4328 | <context context-type="sourcefile">src/app/+admin/overview/comments/video-comment.routes.ts</context> | 4459 | <context context-type="sourcefile">src/app/+admin/overview/comments/video-comment.routes.ts</context> |
4329 | <context context-type="linenumber">24</context> | 4460 | <context context-type="linenumber">24</context> |
@@ -4332,25 +4463,25 @@ The link will expire within 1 hour.</target> | |||
4332 | <trans-unit id="7427986413651551775" datatype="html"> | 4463 | <trans-unit id="7427986413651551775" datatype="html"> |
4333 | <source>Video comments</source> | 4464 | <source>Video comments</source> |
4334 | <target state="new">Video comments</target> | 4465 | <target state="new">Video comments</target> |
4335 | 4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
4336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="289582790179344391" datatype="html"> | 4467 | </trans-unit> |
4337 | <source>This view also shows comments from muted accounts.</source><target state="new">This view also shows comments from muted accounts.</target> | 4468 | <trans-unit id="289582790179344391" datatype="html"> |
4338 | 4469 | <source>This view also shows comments from muted accounts.</source> | |
4339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 4470 | <target state="new">This view also shows comments from muted accounts.</target> |
4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">8</context></context-group> | ||
4472 | </trans-unit> | ||
4340 | <trans-unit id="4523382115569186450" datatype="html"> | 4473 | <trans-unit id="4523382115569186450" datatype="html"> |
4341 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | 4474 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> |
4342 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> | 4475 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> |
4343 | 4476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group> | |
4344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4477 | </trans-unit> |
4345 | |||
4346 | |||
4347 | |||
4348 | <trans-unit id="6110554376228744887" datatype="html"> | 4478 | <trans-unit id="6110554376228744887" datatype="html"> |
4349 | <source>Select all rows</source> | 4479 | <source>Select all rows</source> |
4350 | <target state="new">Select all rows</target> | 4480 | <target state="new">Select all rows</target> |
4351 | 4481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
4352 | 4482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
4353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">36</context></context-group> |
4484 | </trans-unit> | ||
4354 | <trans-unit id="2719284837486030903" datatype="html"> | 4485 | <trans-unit id="2719284837486030903" datatype="html"> |
4355 | <source>Job type</source> | 4486 | <source>Job type</source> |
4356 | <target state="new">Job type</target> | 4487 | <target state="new">Job type</target> |
@@ -4381,8 +4512,8 @@ The link will expire within 1 hour.</target> | |||
4381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> | 4512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> |
4382 | </trans-unit> | 4513 | </trans-unit> |
4383 | <trans-unit id="3901868627411944813" datatype="html"> | 4514 | <trans-unit id="3901868627411944813" datatype="html"> |
4384 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> | 4515 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> |
4385 | <target state="new">Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> | 4516 | <target state="new">Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> |
4386 | <context-group purpose="location"> | 4517 | <context-group purpose="location"> |
4387 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4518 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4388 | <context context-type="linenumber">47</context> | 4519 | <context context-type="linenumber">47</context> |
@@ -4399,35 +4530,39 @@ The link will expire within 1 hour.</target> | |||
4399 | <trans-unit id="914197284349366734" datatype="html"> | 4530 | <trans-unit id="914197284349366734" datatype="html"> |
4400 | <source>No jobs found.</source> | 4531 | <source>No jobs found.</source> |
4401 | <target state="new">No jobs found.</target> | 4532 | <target state="new">No jobs found.</target> |
4402 | 4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> | |
4403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 4534 | </trans-unit> |
4404 | <trans-unit id="2713421326605345655" datatype="html"> | 4535 | <trans-unit id="2713421326605345655" datatype="html"> |
4405 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | 4536 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> |
4406 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | 4537 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> |
4407 | 4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> | |
4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 4539 | </trans-unit> |
4409 | <trans-unit id="2384897339170501794" datatype="html"> | 4540 | <trans-unit id="2384897339170501794" datatype="html"> |
4410 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source> | 4541 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source> |
4411 | <target state="new">No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</target> | 4542 | <target state="new">No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</target> |
4412 | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">110</context></context-group> | |
4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">110</context></context-group></trans-unit> | 4544 | </trans-unit> |
4414 | <trans-unit id="4457061340457477073" datatype="html"> | 4545 | <trans-unit id="4457061340457477073" datatype="html"> |
4415 | <source>No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</source> | 4546 | <source>No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</source> |
4416 | <target state="new">No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</target> | 4547 | <target state="new">No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</target> |
4417 | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">111</context></context-group> | |
4418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 4549 | </trans-unit> |
4419 | <trans-unit id="1102717806459547726" datatype="html"> | 4550 | <trans-unit id="1102717806459547726" datatype="html"> |
4420 | <source>Refresh</source> | 4551 | <source>Refresh</source> |
4421 | <target state="new">Refresh</target> | 4552 | <target state="new">Refresh</target> |
4422 | 4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
4423 | 4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group> |
4556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group> | ||
4557 | </trans-unit> | ||
4425 | <trans-unit id="6052766076365105714" datatype="html"> | 4558 | <trans-unit id="6052766076365105714" datatype="html"> |
4426 | <source>now</source> | 4559 | <source>now</source> |
4427 | <target state="new">now</target> | 4560 | <target state="new">now</target> |
4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">15</context></context-group> | 4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">15</context></context-group> |
4429 | </trans-unit><trans-unit id="8984988128489304664" datatype="html"> | 4562 | </trans-unit> |
4430 | <source>Filter logs by tags</source><target state="new">Filter logs by tags</target> | 4563 | <trans-unit id="8984988128489304664" datatype="html"> |
4564 | <source>Filter logs by tags</source> | ||
4565 | <target state="new">Filter logs by tags</target> | ||
4431 | <context-group purpose="location"> | 4566 | <context-group purpose="location"> |
4432 | <context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context> | 4567 | <context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context> |
4433 | <context context-type="linenumber">31</context> | 4568 | <context context-type="linenumber">31</context> |
@@ -4436,21 +4571,23 @@ The link will expire within 1 hour.</target> | |||
4436 | <trans-unit id="3894950702316166331" datatype="html"> | 4571 | <trans-unit id="3894950702316166331" datatype="html"> |
4437 | <source>Loading...</source> | 4572 | <source>Loading...</source> |
4438 | <target state="new">Loading...</target> | 4573 | <target state="new">Loading...</target> |
4439 | 4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">37</context></context-group> | |
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit><trans-unit id="1570003374195931619" datatype="html"> | 4575 | </trans-unit> |
4441 | <source>No log.</source><target state="new">No log.</target> | 4576 | <trans-unit id="1570003374195931619" datatype="html"> |
4577 | <source>No log.</source> | ||
4578 | <target state="new">No log.</target> | ||
4442 | <context-group purpose="location"> | 4579 | <context-group purpose="location"> |
4443 | <context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context> | 4580 | <context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context> |
4444 | <context context-type="linenumber">40</context> | 4581 | <context context-type="linenumber">40</context> |
4445 | </context-group> | 4582 | </context-group> |
4446 | </trans-unit> | 4583 | </trans-unit> |
4447 | <trans-unit id="2232767208623640457" datatype="html"> | 4584 | <trans-unit id="2232767208623640457" datatype="html"> |
4448 | <source>By <x id="INTERPOLATION"/> -></source> | 4585 | <source>By <x id="INTERPOLATION"/> -></source> |
4449 | <target state="new">By | 4586 | <target state="new">By |
4450 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> | 4587 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> |
4451 | </target> | 4588 | </target> |
4452 | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> | |
4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 4590 | </trans-unit> |
4454 | <trans-unit id="7396175500300709096" datatype="html"> | 4591 | <trans-unit id="7396175500300709096" datatype="html"> |
4455 | <source>INSTANCE</source> | 4592 | <source>INSTANCE</source> |
4456 | <target state="new">INSTANCE</target> | 4593 | <target state="new">INSTANCE</target> |
@@ -4459,10 +4596,10 @@ The link will expire within 1 hour.</target> | |||
4459 | <trans-unit id="8953033926734869941" datatype="html"> | 4596 | <trans-unit id="8953033926734869941" datatype="html"> |
4460 | <source>Name</source> | 4597 | <source>Name</source> |
4461 | <target state="new">Name</target> | 4598 | <target state="new">Name</target> |
4462 | 4599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">13</context></context-group> | |
4463 | 4600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group> | |
4464 | 4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group> | |
4465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 4602 | </trans-unit> |
4466 | <trans-unit id="2973928033612762715" datatype="html"> | 4603 | <trans-unit id="2973928033612762715" datatype="html"> |
4467 | <source>Short description</source> | 4604 | <source>Short description</source> |
4468 | <target state="new">Short description</target> | 4605 | <target state="new">Short description</target> |
@@ -4471,91 +4608,90 @@ The link will expire within 1 hour.</target> | |||
4471 | <trans-unit id="7794655859478571096" datatype="html"> | 4608 | <trans-unit id="7794655859478571096" datatype="html"> |
4472 | <source>Main instance categories</source> | 4609 | <source>Main instance categories</source> |
4473 | <target state="new">Main instance categories</target> | 4610 | <target state="new">Main instance categories</target> |
4474 | 4611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">50</context></context-group> | |
4475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 4612 | </trans-unit> |
4476 | <trans-unit id="6588040559347368313" datatype="html"> | 4613 | <trans-unit id="6588040559347368313" datatype="html"> |
4477 | <source>Add a new category</source> | 4614 | <source>Add a new category</source> |
4478 | <target state="new">Add a new category</target> | 4615 | <target state="new">Add a new category</target> |
4479 | 4616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">57</context></context-group> | |
4480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 4617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.html</context><context context-type="linenumber">5</context></context-group> |
4618 | </trans-unit> | ||
4481 | <trans-unit id="8953934448427251062" datatype="html"> | 4619 | <trans-unit id="8953934448427251062" datatype="html"> |
4482 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> | 4620 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> |
4483 | <target state="new">The | 4621 | <target state="new">The |
4484 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system | 4622 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system |
4485 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. | 4623 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. |
4486 | </target> | 4624 | </target> |
4487 | 4625 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">45</context></context-group> | |
4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 4626 | </trans-unit> |
4489 | <trans-unit id="34094919610906740" datatype="html"> | 4627 | <trans-unit id="34094919610906740" datatype="html"> |
4490 | <source>Help share videos being played</source> | 4628 | <source>Help share videos being played</source> |
4491 | <target state="new">Help share videos being played</target> | 4629 | <target state="new">Help share videos being played</target> |
4492 | 4630 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">42</context></context-group> | |
4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 4631 | </trans-unit> |
4494 | <trans-unit id="6236140336967052987" datatype="html"> | 4632 | <trans-unit id="6236140336967052987" datatype="html"> |
4495 | <source>When on a video page, directly start playing the video.</source> | 4633 | <source>When on a video page, directly start playing the video.</source> |
4496 | <target state="new">When on a video page, directly start playing the video.</target> | 4634 | <target state="new">When on a video page, directly start playing the video.</target> |
4497 | 4635 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">56</context></context-group> | |
4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 4636 | </trans-unit> |
4499 | <trans-unit id="9135112681389493865" datatype="html"> | 4637 | <trans-unit id="9135112681389493865" datatype="html"> |
4500 | <source>Automatically play videos</source> | 4638 | <source>Automatically play videos</source> |
4501 | <target state="new">Automatically play videos</target> | 4639 | <target state="new">Automatically play videos</target> |
4502 | 4640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">53</context></context-group> | |
4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 4641 | </trans-unit> |
4504 | <trans-unit id="575474399125992547" datatype="html"> | 4642 | <trans-unit id="575474399125992547" datatype="html"> |
4505 | <source>When a video ends, follow up with the next suggested video.</source> | 4643 | <source>When a video ends, follow up with the next suggested video.</source> |
4506 | <target state="new">When a video ends, follow up with the next suggested video.</target> | 4644 | <target state="new">When a video ends, follow up with the next suggested video.</target> |
4507 | 4645 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">67</context></context-group> | |
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 4646 | </trans-unit> |
4509 | <trans-unit id="2701970773087072815" datatype="html"> | 4647 | <trans-unit id="2701970773087072815" datatype="html"> |
4510 | <source>Automatically start playing the next video</source> | 4648 | <source>Automatically start playing the next video</source> |
4511 | <target state="new">Automatically start playing the next video</target> | 4649 | <target state="new">Automatically start playing the next video</target> |
4512 | 4650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">64</context></context-group> | |
4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 4651 | </trans-unit> |
4514 | <trans-unit id="5983800192187691457" datatype="html"> | 4652 | <trans-unit id="5983800192187691457" datatype="html"> |
4515 | <source>Main languages you/your moderators speak</source> | 4653 | <source>Main languages you/your moderators speak</source> |
4516 | <target state="new">Main languages you/your moderators speak</target> | 4654 | <target state="new">Main languages you/your moderators speak</target> |
4517 | 4655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">64</context></context-group> | |
4518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 4656 | </trans-unit> |
4519 | <trans-unit id="399528956091640769" datatype="html"> | 4657 | <trans-unit id="399528956091640769" datatype="html"> |
4520 | <source>MODERATION & NSFW</source> | 4658 | <source>MODERATION & NSFW</source> |
4521 | <target state="new">MODERATION & NSFW</target> | 4659 | <target state="new">MODERATION & NSFW</target> |
4522 | 4660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> | |
4523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 4661 | </trans-unit> |
4524 | <trans-unit id="4423835119021329687" datatype="html"> | 4662 | <trans-unit id="4423835119021329687" datatype="html"> |
4525 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> | 4663 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> |
4526 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </target> | 4664 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </target> |
4527 | 4665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> | |
4528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4666 | </trans-unit> |
4529 | <trans-unit id="7030031694783481217" datatype="html"> | 4667 | <trans-unit id="7030031694783481217" datatype="html"> |
4530 | <source>This instance is dedicated to sensitive or NSFW content</source> | 4668 | <source>This instance is dedicated to sensitive or NSFW content</source> |
4531 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> | 4669 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> |
4532 | 4670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> | |
4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit> | 4671 | </trans-unit> |
4534 | <trans-unit id="4620493570088713907" datatype="html"> | 4672 | <trans-unit id="4620493570088713907" datatype="html"> |
4535 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> | 4673 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> |
4536 | <target state="new"> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> | 4674 | <target state="new"> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> |
4537 | 4675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> | |
4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> | 4676 | </trans-unit> |
4539 | <trans-unit id="7497677457560701935" datatype="html"> | 4677 | <trans-unit id="7497677457560701935" datatype="html"> |
4540 | <source>Policy on videos containing sensitive content</source> | 4678 | <source>Policy on videos containing sensitive content</source> |
4541 | <target state="new">Policy on videos containing sensitive content</target> | 4679 | <target state="new">Policy on videos containing sensitive content</target> |
4542 | 4680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">106</context></context-group> | |
4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 4681 | </trans-unit> |
4544 | |||
4545 | |||
4546 | <trans-unit id="8930852890861583005" datatype="html"> | 4682 | <trans-unit id="8930852890861583005" datatype="html"> |
4547 | <source>Blur thumbnails</source> | 4683 | <source>Blur thumbnails</source> |
4548 | <target state="new">Blur thumbnails</target> | 4684 | <target state="new">Blur thumbnails</target> |
4549 | 4685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">120</context></context-group> | |
4550 | 4686 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">17</context></context-group> | |
4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 4687 | </trans-unit> |
4552 | <trans-unit id="6812930637022637485" datatype="html"> | 4688 | <trans-unit id="6812930637022637485" datatype="html"> |
4553 | <source>Display</source> | 4689 | <source>Display</source> |
4554 | <target state="new">Display</target> | 4690 | <target state="new">Display</target> |
4555 | 4691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">121</context></context-group> | |
4556 | 4692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">8</context></context-group> | |
4557 | 4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">18</context></context-group> | |
4558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 4694 | </trans-unit> |
4559 | <trans-unit id="1617785425462022303" datatype="html"> | 4695 | <trans-unit id="1617785425462022303" datatype="html"> |
4560 | <source>Strategy</source> | 4696 | <source>Strategy</source> |
4561 | <target state="new">Strategy</target> | 4697 | <target state="new">Strategy</target> |
@@ -4564,101 +4700,100 @@ The link will expire within 1 hour.</target> | |||
4564 | <trans-unit id="2544569632476723854" datatype="html"> | 4700 | <trans-unit id="2544569632476723854" datatype="html"> |
4565 | <source>Terms</source> | 4701 | <source>Terms</source> |
4566 | <target state="new">Terms</target> | 4702 | <target state="new">Terms</target> |
4567 | 4703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">169</context></context-group> | |
4568 | 4704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">129</context></context-group> | |
4569 | 4705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">18</context></context-group> | |
4570 | 4706 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group> | |
4571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 4707 | </trans-unit> |
4572 | <trans-unit id="4127416011499804250" datatype="html"> | 4708 | <trans-unit id="4127416011499804250" datatype="html"> |
4573 | <source>Code of conduct</source> | 4709 | <source>Code of conduct</source> |
4574 | <target state="new">Code of conduct</target> | 4710 | <target state="new">Code of conduct</target> |
4575 | 4711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">155</context></context-group> | |
4576 | 4712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">140</context></context-group> | |
4577 | 4713 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group> | |
4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 4714 | </trans-unit> |
4579 | <trans-unit id="3076079242537393946" datatype="html"> | 4715 | <trans-unit id="3076079242537393946" datatype="html"> |
4580 | <source>Moderation information</source> | 4716 | <source>Moderation information</source> |
4581 | <target state="new">Moderation information</target> | 4717 | <target state="new">Moderation information</target> |
4582 | 4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">141</context></context-group> | |
4583 | 4719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">151</context></context-group> | |
4584 | 4720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group> | |
4585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">141</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 4721 | </trans-unit> |
4586 | <trans-unit id="5056489767203690328" datatype="html"> | 4722 | <trans-unit id="5056489767203690328" datatype="html"> |
4587 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> | 4723 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> |
4588 | <target state="new">Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</target> | 4724 | <target state="new">Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</target> |
4589 | 4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">152</context></context-group> | |
4590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 4726 | </trans-unit> |
4591 | <trans-unit id="2047672753819413550" datatype="html"> | 4727 | <trans-unit id="2047672753819413550" datatype="html"> |
4592 | <source>YOU AND YOUR INSTANCE</source> | 4728 | <source>YOU AND YOUR INSTANCE</source> |
4593 | <target state="new">YOU AND YOUR INSTANCE</target> | 4729 | <target state="new">YOU AND YOUR INSTANCE</target> |
4594 | 4730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">167</context></context-group> | |
4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> | 4731 | </trans-unit> |
4596 | <trans-unit id="3968335261686887328" datatype="html"> | 4732 | <trans-unit id="3968335261686887328" datatype="html"> |
4597 | <source>Who is behind the instance?</source> | 4733 | <source>Who is behind the instance?</source> |
4598 | <target state="new">Who is behind the instance?</target> | 4734 | <target state="new">Who is behind the instance?</target> |
4599 | 4735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">173</context></context-group> | |
4600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> | 4736 | </trans-unit> |
4601 | <trans-unit id="7323194786468446482" datatype="html"> | 4737 | <trans-unit id="7323194786468446482" datatype="html"> |
4602 | <source>A single person? A non-profit? A company?</source> | 4738 | <source>A single person? A non-profit? A company?</source> |
4603 | <target state="new">A single person? A non-profit? A company?</target> | 4739 | <target state="new">A single person? A non-profit? A company?</target> |
4604 | 4740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">174</context></context-group> | |
4605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> | 4741 | </trans-unit> |
4606 | <trans-unit id="5480243297215266596" datatype="html"> | 4742 | <trans-unit id="5480243297215266596" datatype="html"> |
4607 | <source>Why did you create this instance?</source> | 4743 | <source>Why did you create this instance?</source> |
4608 | <target state="new">Why did you create this instance?</target> | 4744 | <target state="new">Why did you create this instance?</target> |
4609 | 4745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">185</context></context-group> | |
4610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">185</context></context-group></trans-unit> | 4746 | </trans-unit> |
4611 | <trans-unit id="6995481962115300007" datatype="html"> | 4747 | <trans-unit id="6995481962115300007" datatype="html"> |
4612 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> | 4748 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> |
4613 | <target state="new">To share your personal videos? To open registrations and allow people to upload what they want?</target> | 4749 | <target state="new">To share your personal videos? To open registrations and allow people to upload what they want?</target> |
4614 | 4750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">186</context></context-group> | |
4615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">186</context></context-group></trans-unit> | 4751 | </trans-unit> |
4616 | <trans-unit id="3667968987954856844" datatype="html"> | 4752 | <trans-unit id="3667968987954856844" datatype="html"> |
4617 | <source>How long do you plan to maintain this instance?</source> | 4753 | <source>How long do you plan to maintain this instance?</source> |
4618 | <target state="new">How long do you plan to maintain this instance?</target> | 4754 | <target state="new">How long do you plan to maintain this instance?</target> |
4619 | 4755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">197</context></context-group> | |
4620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 4756 | </trans-unit> |
4621 | <trans-unit id="6722472563287778070" datatype="html"> | 4757 | <trans-unit id="6722472563287778070" datatype="html"> |
4622 | <source>It's important to know for users who want to register on your instance</source> | 4758 | <source>It's important to know for users who want to register on your instance</source> |
4623 | <target state="new">It's important to know for users who want to register on your instance</target> | 4759 | <target state="new">It's important to know for users who want to register on your instance</target> |
4624 | 4760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">198</context></context-group> | |
4625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit> | 4761 | </trans-unit> |
4626 | <trans-unit id="8362291348781958428" datatype="html"> | 4762 | <trans-unit id="8362291348781958428" datatype="html"> |
4627 | <source>How will you finance the PeerTube server?</source> | 4763 | <source>How will you finance the PeerTube server?</source> |
4628 | <target state="new">How will you finance the PeerTube server?</target> | 4764 | <target state="new">How will you finance the PeerTube server?</target> |
4629 | 4765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">209</context></context-group> | |
4630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">209</context></context-group></trans-unit> | 4766 | </trans-unit> |
4631 | <trans-unit id="2441006645448216398" datatype="html"> | 4767 | <trans-unit id="2441006645448216398" datatype="html"> |
4632 | <source>With your own funds? With user donations? Advertising?</source> | 4768 | <source>With your own funds? With user donations? Advertising?</source> |
4633 | <target state="new">With your own funds? With user donations? Advertising?</target> | 4769 | <target state="new">With your own funds? With user donations? Advertising?</target> |
4634 | 4770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">210</context></context-group> | |
4635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit> | 4771 | </trans-unit> |
4636 | <trans-unit id="6853511883515031762" datatype="html"> | 4772 | <trans-unit id="6853511883515031762" datatype="html"> |
4637 | <source>OTHER INFORMATION</source> | 4773 | <source>OTHER INFORMATION</source> |
4638 | <target state="new">OTHER INFORMATION</target> | 4774 | <target state="new">OTHER INFORMATION</target> |
4639 | 4775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">225</context></context-group> | |
4640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">225</context></context-group></trans-unit> | 4776 | </trans-unit> |
4641 | <trans-unit id="3447208665089679283" datatype="html"> | 4777 | <trans-unit id="3447208665089679283" datatype="html"> |
4642 | <source>What server/hardware does the instance run on?</source> | 4778 | <source>What server/hardware does the instance run on?</source> |
4643 | <target state="new">What server/hardware does the instance run on?</target> | 4779 | <target state="new">What server/hardware does the instance run on?</target> |
4644 | 4780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">231</context></context-group> | |
4645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit> | 4781 | </trans-unit> |
4646 | <trans-unit id="4739907951373047958" datatype="html"> | 4782 | <trans-unit id="4739907951373047958" datatype="html"> |
4647 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> | 4783 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> |
4648 | <target state="new">i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</target> | 4784 | <target state="new">i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</target> |
4649 | 4785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">232</context></context-group> | |
4650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">232</context></context-group></trans-unit> | 4786 | </trans-unit> |
4651 | |||
4652 | <trans-unit id="8557599287230755359" datatype="html"> | 4787 | <trans-unit id="8557599287230755359" datatype="html"> |
4653 | <source>APPEARANCE</source> | 4788 | <source>APPEARANCE</source> |
4654 | <target state="new">APPEARANCE</target> | 4789 | <target state="new">APPEARANCE</target> |
4655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> | 4790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> |
4656 | </trans-unit> | 4791 | </trans-unit> |
4657 | <trans-unit id="2107098695989136934" datatype="html"> | 4792 | <trans-unit id="2107098695989136934" datatype="html"> |
4658 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4793 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4659 | <target state="new"> Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4794 | <target state="new"> Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4660 | 4795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> | |
4661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 4796 | </trans-unit> |
4662 | <trans-unit id="6855462350544488601" datatype="html"> | 4797 | <trans-unit id="6855462350544488601" datatype="html"> |
4663 | <source>default</source> | 4798 | <source>default</source> |
4664 | <target state="new">default</target> | 4799 | <target state="new">default</target> |
@@ -4669,142 +4804,149 @@ The link will expire within 1 hour.</target> | |||
4669 | <target state="new">Landing page</target> | 4804 | <target state="new">Landing page</target> |
4670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">27</context></context-group> | 4805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">27</context></context-group> |
4671 | </trans-unit> | 4806 | </trans-unit> |
4672 | |||
4673 | |||
4674 | <trans-unit id="2609416025385742456" datatype="html"> | 4807 | <trans-unit id="2609416025385742456" datatype="html"> |
4675 | <source>Default trending page</source> | 4808 | <source>Default trending page</source> |
4676 | <target state="new">Default trending page</target> | 4809 | <target state="new">Default trending page</target> |
4677 | 4810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">43</context></context-group> | |
4678 | 4811 | </trans-unit> | |
4679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | ||
4680 | <trans-unit id="421622604352196374" datatype="html"> | 4812 | <trans-unit id="421622604352196374" datatype="html"> |
4681 | <source>Best videos</source> | 4813 | <source>Best videos</source> |
4682 | <target state="new">Best videos</target> | 4814 | <target state="new">Best videos</target> |
4683 | 4815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">47</context></context-group> | |
4684 | 4816 | </trans-unit> | |
4685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | ||
4686 | <trans-unit id="554741830445276244" datatype="html"> | 4817 | <trans-unit id="554741830445276244" datatype="html"> |
4687 | <source>Hot videos</source> | 4818 | <source>Hot videos</source> |
4688 | <target state="new">Hot videos</target> | 4819 | <target state="new">Hot videos</target> |
4689 | 4820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">48</context></context-group> | |
4690 | 4821 | </trans-unit> | |
4691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | ||
4692 | <trans-unit id="4203746847864415875" datatype="html"> | 4822 | <trans-unit id="4203746847864415875" datatype="html"> |
4693 | <source>Most viewed videos</source> | 4823 | <source>Most viewed videos</source> |
4694 | <target state="new">Most viewed videos</target> | 4824 | <target state="new">Most viewed videos</target> |
4695 | 4825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">49</context></context-group> | |
4696 | 4826 | </trans-unit> | |
4697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | ||
4698 | <trans-unit id="8177374861384376651" datatype="html"> | 4827 | <trans-unit id="8177374861384376651" datatype="html"> |
4699 | <source>Most liked videos</source> | 4828 | <source>Most liked videos</source> |
4700 | <target state="new">Most liked videos</target> | 4829 | <target state="new">Most liked videos</target> |
4701 | 4830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">50</context></context-group> | |
4702 | 4831 | </trans-unit> | |
4703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="5862227717871131052" datatype="html"> | 4832 | <trans-unit id="5862227717871131052" datatype="html"> |
4704 | <source>Prefer author display name in video miniature</source><target state="new">Prefer author display name in video miniature</target> | 4833 | <source>Prefer author display name in video miniature</source> |
4834 | <target state="new">Prefer author display name in video miniature</target> | ||
4705 | <context-group purpose="location"> | 4835 | <context-group purpose="location"> |
4706 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4836 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4707 | <context context-type="linenumber">66</context> | 4837 | <context context-type="linenumber">66</context> |
4708 | </context-group> | 4838 | </context-group> |
4709 | </trans-unit><trans-unit id="5444889468197427724" datatype="html"> | 4839 | </trans-unit> |
4710 | <source>Redirect users on single external auth when users click on the login button in menu</source><target state="new">Redirect users on single external auth when users click on the login button in menu</target> | 4840 | <trans-unit id="5444889468197427724" datatype="html"> |
4841 | <source>Redirect users on single external auth when users click on the login button in menu</source> | ||
4842 | <target state="new">Redirect users on single external auth when users click on the login button in menu</target> | ||
4711 | <context-group purpose="location"> | 4843 | <context-group purpose="location"> |
4712 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4844 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4713 | <context context-type="linenumber">77</context> | 4845 | <context context-type="linenumber">77</context> |
4714 | </context-group> | 4846 | </context-group> |
4715 | </trans-unit><trans-unit id="2138469194506455231" datatype="html"> | 4847 | </trans-unit> |
4716 | <source>âš ï¸ You don't have any external auth plugin enabled.</source><target state="new">âš ï¸ You don't have any external auth plugin enabled.</target> | 4848 | <trans-unit id="2138469194506455231" datatype="html"> |
4849 | <source>âš ï¸ You don't have any external auth plugin enabled.</source> | ||
4850 | <target state="new">âš ï¸ You don't have any external auth plugin enabled.</target> | ||
4717 | <context-group purpose="location"> | 4851 | <context-group purpose="location"> |
4718 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4852 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4719 | <context context-type="linenumber">80</context> | 4853 | <context context-type="linenumber">80</context> |
4720 | </context-group> | 4854 | </context-group> |
4721 | </trans-unit><trans-unit id="6608125149782412086" datatype="html"> | 4855 | </trans-unit> |
4722 | <source>âš ï¸ You have multiple external auth plugins enabled.</source><target state="new">âš ï¸ You have multiple external auth plugins enabled.</target> | 4856 | <trans-unit id="6608125149782412086" datatype="html"> |
4857 | <source>âš ï¸ You have multiple external auth plugins enabled.</source> | ||
4858 | <target state="new">âš ï¸ You have multiple external auth plugins enabled.</target> | ||
4723 | <context-group purpose="location"> | 4859 | <context-group purpose="location"> |
4724 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4860 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4725 | <context context-type="linenumber">81</context> | 4861 | <context context-type="linenumber">81</context> |
4726 | </context-group> | 4862 | </context-group> |
4727 | </trans-unit> | 4863 | </trans-unit> |
4728 | |||
4729 | |||
4730 | <trans-unit id="4809162812315301010" datatype="html"> | 4864 | <trans-unit id="4809162812315301010" datatype="html"> |
4731 | <source>BROADCAST MESSAGE</source> | 4865 | <source>BROADCAST MESSAGE</source> |
4732 | <target state="new">BROADCAST MESSAGE</target> | 4866 | <target state="new">BROADCAST MESSAGE</target> |
4733 | 4867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">94</context></context-group> | |
4734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 4868 | </trans-unit> |
4735 | <trans-unit id="7097094470713539753" datatype="html"> | 4869 | <trans-unit id="7097094470713539753" datatype="html"> |
4736 | <source>Display a message on your instance</source> | 4870 | <source>Display a message on your instance</source> |
4737 | <target state="new"> Display a message on your instance </target> | 4871 | <target state="new"> Display a message on your instance </target> |
4738 | 4872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">95</context></context-group> | |
4739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 4873 | </trans-unit> |
4740 | <trans-unit id="4686199497574248459" datatype="html"> | 4874 | <trans-unit id="4686199497574248459" datatype="html"> |
4741 | <source>Enable broadcast message</source> | 4875 | <source>Enable broadcast message</source> |
4742 | <target state="new">Enable broadcast message</target> | 4876 | <target state="new">Enable broadcast message</target> |
4743 | 4877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">107</context></context-group> | |
4744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 4878 | </trans-unit> |
4745 | <trans-unit id="9192050065623241777" datatype="html"> | 4879 | <trans-unit id="9192050065623241777" datatype="html"> |
4746 | <source>Allow users to dismiss the broadcast message</source> | 4880 | <source>Allow users to dismiss the broadcast message</source> |
4747 | <target state="new">Allow users to dismiss the broadcast message </target> | 4881 | <target state="new">Allow users to dismiss the broadcast message </target> |
4748 | 4882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">114</context></context-group> | |
4749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit> | 4883 | </trans-unit> |
4750 | <trans-unit id="6582848618760132901" datatype="html"> | 4884 | <trans-unit id="6582848618760132901" datatype="html"> |
4751 | <source>Broadcast message level</source> | 4885 | <source>Broadcast message level</source> |
4752 | <target state="new">Broadcast message level</target> | 4886 | <target state="new">Broadcast message level</target> |
4753 | 4887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">119</context></context-group> | |
4754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">119</context></context-group></trans-unit> | 4888 | </trans-unit> |
4755 | <trans-unit id="8066608938393600549" datatype="html"> | 4889 | <trans-unit id="8066608938393600549" datatype="html"> |
4756 | <source>Message</source> | 4890 | <source>Message</source> |
4757 | <target state="new">Message</target> | 4891 | <target state="new">Message</target> |
4758 | 4892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">133</context></context-group> | |
4759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">133</context></context-group></trans-unit> | 4893 | </trans-unit> |
4760 | <trans-unit id="5631159720194597622" datatype="html"> | 4894 | <trans-unit id="5631159720194597622" datatype="html"> |
4761 | <source>NEW USERS</source> | 4895 | <source>NEW USERS</source> |
4762 | <target state="new">NEW USERS</target> | 4896 | <target state="new">NEW USERS</target> |
4763 | 4897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> | |
4764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> | 4898 | </trans-unit> |
4765 | <trans-unit id="2669509104300979449" datatype="html"> | 4899 | <trans-unit id="2669509104300979449" datatype="html"> |
4766 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> | 4900 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> |
4767 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </target> | 4901 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </target> |
4768 | 4902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> | |
4769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 4903 | </trans-unit> |
4770 | <trans-unit id="4497115134891299867" datatype="html"> | 4904 | <trans-unit id="4497115134891299867" datatype="html"> |
4771 | <source>Signup requires email verification</source> | 4905 | <source>Signup requires email verification</source> |
4772 | <target state="new">Signup requires email verification</target> | 4906 | <target state="new">Signup requires email verification</target> |
4773 | 4907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">173</context></context-group> | |
4774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> | 4908 | </trans-unit> |
4775 | <trans-unit id="8133107840061687919" datatype="html"> | 4909 | <trans-unit id="8133107840061687919" datatype="html"> |
4776 | <source>Signup limit</source> | 4910 | <source>Signup limit</source> |
4777 | <target state="new">Signup limit</target> | 4911 | <target state="new">Signup limit</target> |
4778 | 4912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">177</context></context-group> | |
4779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 4913 | </trans-unit> |
4780 | <trans-unit id="8497774075394617130" datatype="html"> | 4914 | <trans-unit id="8497774075394617130" datatype="html"> |
4781 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> | 4915 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> |
4782 | <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | 4916 | <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> |
4783 | 4917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">184</context></context-group> | |
4784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit> | 4918 | </trans-unit> |
4785 | <trans-unit id="5620049714977547431" datatype="html"> | 4919 | <trans-unit id="5620049714977547431" datatype="html"> |
4786 | <source>Signup won't be limited to a fixed number of users.</source> | 4920 | <source>Signup won't be limited to a fixed number of users.</source> |
4787 | <target state="new">Signup won't be limited to a fixed number of users.</target> | 4921 | <target state="new">Signup won't be limited to a fixed number of users.</target> |
4788 | 4922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">189</context></context-group> | |
4789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit><trans-unit id="1663379405062033606" datatype="html"> | 4923 | </trans-unit> |
4790 | <source>Minimum required age to create an account</source><target state="new">Minimum required age to create an account</target> | 4924 | <trans-unit id="1663379405062033606" datatype="html"> |
4791 | 4925 | <source>Minimum required age to create an account</source> | |
4792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">193</context></context-group></trans-unit><trans-unit id="8342879272354516454" datatype="html"> | 4926 | <target state="new">Minimum required age to create an account</target> |
4793 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source><target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> | 4927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">193</context></context-group> |
4794 | 4928 | </trans-unit> | |
4795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit> | 4929 | <trans-unit id="8342879272354516454" datatype="html"> |
4930 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source> | ||
4931 | <target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> | ||
4932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">200</context></context-group> | ||
4933 | </trans-unit> | ||
4796 | <trans-unit id="7456307533995141215" datatype="html"> | 4934 | <trans-unit id="7456307533995141215" datatype="html"> |
4797 | <source>Enable Signup</source> | 4935 | <source>Enable Signup</source> |
4798 | <target state="new">Enable Signup</target> | 4936 | <target state="new">Enable Signup</target> |
4799 | 4937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">162</context></context-group> | |
4800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 4938 | </trans-unit> |
4801 | <trans-unit id="4555457172864212828" datatype="html"> | 4939 | <trans-unit id="4555457172864212828" datatype="html"> |
4802 | <source>Users</source> | 4940 | <source>Users</source> |
4803 | <target state="new">Users</target> | 4941 | <target state="new">Users</target> |
4804 | 4942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">41</context></context-group> | |
4805 | 4943 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
4806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="3807699453257291879" datatype="html"> | 4944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4807 | <source>Comments</source><target state="new">Comments</target> | 4945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group> |
4946 | </trans-unit> | ||
4947 | <trans-unit id="3807699453257291879" datatype="html"> | ||
4948 | <source>Comments</source> | ||
4949 | <target state="new">Comments</target> | ||
4808 | <context-group purpose="location"> | 4950 | <context-group purpose="location"> |
4809 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 4951 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
4810 | <context context-type="linenumber">57</context> | 4952 | <context context-type="linenumber">57</context> |
@@ -4813,76 +4955,79 @@ The link will expire within 1 hour.</target> | |||
4813 | <trans-unit id="8147229944654164397" datatype="html"> | 4955 | <trans-unit id="8147229944654164397" datatype="html"> |
4814 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> | 4956 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> |
4815 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> | 4957 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> |
4816 | 4958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
4817 | 4959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
4818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 4960 | </trans-unit> |
4819 | <trans-unit id="2068564237394270744" datatype="html"> | 4961 | <trans-unit id="2068564237394270744" datatype="html"> |
4820 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> | 4962 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> |
4821 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> | 4963 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> |
4822 | 4964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
4823 | 4965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
4824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 4966 | </trans-unit> |
4825 | <trans-unit id="407487463718398437" datatype="html"> | 4967 | <trans-unit id="407487463718398437" datatype="html"> |
4826 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> | 4968 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> |
4827 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> | 4969 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> |
4828 | 4970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | |
4829 | 4971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | |
4830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4972 | </trans-unit> |
4831 | <trans-unit id="9036137946566829282" datatype="html"> | 4973 | <trans-unit id="9036137946566829282" datatype="html"> |
4832 | <source>Incriminated in reports</source> | 4974 | <source>Incriminated in reports</source> |
4833 | <target state="new">Incriminated in reports</target> | 4975 | <target state="new">Incriminated in reports</target> |
4834 | 4976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group> | |
4835 | 4977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group> | |
4836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 4978 | </trans-unit> |
4837 | <trans-unit id="7441750243186193044" datatype="html"> | 4979 | <trans-unit id="7441750243186193044" datatype="html"> |
4838 | <source>Authored reports accepted</source> | 4980 | <source>Authored reports accepted</source> |
4839 | <target state="new">Authored reports accepted</target> | 4981 | <target state="new">Authored reports accepted</target> |
4840 | 4982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group> | |
4841 | 4983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group> | |
4842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4984 | </trans-unit> |
4843 | <trans-unit id="3094586852616580737" datatype="html"> | 4985 | <trans-unit id="3094586852616580737" datatype="html"> |
4844 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> | 4986 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> |
4845 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> | 4987 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> |
4846 | 4988 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
4847 | 4989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
4848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 4990 | </trans-unit> |
4849 | <trans-unit id="7362516430807501858" datatype="html"> | 4991 | <trans-unit id="7362516430807501858" datatype="html"> |
4850 | <source>NEW USER</source> | 4992 | <source>NEW USER</source> |
4851 | <target state="new">NEW USER</target> | 4993 | <target state="new">NEW USER</target> |
4852 | 4994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group> | |
4853 | 4995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group> | |
4854 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 4996 | </trans-unit> |
4855 | <trans-unit id="3008420115644088420" datatype="html"> | 4997 | <trans-unit id="3008420115644088420" datatype="html"> |
4856 | <source>Configuration</source> | 4998 | <source>Configuration</source> |
4857 | <target state="new">Configuration</target> | 4999 | <target state="new">Configuration</target> |
4858 | 5000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">136</context></context-group> | |
4859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">136</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">1</context></context-group></trans-unit> | 5001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group> |
5002 | </trans-unit> | ||
4860 | <trans-unit id="502260296951057925" datatype="html"> | 5003 | <trans-unit id="502260296951057925" datatype="html"> |
4861 | <source>Default video quota per user</source> | 5004 | <source>Default video quota per user</source> |
4862 | <target state="new">Default video quota per user</target> | 5005 | <target state="new">Default video quota per user</target> |
4863 | 5006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">212</context></context-group> | |
4864 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> | 5007 | </trans-unit> |
4865 | <trans-unit id="7169210802367807492" datatype="html"> | 5008 | <trans-unit id="7169210802367807492" datatype="html"> |
4866 | <source>bytes</source> | 5009 | <source>bytes</source> |
4867 | <target state="new">bytes</target> | 5010 | <target state="new">bytes</target> |
4868 | 5011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">218</context></context-group> | |
4869 | 5012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">232</context></context-group> | |
4870 | 5013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group> | |
4871 | 5014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group> | |
4872 | 5015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
4873 | 5016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
4874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">218</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">232</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 5017 | </trans-unit> |
4875 | <trans-unit id="8509882464852636851" datatype="html"> | 5018 | <trans-unit id="8509882464852636851" datatype="html"> |
4876 | <source>Default daily upload limit per user</source> | 5019 | <source>Default daily upload limit per user</source> |
4877 | <target state="new">Default daily upload limit per user</target> | 5020 | <target state="new">Default daily upload limit per user</target> |
4878 | 5021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">226</context></context-group> | |
4879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> | 5022 | </trans-unit> |
4880 | <trans-unit id="4719342289581047890" datatype="html"> | 5023 | <trans-unit id="4719342289581047890" datatype="html"> |
4881 | <source>Allow import with a torrent file or a magnet URI</source> | 5024 | <source>Allow import with a torrent file or a magnet URI</source> |
4882 | <target state="new">Allow import with a torrent file or a magnet URI</target> | 5025 | <target state="new">Allow import with a torrent file or a magnet URI</target> |
4883 | 5026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">280</context></context-group> | |
4884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">280</context></context-group></trans-unit><trans-unit id="6801844913630625451" datatype="html"> | 5027 | </trans-unit> |
4885 | <source>âš ï¸ We don't recommend to enable this feature if you don't trust your users</source><target state="new">âš ï¸ We don't recommend to enable this feature if you don't trust your users</target> | 5028 | <trans-unit id="6801844913630625451" datatype="html"> |
5029 | <source>âš ï¸ We don't recommend to enable this feature if you don't trust your users</source> | ||
5030 | <target state="new">âš ï¸ We don't recommend to enable this feature if you don't trust your users</target> | ||
4886 | <context-group purpose="location"> | 5031 | <context-group purpose="location"> |
4887 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 5032 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4888 | <context context-type="linenumber">283</context> | 5033 | <context context-type="linenumber">283</context> |
@@ -4891,179 +5036,185 @@ The link will expire within 1 hour.</target> | |||
4891 | <trans-unit id="3950258704315544174" datatype="html"> | 5036 | <trans-unit id="3950258704315544174" datatype="html"> |
4892 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> | 5037 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> |
4893 | <target state="new">Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</target> | 5038 | <target state="new">Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</target> |
4894 | 5039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">301</context></context-group> | |
4895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">301</context></context-group></trans-unit><trans-unit id="424703522835656806" datatype="html"> | 5040 | </trans-unit> |
4896 | <source>VIDEO CHANNELS</source><target state="new">VIDEO CHANNELS</target> | 5041 | <trans-unit id="424703522835656806" datatype="html"> |
4897 | 5042 | <source>VIDEO CHANNELS</source> | |
4898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">315</context></context-group></trans-unit><trans-unit id="7026684190224451991" datatype="html"> | 5043 | <target state="new">VIDEO CHANNELS</target> |
4899 | <source>Max video channels per user</source><target state="new">Max video channels per user</target> | 5044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">315</context></context-group> |
4900 | 5045 | </trans-unit> | |
4901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">320</context></context-group></trans-unit><trans-unit id="3840267063842708224" datatype="html"> | 5046 | <trans-unit id="7026684190224451991" datatype="html"> |
4902 | <source>{VAR_PLURAL, plural, =1 {channel} other {channels}}</source><target state="new">{VAR_PLURAL, plural, =1 {channel} other {channels}}</target> | 5047 | <source>Max video channels per user</source> |
4903 | 5048 | <target state="new">Max video channels per user</target> | |
4904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">327</context></context-group></trans-unit> | 5049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">320</context></context-group> |
5050 | </trans-unit> | ||
5051 | <trans-unit id="3840267063842708224" datatype="html"> | ||
5052 | <source>{VAR_PLURAL, plural, =1 {channel} other {channels}}</source> | ||
5053 | <target state="new">{VAR_PLURAL, plural, =1 {channel} other {channels}}</target> | ||
5054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">327</context></context-group> | ||
5055 | </trans-unit> | ||
4905 | <trans-unit id="3428986951244800347" datatype="html"> | 5056 | <trans-unit id="3428986951244800347" datatype="html"> |
4906 | <source>Block new videos automatically</source> | 5057 | <source>Block new videos automatically</source> |
4907 | <target state="new">Block new videos automatically</target> | 5058 | <target state="new">Block new videos automatically</target> |
4908 | 5059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">298</context></context-group> | |
4909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">298</context></context-group></trans-unit> | 5060 | </trans-unit> |
4910 | <trans-unit id="2054846790157376783" datatype="html"> | 5061 | <trans-unit id="2054846790157376783" datatype="html"> |
4911 | <source>SEARCH</source> | 5062 | <source>SEARCH</source> |
4912 | <target state="new">SEARCH</target> | 5063 | <target state="new">SEARCH</target> |
4913 | 5064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">337</context></context-group> | |
4914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">337</context></context-group></trans-unit> | 5065 | </trans-unit> |
4915 | <trans-unit id="3442084803796199253" datatype="html"> | 5066 | <trans-unit id="3442084803796199253" datatype="html"> |
4916 | <source>Allow users to do remote URI/handle search</source> | 5067 | <source>Allow users to do remote URI/handle search</source> |
4917 | <target state="new">Allow users to do remote URI/handle search</target> | 5068 | <target state="new">Allow users to do remote URI/handle search</target> |
4918 | 5069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">348</context></context-group> | |
4919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">348</context></context-group></trans-unit> | 5070 | </trans-unit> |
4920 | <trans-unit id="2258148539285928012" datatype="html"> | 5071 | <trans-unit id="2258148539285928012" datatype="html"> |
4921 | <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> | 5072 | <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> |
4922 | <target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> | 5073 | <target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> |
4923 | 5074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">351</context></context-group> | |
4924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">351</context></context-group></trans-unit> | 5075 | </trans-unit> |
4925 | <trans-unit id="7295422540935146771" datatype="html"> | 5076 | <trans-unit id="7295422540935146771" datatype="html"> |
4926 | <source>Allow anonymous to do remote URI/handle search</source> | 5077 | <source>Allow anonymous to do remote URI/handle search</source> |
4927 | <target state="new">Allow anonymous to do remote URI/handle search</target> | 5078 | <target state="new">Allow anonymous to do remote URI/handle search</target> |
4928 | 5079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">359</context></context-group> | |
4929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">359</context></context-group></trans-unit> | 5080 | </trans-unit> |
4930 | <trans-unit id="7305237807882754643" datatype="html"> | 5081 | <trans-unit id="7305237807882754643" datatype="html"> |
4931 | <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> | 5082 | <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> |
4932 | <target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> | 5083 | <target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> |
4933 | 5084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">362</context></context-group> | |
4934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">362</context></context-group></trans-unit> | 5085 | </trans-unit> |
4935 | <trans-unit id="5273935530181504015" datatype="html"> | 5086 | <trans-unit id="5273935530181504015" datatype="html"> |
4936 | <source>âš ï¸ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> | 5087 | <source>âš ï¸ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> |
4937 | <target state="new">âš ï¸ This functionality depends heavily on the moderation of instances followed by the search index you select.</target> | 5088 | <target state="new">âš ï¸ This functionality depends heavily on the moderation of instances followed by the search index you select.</target> |
4938 | 5089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> | |
4939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group></trans-unit> | 5090 | </trans-unit> |
4940 | <trans-unit id="1886227550697837417" datatype="html"> | 5091 | <trans-unit id="1886227550697837417" datatype="html"> |
4941 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 5092 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4942 | <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 5093 | <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4943 | 5094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> | |
4944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group></trans-unit> | 5095 | </trans-unit> |
4945 | <trans-unit id="2331464426553277323" datatype="html"> | 5096 | <trans-unit id="2331464426553277323" datatype="html"> |
4946 | <source>Search index URL</source> | 5097 | <source>Search index URL</source> |
4947 | <target state="new">Search index URL</target> | 5098 | <target state="new">Search index URL</target> |
4948 | 5099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">385</context></context-group> | |
4949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">385</context></context-group></trans-unit> | 5100 | </trans-unit> |
4950 | <trans-unit id="8524278911521465398" datatype="html"> | 5101 | <trans-unit id="8524278911521465398" datatype="html"> |
4951 | <source>Disable local search in search bar</source> | 5102 | <source>Disable local search in search bar</source> |
4952 | <target state="new">Disable local search in search bar</target> | 5103 | <target state="new">Disable local search in search bar</target> |
4953 | 5104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">398</context></context-group> | |
4954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">398</context></context-group></trans-unit> | 5105 | </trans-unit> |
4955 | <trans-unit id="6568991917245875948" datatype="html"> | 5106 | <trans-unit id="6568991917245875948" datatype="html"> |
4956 | <source>Otherwise the local search stays used by default</source> | 5107 | <source>Otherwise the local search stays used by default</source> |
4957 | <target state="new">Otherwise the local search stays used by default</target> | 5108 | <target state="new">Otherwise the local search stays used by default</target> |
4958 | 5109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">408</context></context-group> | |
4959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">408</context></context-group></trans-unit> | 5110 | </trans-unit> |
4960 | <trans-unit id="4444955208013675027" datatype="html"> | 5111 | <trans-unit id="4444955208013675027" datatype="html"> |
4961 | <source>Search bar uses the global search index by default</source> | 5112 | <source>Search bar uses the global search index by default</source> |
4962 | <target state="new">Search bar uses the global search index by default</target> | 5113 | <target state="new">Search bar uses the global search index by default</target> |
4963 | 5114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">405</context></context-group> | |
4964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">405</context></context-group></trans-unit> | 5115 | </trans-unit> |
4965 | <trans-unit id="6476750382562952780" datatype="html"> | 5116 | <trans-unit id="6476750382562952780" datatype="html"> |
4966 | <source>Enable global search</source> | 5117 | <source>Enable global search</source> |
4967 | <target state="new">Enable global search</target> | 5118 | <target state="new">Enable global search</target> |
4968 | 5119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">373</context></context-group> | |
4969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">373</context></context-group></trans-unit> | 5120 | </trans-unit> |
4970 | <trans-unit id="836183323506117145" datatype="html"> | 5121 | <trans-unit id="836183323506117145" datatype="html"> |
4971 | <source>FEDERATION</source> | 5122 | <source>FEDERATION</source> |
4972 | <target state="new">FEDERATION</target> | 5123 | <target state="new">FEDERATION</target> |
4973 | 5124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> | |
4974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group></trans-unit> | 5125 | </trans-unit> |
4975 | <trans-unit id="252719899360434356" datatype="html"> | 5126 | <trans-unit id="252719899360434356" datatype="html"> |
4976 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> | 5127 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> |
4977 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </target> | 5128 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </target> |
4978 | 5129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> | |
4979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group></trans-unit> | 5130 | </trans-unit> |
4980 | <trans-unit id="9119248927271669654" datatype="html"> | 5131 | <trans-unit id="9119248927271669654" datatype="html"> |
4981 | <source>Other instances can follow yours</source> | 5132 | <source>Other instances can follow yours</source> |
4982 | <target state="new">Other instances can follow yours</target> | 5133 | <target state="new">Other instances can follow yours</target> |
4983 | 5134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">440</context></context-group> | |
4984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">440</context></context-group></trans-unit> | 5135 | </trans-unit> |
4985 | <trans-unit id="7015551137649102649" datatype="html"> | 5136 | <trans-unit id="7015551137649102649" datatype="html"> |
4986 | <source>Manually approve new instance followers</source> | 5137 | <source>Manually approve new instance followers</source> |
4987 | <target state="new">Manually approve new instance followers</target> | 5138 | <target state="new">Manually approve new instance followers</target> |
4988 | 5139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">447</context></context-group> | |
4989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">447</context></context-group></trans-unit> | 5140 | </trans-unit> |
4990 | <trans-unit id="4803992993548153434" datatype="html"> | 5141 | <trans-unit id="4803992993548153434" datatype="html"> |
4991 | <source>Automatically follow back instances</source> | 5142 | <source>Automatically follow back instances</source> |
4992 | <target state="new">Automatically follow back instances</target> | 5143 | <target state="new">Automatically follow back instances</target> |
4993 | 5144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">460</context></context-group> | |
4994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">460</context></context-group></trans-unit> | 5145 | </trans-unit> |
4995 | <trans-unit id="2092224316392295720" datatype="html"> | 5146 | <trans-unit id="2092224316392295720" datatype="html"> |
4996 | <source>âš ï¸ This functionality requires a lot of attention and extra moderation.</source> | 5147 | <source>âš ï¸ This functionality requires a lot of attention and extra moderation.</source> |
4997 | <target state="new">âš ï¸ This functionality requires a lot of attention and extra moderation.</target> | 5148 | <target state="new">âš ï¸ This functionality requires a lot of attention and extra moderation.</target> |
4998 | 5149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">165</context></context-group> | |
4999 | 5150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">463</context></context-group> | |
5000 | 5151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">476</context></context-group> | |
5001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">463</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">476</context></context-group></trans-unit> | 5152 | </trans-unit> |
5002 | <trans-unit id="1718269478813020014" datatype="html"> | 5153 | <trans-unit id="1718269478813020014" datatype="html"> |
5003 | <source>Index URL</source> | 5154 | <source>Index URL</source> |
5004 | <target state="new">Index URL</target> | 5155 | <target state="new">Index URL</target> |
5005 | 5156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">485</context></context-group> | |
5006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">485</context></context-group></trans-unit> | 5157 | </trans-unit> |
5007 | <trans-unit id="173263206605027981" datatype="html"> | 5158 | <trans-unit id="173263206605027981" datatype="html"> |
5008 | <source>Automatically follow instances of a public index</source> | 5159 | <source>Automatically follow instances of a public index</source> |
5009 | <target state="new">Automatically follow instances of a public index</target> | 5160 | <target state="new">Automatically follow instances of a public index</target> |
5010 | 5161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> | |
5011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group></trans-unit> | 5162 | </trans-unit> |
5012 | <trans-unit id="9076632742417302918" datatype="html"> | 5163 | <trans-unit id="9076632742417302918" datatype="html"> |
5013 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> | 5164 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> |
5014 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </target> | 5165 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </target> |
5015 | 5166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> | |
5016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group></trans-unit> | 5167 | </trans-unit> |
5017 | <trans-unit id="3946988229617310200" datatype="html"> | 5168 | <trans-unit id="3946988229617310200" datatype="html"> |
5018 | <source>ADMINISTRATORS</source> | 5169 | <source>ADMINISTRATORS</source> |
5019 | <target state="new">ADMINISTRATORS</target> | 5170 | <target state="new">ADMINISTRATORS</target> |
5020 | 5171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">505</context></context-group> | |
5021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">505</context></context-group></trans-unit> | 5172 | </trans-unit> |
5022 | <trans-unit id="2149300564474427551" datatype="html"> | 5173 | <trans-unit id="2149300564474427551" datatype="html"> |
5023 | <source>Administrator</source> | 5174 | <source>Administrator</source> |
5024 | <target state="new">Administrator</target> | 5175 | <target state="new">Administrator</target> |
5025 | 5176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">123</context></context-group> | |
5026 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 5177 | </trans-unit> |
5027 | <trans-unit id="3171683206914962995" datatype="html"> | 5178 | <trans-unit id="3171683206914962995" datatype="html"> |
5028 | <source>Admin email</source> | 5179 | <source>Admin email</source> |
5029 | <target state="new">Admin email</target> | 5180 | <target state="new">Admin email</target> |
5030 | 5181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">511</context></context-group> | |
5031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">511</context></context-group></trans-unit> | 5182 | </trans-unit> |
5032 | <trans-unit id="4722881456283329321" datatype="html"> | 5183 | <trans-unit id="4722881456283329321" datatype="html"> |
5033 | <source>Enable contact form</source> | 5184 | <source>Enable contact form</source> |
5034 | <target state="new">Enable contact form</target> | 5185 | <target state="new">Enable contact form</target> |
5035 | 5186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">524</context></context-group> | |
5036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">524</context></context-group></trans-unit> | 5187 | </trans-unit> |
5037 | |||
5038 | <trans-unit id="5926348345797688952" datatype="html"> | 5188 | <trans-unit id="5926348345797688952" datatype="html"> |
5039 | <source>VOD Transcoding</source> | 5189 | <source>VOD Transcoding</source> |
5040 | <target state="new">VOD Transcoding</target> | 5190 | <target state="new">VOD Transcoding</target> |
5041 | 5191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">38</context></context-group> | |
5042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5192 | </trans-unit> |
5043 | <trans-unit id="1765095834299337775" datatype="html"> | 5193 | <trans-unit id="1765095834299337775" datatype="html"> |
5044 | <source>TWITTER</source> | 5194 | <source>TWITTER</source> |
5045 | <target state="new">TWITTER</target> | 5195 | <target state="new">TWITTER</target> |
5046 | 5196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">533</context></context-group> | |
5047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">533</context></context-group></trans-unit> | 5197 | </trans-unit> |
5048 | <trans-unit id="3202133522706129143" datatype="html"> | 5198 | <trans-unit id="3202133522706129143" datatype="html"> |
5049 | <source>Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value.</source> | 5199 | <source>Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value.</source> |
5050 | <target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> | 5200 | <target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> |
5051 | 5201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">534</context></context-group> | |
5052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">534</context></context-group></trans-unit> | 5202 | </trans-unit> |
5053 | <trans-unit id="4087837092261487511" datatype="html"> | 5203 | <trans-unit id="4087837092261487511" datatype="html"> |
5054 | <source>Your Twitter username</source> | 5204 | <source>Your Twitter username</source> |
5055 | <target state="new">Your Twitter username</target> | 5205 | <target state="new">Your Twitter username</target> |
5056 | 5206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">546</context></context-group> | |
5057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">546</context></context-group></trans-unit> | 5207 | </trans-unit> |
5058 | <trans-unit id="5648651824279408711" datatype="html"> | 5208 | <trans-unit id="5648651824279408711" datatype="html"> |
5059 | <source>Instance allowed by Twitter</source> | 5209 | <source>Instance allowed by Twitter</source> |
5060 | <target state="new">Instance allowed by Twitter</target> | 5210 | <target state="new">Instance allowed by Twitter</target> |
5061 | 5211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> | |
5062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group></trans-unit><trans-unit id="2076338542820061819" datatype="html"> | 5212 | </trans-unit> |
5063 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> 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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </target> | 5213 | <trans-unit id="2076338542820061819" datatype="html"> |
5064 | 5214 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> | |
5065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group></trans-unit> | 5215 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </target> |
5066 | 5216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> | |
5217 | </trans-unit> | ||
5067 | <trans-unit id="493135676263039396" datatype="html"> | 5218 | <trans-unit id="493135676263039396" datatype="html"> |
5068 | <source>LIVE</source> | 5219 | <source>LIVE</source> |
5069 | <target state="new">LIVE</target> | 5220 | <target state="new">LIVE</target> |
@@ -5073,8 +5224,8 @@ The link will expire within 1 hour.</target> | |||
5073 | <trans-unit id="1429138002697017359" datatype="html"> | 5224 | <trans-unit id="1429138002697017359" datatype="html"> |
5074 | <source>Enable users of your instance to stream live.</source> | 5225 | <source>Enable users of your instance to stream live.</source> |
5075 | <target state="new"> Enable users of your instance to stream live. </target> | 5226 | <target state="new"> Enable users of your instance to stream live. </target> |
5076 | 5227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">6</context></context-group> | |
5077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5228 | </trans-unit> |
5078 | <trans-unit id="8894612824234881672" datatype="html"> | 5229 | <trans-unit id="8894612824234881672" datatype="html"> |
5079 | <source>âš ï¸ Enabling live streaming requires trust in your users and extra moderation work</source> | 5230 | <source>âš ï¸ Enabling live streaming requires trust in your users and extra moderation work</source> |
5080 | <target state="new">âš ï¸ Enabling live streaming requires trust in your users and extra moderation work</target> | 5231 | <target state="new">âš ï¸ Enabling live streaming requires trust in your users and extra moderation work</target> |
@@ -5096,24 +5247,24 @@ The link will expire within 1 hour.</target> | |||
5096 | <trans-unit id="3472969629566153023" datatype="html"> | 5247 | <trans-unit id="3472969629566153023" datatype="html"> |
5097 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 5248 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
5098 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 5249 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
5099 | 5250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> | |
5100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 5251 | </trans-unit> |
5101 | <trans-unit id="4420104899393268652" datatype="html"> | 5252 | <trans-unit id="4420104899393268652" datatype="html"> |
5102 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5253 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
5103 | <target state="new"> Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5254 | <target state="new"> Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
5104 | 5255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> | |
5105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 5256 | </trans-unit> |
5106 | |||
5107 | <trans-unit id="7210210728441530221" datatype="html"> | 5257 | <trans-unit id="7210210728441530221" datatype="html"> |
5108 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5258 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
5109 | <target state="new"> Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5259 | <target state="new"> Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
5110 | 5260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> | |
5111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 5261 | </trans-unit> |
5112 | <trans-unit id="6830777508073747241" datatype="html"> | 5262 | <trans-unit id="6830777508073747241" datatype="html"> |
5113 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 5263 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
5114 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 5264 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
5115 | 5265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">46</context></context-group> | |
5116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 5266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">59</context></context-group> |
5267 | </trans-unit> | ||
5117 | <trans-unit id="1521259619066122077" datatype="html"> | 5268 | <trans-unit id="1521259619066122077" datatype="html"> |
5118 | <source>Max live duration</source> | 5269 | <source>Max live duration</source> |
5119 | <target state="new">Max live duration</target> | 5270 | <target state="new">Max live duration</target> |
@@ -5168,12 +5319,14 @@ The link will expire within 1 hour.</target> | |||
5168 | <trans-unit id="5975271795105968425" datatype="html"> | 5319 | <trans-unit id="5975271795105968425" datatype="html"> |
5169 | <source>Live streaming</source> | 5320 | <source>Live streaming</source> |
5170 | <target state="new">Live streaming</target> | 5321 | <target state="new">Live streaming</target> |
5171 | 5322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">47</context></context-group> | |
5172 | 5323 | <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> | |
5173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">47</context></context-group><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></trans-unit><trans-unit id="6201638315245239510" datatype="html"> | 5324 | </trans-unit> |
5174 | <source>Advanced</source><target state="new">Advanced</target> | 5325 | <trans-unit id="6201638315245239510" datatype="html"> |
5175 | 5326 | <source>Advanced</source> | |
5176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 5327 | <target state="new">Advanced</target> |
5328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">56</context></context-group> | ||
5329 | </trans-unit> | ||
5177 | <trans-unit id="7911929966701561067" datatype="html"> | 5330 | <trans-unit id="7911929966701561067" datatype="html"> |
5178 | <source>TRANSCODING</source> | 5331 | <source>TRANSCODING</source> |
5179 | <target state="new">TRANSCODING</target> | 5332 | <target state="new">TRANSCODING</target> |
@@ -5183,8 +5336,8 @@ The link will expire within 1 hour.</target> | |||
5183 | <trans-unit id="8212237880239644112" datatype="html"> | 5336 | <trans-unit id="8212237880239644112" datatype="html"> |
5184 | <source>Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some.</source> | 5337 | <source>Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some.</source> |
5185 | <target state="new"> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </target> | 5338 | <target state="new"> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </target> |
5186 | 5339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">86</context></context-group> | |
5187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 5340 | </trans-unit> |
5188 | <trans-unit id="3444148141968928069" datatype="html"> | 5341 | <trans-unit id="3444148141968928069" datatype="html"> |
5189 | <source>Input formats</source> | 5342 | <source>Input formats</source> |
5190 | <target state="new">Input formats</target> | 5343 | <target state="new">Input formats</target> |
@@ -5199,14 +5352,15 @@ The link will expire within 1 hour.</target> | |||
5199 | <source>Allow additional extensions</source> | 5352 | <source>Allow additional extensions</source> |
5200 | <target state="new">Allow additional extensions</target> | 5353 | <target state="new">Allow additional extensions</target> |
5201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">51</context></context-group> | 5354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">51</context></context-group> |
5202 | </trans-unit><trans-unit id="5698272164915890247" datatype="html"> | 5355 | </trans-unit> |
5203 | <source>Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc).</source><target state="new">Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc).</target> | 5356 | <trans-unit id="5698272164915890247" datatype="html"> |
5357 | <source>Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc).</source> | ||
5358 | <target state="new">Allows users to upload videos with additional extensions than .mp4, .ogv and .webm (for example: .avi, .mov, .mkv etc).</target> | ||
5204 | <context-group purpose="location"> | 5359 | <context-group purpose="location"> |
5205 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5360 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5206 | <context context-type="linenumber">54</context> | 5361 | <context context-type="linenumber">54</context> |
5207 | </context-group> | 5362 | </context-group> |
5208 | </trans-unit> | 5363 | </trans-unit> |
5209 | |||
5210 | <trans-unit id="1823941382992046371" datatype="html"> | 5364 | <trans-unit id="1823941382992046371" datatype="html"> |
5211 | <source>Allow audio files upload</source> | 5365 | <source>Allow audio files upload</source> |
5212 | <target state="new">Allow audio files upload</target> | 5366 | <target state="new">Allow audio files upload</target> |
@@ -5246,8 +5400,8 @@ The link will expire within 1 hour.</target> | |||
5246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> | 5400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> |
5247 | </trans-unit> | 5401 | </trans-unit> |
5248 | <trans-unit id="7334484418359079994" datatype="html"> | 5402 | <trans-unit id="7334484418359079994" datatype="html"> |
5249 | <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 plain WebTorrent:<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 especially 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> | 5403 | <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 plain WebTorrent:<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 especially 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> |
5250 | <target state="new"><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 plain WebTorrent:<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 especially 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> | 5404 | <target state="new"><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 plain WebTorrent:<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 especially 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> |
5251 | <context-group purpose="location"> | 5405 | <context-group purpose="location"> |
5252 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5406 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5253 | <context context-type="linenumber">99,108</context> | 5407 | <context context-type="linenumber">99,108</context> |
@@ -5261,8 +5415,8 @@ The link will expire within 1 hour.</target> | |||
5261 | <trans-unit id="5431196295724512251" datatype="html"> | 5415 | <trans-unit id="5431196295724512251" datatype="html"> |
5262 | <source>The original file resolution will be the default target if no option is selected.</source> | 5416 | <source>The original file resolution will be the default target if no option is selected.</source> |
5263 | <target state="new"> The original file resolution will be the default target if no option is selected. </target> | 5417 | <target state="new"> The original file resolution will be the default target if no option is selected. </target> |
5264 | 5418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">131</context></context-group> | |
5265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">131</context></context-group></trans-unit> | 5419 | </trans-unit> |
5266 | <trans-unit id="1126867109775813762" datatype="html"> | 5420 | <trans-unit id="1126867109775813762" datatype="html"> |
5267 | <source>Transcoding threads</source> | 5421 | <source>Transcoding threads</source> |
5268 | <target state="new">Transcoding threads</target> | 5422 | <target state="new">Transcoding threads</target> |
@@ -5309,26 +5463,34 @@ The link will expire within 1 hour.</target> | |||
5309 | <source>new transcoding profiles can be added by PeerTube plugins</source> | 5463 | <source>new transcoding profiles can be added by PeerTube plugins</source> |
5310 | <target state="new">new transcoding profiles can be added by PeerTube plugins</target> | 5464 | <target state="new">new transcoding profiles can be added by PeerTube plugins</target> |
5311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">179</context></context-group> | 5465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">179</context></context-group> |
5312 | </trans-unit><trans-unit id="5216455244039448125" datatype="html"> | 5466 | </trans-unit> |
5313 | <source>VIDEO EDITOR</source><target state="new">VIDEO EDITOR</target> | 5467 | <trans-unit id="5216455244039448125" datatype="html"> |
5468 | <source>VIDEO EDITOR</source> | ||
5469 | <target state="new">VIDEO EDITOR</target> | ||
5314 | <context-group purpose="location"> | 5470 | <context-group purpose="location"> |
5315 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5471 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5316 | <context context-type="linenumber">198</context> | 5472 | <context context-type="linenumber">198</context> |
5317 | </context-group> | 5473 | </context-group> |
5318 | </trans-unit><trans-unit id="4078329985026583770" datatype="html"> | 5474 | </trans-unit> |
5319 | <source> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </source><target state="new"> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </target> | 5475 | <trans-unit id="4078329985026583770" datatype="html"> |
5476 | <source>Allows your users to edit their video (cut, add intro/outro, add a watermark etc)</source> | ||
5477 | <target state="new"> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </target> | ||
5320 | <context-group purpose="location"> | 5478 | <context-group purpose="location"> |
5321 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5479 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5322 | <context context-type="linenumber">199,201</context> | 5480 | <context context-type="linenumber">199,201</context> |
5323 | </context-group> | 5481 | </context-group> |
5324 | </trans-unit><trans-unit id="6675276142886460097" datatype="html"> | 5482 | </trans-unit> |
5325 | <source>Enable video editor</source><target state="new">Enable video editor</target> | 5483 | <trans-unit id="6675276142886460097" datatype="html"> |
5484 | <source>Enable video editor</source> | ||
5485 | <target state="new">Enable video editor</target> | ||
5326 | <context-group purpose="location"> | 5486 | <context-group purpose="location"> |
5327 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5487 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5328 | <context context-type="linenumber">210</context> | 5488 | <context context-type="linenumber">210</context> |
5329 | </context-group> | 5489 | </context-group> |
5330 | </trans-unit><trans-unit id="1618687984822075464" datatype="html"> | 5490 | </trans-unit> |
5331 | <source>âš ï¸ You need to enable transcoding first to enable video editor</source><target state="new">âš ï¸ You need to enable transcoding first to enable video editor</target> | 5491 | <trans-unit id="1618687984822075464" datatype="html"> |
5492 | <source>âš ï¸ You need to enable transcoding first to enable video editor</source> | ||
5493 | <target state="new">âš ï¸ You need to enable transcoding first to enable video editor</target> | ||
5332 | <context-group purpose="location"> | 5494 | <context-group purpose="location"> |
5333 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5495 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5334 | <context context-type="linenumber">213</context> | 5496 | <context context-type="linenumber">213</context> |
@@ -5342,8 +5504,8 @@ The link will expire within 1 hour.</target> | |||
5342 | <trans-unit id="5511334650211127631" datatype="html"> | 5504 | <trans-unit id="5511334650211127631" datatype="html"> |
5343 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 5505 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
5344 | <target state="new"> Some files are not federated, and fetched when necessary. Define their caching policies. </target> | 5506 | <target state="new"> Some files are not federated, and fetched when necessary. Define their caching policies. </target> |
5345 | 5507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">6</context></context-group> | |
5346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5508 | </trans-unit> |
5347 | <trans-unit id="4382565260112874406" datatype="html"> | 5509 | <trans-unit id="4382565260112874406" datatype="html"> |
5348 | <source>Number of previews to keep in cache</source> | 5510 | <source>Number of previews to keep in cache</source> |
5349 | <target state="new">Number of previews to keep in cache</target> | 5511 | <target state="new">Number of previews to keep in cache</target> |
@@ -5394,74 +5556,67 @@ The link will expire within 1 hour.</target> | |||
5394 | <trans-unit id="1714039296068260295" datatype="html"> | 5556 | <trans-unit id="1714039296068260295" datatype="html"> |
5395 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 5557 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
5396 | <target state="new"> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </target> | 5558 | <target state="new"> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </target> |
5397 | 5559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">64</context></context-group> | |
5398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 5560 | </trans-unit> |
5399 | <trans-unit id="6180346896314915203" datatype="html"> | 5561 | <trans-unit id="6180346896314915203" datatype="html"> |
5400 | <source>JavaScript</source> | 5562 | <source>JavaScript</source> |
5401 | <target state="new">JavaScript</target> | 5563 | <target state="new">JavaScript</target> |
5402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> | 5564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> |
5403 | </trans-unit> | 5565 | </trans-unit> |
5404 | <trans-unit id="4067880101082150743" datatype="html"> | 5566 | <trans-unit id="4067880101082150743" datatype="html"> |
5405 | <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> | 5567 | <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> |
5406 | <target state="new"> 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> | 5568 | <target state="new"> 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> |
5407 | 5569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> | |
5408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 5570 | </trans-unit> |
5409 | <trans-unit id="5464209657969421100" datatype="html"> | 5571 | <trans-unit id="5464209657969421100" datatype="html"> |
5410 | <source> 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=" {{ '{' }"/> | 5572 | <source>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>"/></source> |
5411 | color: red; | 5573 | <target state="new"> 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=" {{ '{' }"/> |
5412 | <x id="INTERPOLATION_1" equiv-text=" | ||
5413 | {{ '}' }"/> | ||
5414 | <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=" {{ '{' }"/> | ||
5415 | color: red; | ||
5416 | <x id="INTERPOLATION_1" equiv-text=" | ||
5417 | {{ '}' }"/> | ||
5418 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | ||
5419 | <target state="new"> 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=" {{ '{' }"/> | ||
5420 | color: red; | 5574 | color: red; |
5421 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | 5575 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
5422 | <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=" {{ '{' }"/> | 5576 | <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=" {{ '{' }"/> |
5423 | color: red; | 5577 | color: red; |
5424 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | 5578 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
5425 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | 5579 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
5426 | 5580 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> | |
5427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 5581 | </trans-unit> |
5428 | <trans-unit id="283725429207896837" datatype="html"> | 5582 | <trans-unit id="283725429207896837" datatype="html"> |
5429 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 5583 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
5430 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 5584 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> |
5431 | 5585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">81</context></context-group> | |
5432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit><trans-unit id="4249062553881932496" datatype="html"> | 5586 | </trans-unit> |
5433 | <source> You cannot change the server configuration because it's managed externally. </source><target state="new"> You cannot change the server configuration because it's managed externally. </target> | 5587 | <trans-unit id="4249062553881932496" datatype="html"> |
5588 | <source>You cannot change the server configuration because it's managed externally.</source> | ||
5589 | <target state="new"> You cannot change the server configuration because it's managed externally. </target> | ||
5434 | <context-group purpose="location"> | 5590 | <context-group purpose="location"> |
5435 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 5591 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
5436 | <context context-type="linenumber">85,87</context> | 5592 | <context context-type="linenumber">85,87</context> |
5437 | </context-group> | 5593 | </context-group> |
5438 | </trans-unit> | 5594 | </trans-unit> |
5439 | |||
5440 | <trans-unit id="8167543029214637769" datatype="html"> | 5595 | <trans-unit id="8167543029214637769" datatype="html"> |
5441 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> | 5596 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> |
5442 | <target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> | 5597 | <target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> |
5443 | 5598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> | |
5444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 5599 | </trans-unit> |
5445 | <trans-unit id="1445676851449000175" datatype="html"> | 5600 | <trans-unit id="1445676851449000175" datatype="html"> |
5446 | <source>Update configuration</source> | 5601 | <source>Update configuration</source> |
5447 | <target state="new">Update configuration</target> | 5602 | <target state="new">Update configuration</target> |
5448 | 5603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">90</context></context-group> | |
5449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> | 5604 | </trans-unit> |
5450 | <trans-unit id="5439158575454281141" datatype="html"> | 5605 | <trans-unit id="5439158575454281141" datatype="html"> |
5451 | <source>VIDEO SETTINGS</source> | 5606 | <source>VIDEO SETTINGS</source> |
5452 | <target state="new">VIDEO SETTINGS</target> | 5607 | <target state="new">VIDEO SETTINGS</target> |
5453 | 5608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">36</context></context-group> | |
5454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 5609 | </trans-unit> |
5455 | <trans-unit id="507542497458686905" datatype="html"> | 5610 | <trans-unit id="507542497458686905" datatype="html"> |
5456 | <source>NOTIFICATIONS</source> | 5611 | <source>NOTIFICATIONS</source> |
5457 | <target state="new">NOTIFICATIONS</target> | 5612 | <target state="new">NOTIFICATIONS</target> |
5458 | 5613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group> | |
5459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 5614 | </trans-unit> |
5460 | <trans-unit id="9138757724802460941" datatype="html"> | 5615 | <trans-unit id="9138757724802460941" datatype="html"> |
5461 | <source>INTERFACE</source> | 5616 | <source>INTERFACE</source> |
5462 | <target state="new">INTERFACE</target> | 5617 | <target state="new">INTERFACE</target> |
5463 | 5618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">25</context></context-group> | |
5464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5619 | </trans-unit> |
5465 | <trans-unit id="7789395291034300662" datatype="html"> | 5620 | <trans-unit id="7789395291034300662" datatype="html"> |
5466 | <source>PASSWORD</source> | 5621 | <source>PASSWORD</source> |
5467 | <target state="new">PASSWORD</target> | 5622 | <target state="new">PASSWORD</target> |
@@ -5475,141 +5630,173 @@ color: red; | |||
5475 | <trans-unit id="7752239348028675311" datatype="html"> | 5630 | <trans-unit id="7752239348028675311" datatype="html"> |
5476 | <source>DANGER ZONE</source> | 5631 | <source>DANGER ZONE</source> |
5477 | <target state="new">DANGER ZONE</target> | 5632 | <target state="new">DANGER ZONE</target> |
5478 | 5633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">219</context></context-group> | |
5479 | 5634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">219</context></context-group> | |
5480 | 5635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
5481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">219</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">219</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 5636 | </trans-unit> |
5482 | <trans-unit id="4915431133669985304" datatype="html"> | 5637 | <trans-unit id="4915431133669985304" datatype="html"> |
5483 | <source>Profile</source> | 5638 | <source>Profile</source> |
5484 | <target state="new">Profile</target> | 5639 | <target state="new">Profile</target> |
5485 | 5640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">238</context></context-group> | |
5486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">238</context></context-group></trans-unit> | 5641 | </trans-unit> |
5487 | <trans-unit id="1963136290621768454" datatype="html"> | 5642 | <trans-unit id="1963136290621768454" datatype="html"> |
5488 | <source>Resolution</source> | 5643 | <source>Resolution</source> |
5489 | <target state="new">Resolution</target> | 5644 | <target state="new">Resolution</target> |
5490 | 5645 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">247</context></context-group> | |
5491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">247</context></context-group></trans-unit> | 5646 | </trans-unit> |
5492 | <trans-unit id="7814358426066520520" datatype="html"> | 5647 | <trans-unit id="7814358426066520520" datatype="html"> |
5493 | <source>Aspect ratio</source> | 5648 | <source>Aspect ratio</source> |
5494 | <target state="new">Aspect ratio</target> | 5649 | <target state="new">Aspect ratio</target> |
5495 | 5650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">248</context></context-group> | |
5496 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">248</context></context-group></trans-unit> | 5651 | </trans-unit> |
5497 | <trans-unit id="44862519224794374" datatype="html"> | 5652 | <trans-unit id="44862519224794374" datatype="html"> |
5498 | <source>Average frame rate</source> | 5653 | <source>Average frame rate</source> |
5499 | <target state="new">Average frame rate</target> | 5654 | <target state="new">Average frame rate</target> |
5500 | 5655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">249</context></context-group> | |
5501 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit> | 5656 | </trans-unit> |
5502 | <trans-unit id="5053683525387462246" datatype="html"> | 5657 | <trans-unit id="5053683525387462246" datatype="html"> |
5503 | <source>Pixel format</source> | 5658 | <source>Pixel format</source> |
5504 | <target state="new">Pixel format</target> | 5659 | <target state="new">Pixel format</target> |
5505 | 5660 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">250</context></context-group> | |
5506 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> | 5661 | </trans-unit> |
5507 | <trans-unit id="7858676566953242358" datatype="html"> | 5662 | <trans-unit id="7858676566953242358" datatype="html"> |
5508 | <source>Sample rate</source> | 5663 | <source>Sample rate</source> |
5509 | <target state="new">Sample rate</target> | 5664 | <target state="new">Sample rate</target> |
5510 | 5665 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">254</context></context-group> | |
5511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> | 5666 | </trans-unit> |
5512 | <trans-unit id="5403856660543890284" datatype="html"> | 5667 | <trans-unit id="5403856660543890284" datatype="html"> |
5513 | <source>Channel Layout</source> | 5668 | <source>Channel Layout</source> |
5514 | <target state="new">Channel Layout</target> | 5669 | <target state="new">Channel Layout</target> |
5515 | 5670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> | |
5516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group></trans-unit><trans-unit id="6317170736181476800" datatype="html"> | 5671 | </trans-unit> |
5517 | <source> Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a | 5672 | <trans-unit id="6317170736181476800" datatype="html"> |
5518 | >"/></source><target state="new"> Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a | 5673 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> |
5519 | >"/></target> | 5674 | <target state="new"> Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> |
5520 | 5675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> | |
5521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 5676 | </trans-unit> |
5522 | <source>More filters</source><target state="new">More filters</target> | 5677 | <trans-unit id="1405600824334286337" datatype="html"> |
5678 | <source>More filters</source> | ||
5679 | <target state="new">More filters</target> | ||
5523 | <context-group purpose="location"> | 5680 | <context-group purpose="location"> |
5524 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5681 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5525 | <context context-type="linenumber">20</context> | 5682 | <context context-type="linenumber">20</context> |
5526 | </context-group> | 5683 | </context-group> |
5527 | </trans-unit><trans-unit id="5797835178123017550" datatype="html"> | 5684 | </trans-unit> |
5528 | <source>Hide filters</source><target state="new">Hide filters</target> | 5685 | <trans-unit id="5797835178123017550" datatype="html"> |
5686 | <source>Hide filters</source> | ||
5687 | <target state="new">Hide filters</target> | ||
5529 | <context-group purpose="location"> | 5688 | <context-group purpose="location"> |
5530 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5689 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5531 | <context context-type="linenumber">21</context> | 5690 | <context context-type="linenumber">21</context> |
5532 | </context-group> | 5691 | </context-group> |
5533 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 5692 | </trans-unit> |
5534 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5693 | <trans-unit id="7028708681117573961" datatype="html"> |
5694 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5695 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5535 | <context-group purpose="location"> | 5696 | <context-group purpose="location"> |
5536 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5697 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5537 | <context context-type="linenumber">46</context> | 5698 | <context context-type="linenumber">46</context> |
5538 | </context-group> | 5699 | </context-group> |
5539 | </trans-unit><trans-unit id="8190023086228606960" datatype="html"> | 5700 | </trans-unit> |
5540 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5701 | <trans-unit id="8190023086228606960" datatype="html"> |
5702 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5703 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5541 | <context-group purpose="location"> | 5704 | <context-group purpose="location"> |
5542 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5705 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5543 | <context context-type="linenumber">48</context> | 5706 | <context context-type="linenumber">48</context> |
5544 | </context-group> | 5707 | </context-group> |
5545 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 5708 | </trans-unit> |
5546 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5709 | <trans-unit id="3224510615614621760" datatype="html"> |
5710 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5711 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5547 | <context-group purpose="location"> | 5712 | <context-group purpose="location"> |
5548 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5713 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5549 | <context context-type="linenumber">49</context> | 5714 | <context context-type="linenumber">49</context> |
5550 | </context-group> | 5715 | </context-group> |
5551 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 5716 | </trans-unit> |
5552 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5717 | <trans-unit id="3082811226222076503" datatype="html"> |
5718 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5719 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5553 | <context-group purpose="location"> | 5720 | <context-group purpose="location"> |
5554 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5721 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5555 | <context context-type="linenumber">50</context> | 5722 | <context context-type="linenumber">50</context> |
5556 | </context-group> | 5723 | </context-group> |
5557 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 5724 | </trans-unit> |
5558 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5725 | <trans-unit id="4322133526902910662" datatype="html"> |
5726 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5727 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5559 | <context-group purpose="location"> | 5728 | <context-group purpose="location"> |
5560 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5729 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5561 | <context context-type="linenumber">51</context> | 5730 | <context context-type="linenumber">51</context> |
5562 | </context-group> | 5731 | </context-group> |
5563 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 5732 | </trans-unit> |
5564 | <source>Languages:</source><target state="new">Languages:</target> | 5733 | <trans-unit id="2343321245279384373" datatype="html"> |
5734 | <source>Languages:</source> | ||
5735 | <target state="new">Languages:</target> | ||
5565 | <context-group purpose="location"> | 5736 | <context-group purpose="location"> |
5566 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5737 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5567 | <context context-type="linenumber">59</context> | 5738 | <context context-type="linenumber">59</context> |
5568 | </context-group> | 5739 | </context-group> |
5569 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 5740 | </trans-unit> |
5570 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 5741 | <trans-unit id="5063779773341398537" datatype="html"> |
5742 | <source>Sensitive content:</source> | ||
5743 | <target state="new">Sensitive content:</target> | ||
5571 | <context-group purpose="location"> | 5744 | <context-group purpose="location"> |
5572 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5745 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5573 | <context context-type="linenumber">66</context> | 5746 | <context context-type="linenumber">66</context> |
5574 | </context-group> | 5747 | </context-group> |
5575 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 5748 | </trans-unit> |
5576 | <source>Scope:</source><target state="new">Scope:</target> | 5749 | <trans-unit id="5723033003381016192" datatype="html"> |
5750 | <source>Scope:</source> | ||
5751 | <target state="new">Scope:</target> | ||
5577 | <context-group purpose="location"> | 5752 | <context-group purpose="location"> |
5578 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5753 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5579 | <context context-type="linenumber">81</context> | 5754 | <context context-type="linenumber">81</context> |
5580 | </context-group> | 5755 | </context-group> |
5581 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 5756 | </trans-unit> |
5582 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 5757 | <trans-unit id="8481241275509347668" datatype="html"> |
5758 | <source>Local videos (this instance)</source> | ||
5759 | <target state="new">Local videos (this instance)</target> | ||
5583 | <context-group purpose="location"> | 5760 | <context-group purpose="location"> |
5584 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5761 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5585 | <context context-type="linenumber">85</context> | 5762 | <context context-type="linenumber">85</context> |
5586 | </context-group> | 5763 | </context-group> |
5587 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 5764 | </trans-unit> |
5588 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 5765 | <trans-unit id="8383401711408398806" datatype="html"> |
5766 | <source>Federated videos (this instance + followed instances)</source> | ||
5767 | <target state="new">Federated videos (this instance + followed instances)</target> | ||
5589 | <context-group purpose="location"> | 5768 | <context-group purpose="location"> |
5590 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5769 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5591 | <context context-type="linenumber">90</context> | 5770 | <context context-type="linenumber">90</context> |
5592 | </context-group> | 5771 | </context-group> |
5593 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 5772 | </trans-unit> |
5594 | <source>Type:</source><target state="new">Type:</target> | 5773 | <trans-unit id="2736556170366900089" datatype="html"> |
5774 | <source>Type:</source> | ||
5775 | <target state="new">Type:</target> | ||
5595 | <context-group purpose="location"> | 5776 | <context-group purpose="location"> |
5596 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5777 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5597 | <context context-type="linenumber">95</context> | 5778 | <context context-type="linenumber">95</context> |
5598 | </context-group> | 5779 | </context-group> |
5599 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 5780 | </trans-unit> |
5600 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 5781 | <trans-unit id="1744425032255703211" datatype="html"> |
5782 | <source>VOD & Live videos</source> | ||
5783 | <target state="new">VOD & Live videos</target> | ||
5601 | <context-group purpose="location"> | 5784 | <context-group purpose="location"> |
5602 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5785 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5603 | <context context-type="linenumber">99</context> | 5786 | <context context-type="linenumber">99</context> |
5604 | </context-group> | 5787 | </context-group> |
5605 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 5788 | </trans-unit> |
5606 | <source>Categories:</source><target state="new">Categories:</target> | 5789 | <trans-unit id="1370537846415473089" datatype="html"> |
5790 | <source>Categories:</source> | ||
5791 | <target state="new">Categories:</target> | ||
5607 | <context-group purpose="location"> | 5792 | <context-group purpose="location"> |
5608 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5793 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5609 | <context context-type="linenumber">114</context> | 5794 | <context context-type="linenumber">114</context> |
5610 | </context-group> | 5795 | </context-group> |
5611 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 5796 | </trans-unit> |
5612 | <source>Moderation:</source><target state="new">Moderation:</target> | 5797 | <trans-unit id="4250125031269088402" datatype="html"> |
5798 | <source>Moderation:</source> | ||
5799 | <target state="new">Moderation:</target> | ||
5613 | <context-group purpose="location"> | 5800 | <context-group purpose="location"> |
5614 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5801 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5615 | <context context-type="linenumber">120</context> | 5802 | <context context-type="linenumber">120</context> |
@@ -5651,17 +5838,19 @@ color: red; | |||
5651 | <source>Default policy on videos containing sensitive content</source> | 5838 | <source>Default policy on videos containing sensitive content</source> |
5652 | <target state="new">Default policy on videos containing sensitive content</target> | 5839 | <target state="new">Default policy on videos containing sensitive content</target> |
5653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> | 5840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> |
5654 | </trans-unit><trans-unit id="7350483582490037954" datatype="html"> | 5841 | </trans-unit> |
5655 | <source> With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source><target state="new"> With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </target> | 5842 | <trans-unit id="7350483582490037954" datatype="html"> |
5656 | 5843 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> | |
5657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 5844 | <target state="new"> With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </target> |
5658 | 5845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> | |
5846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> | ||
5847 | </trans-unit> | ||
5659 | <trans-unit id="4409859601539810260" datatype="html"> | 5848 | <trans-unit id="4409859601539810260" datatype="html"> |
5660 | <source>Policy for sensitive videos</source> | 5849 | <source>Policy for sensitive videos</source> |
5661 | <target state="new">Policy for sensitive videos</target> | 5850 | <target state="new">Policy for sensitive videos</target> |
5662 | 5851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">118</context></context-group> | |
5663 | 5852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">15</context></context-group> | |
5664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">118</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 5853 | </trans-unit> |
5665 | <trans-unit id="2864176699435587977" datatype="html"> | 5854 | <trans-unit id="2864176699435587977" datatype="html"> |
5666 | <source>Only display videos in the following languages/subtitles</source> | 5855 | <source>Only display videos in the following languages/subtitles</source> |
5667 | <target state="new">Only display videos in the following languages/subtitles</target> | 5856 | <target state="new">Only display videos in the following languages/subtitles</target> |
@@ -5675,15 +5864,15 @@ color: red; | |||
5675 | <trans-unit id="2658703380934466003" datatype="html"> | 5864 | <trans-unit id="2658703380934466003" datatype="html"> |
5676 | <source>Add a new language</source> | 5865 | <source>Add a new language</source> |
5677 | <target state="new">Add a new language</target> | 5866 | <target state="new">Add a new language</target> |
5678 | 5867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">71</context></context-group> | |
5679 | 5868 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.html</context><context context-type="linenumber">6</context></context-group> | |
5680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5869 | </trans-unit> |
5681 | <trans-unit id="1530331428384894781" datatype="html"> | 5870 | <trans-unit id="1530331428384894781" datatype="html"> |
5682 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5871 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5683 | <target state="new"> | 5872 | <target state="new"> |
5684 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 5873 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
5685 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> | 5874 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> |
5686 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> is awaiting email verification | 5875 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> is awaiting email verification |
5687 | 5876 | ||
5688 | </target> | 5877 | </target> |
5689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> | 5878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> |
@@ -5714,28 +5903,36 @@ color: red; | |||
5714 | <target state="new">peertube default</target> | 5903 | <target state="new">peertube default</target> |
5715 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">9</context></context-group> | 5904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">9</context></context-group> |
5716 | </trans-unit> | 5905 | </trans-unit> |
5717 | |||
5718 | <trans-unit id="4561174610228620528" datatype="html"> | 5906 | <trans-unit id="4561174610228620528" datatype="html"> |
5719 | <source>Select the next owner</source> | 5907 | <source>Select the next owner</source> |
5720 | <target state="new">Select the next owner</target> | 5908 | <target state="new">Select the next owner</target> |
5721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">10</context></context-group> | 5909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">10</context></context-group> |
5722 | </trans-unit> | 5910 | </trans-unit> |
5723 | <trans-unit id="1788875035518441092" datatype="html"> | 5911 | <trans-unit id="1788875035518441092" datatype="html"> |
5724 | <source>Last published first</source><target state="new">Last published first</target> | 5912 | <source>Last published first</source> |
5725 | 5913 | <target state="new">Last published first</target> | |
5726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit><trans-unit id="4541072509002204177" datatype="html"> | 5914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">27</context></context-group> |
5727 | <source>Last created first</source><target state="new">Last created first</target> | 5915 | </trans-unit> |
5728 | 5916 | <trans-unit id="4541072509002204177" datatype="html"> | |
5729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="1142493792593089647" datatype="html"> | 5917 | <source>Last created first</source> |
5730 | <source>Most viewed first</source><target state="new">Most viewed first</target> | 5918 | <target state="new">Last created first</target> |
5731 | 5919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">28</context></context-group> | |
5732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8108088952881606566" datatype="html"> | 5920 | </trans-unit> |
5733 | <source>Most liked first</source><target state="new">Most liked first</target> | 5921 | <trans-unit id="1142493792593089647" datatype="html"> |
5734 | 5922 | <source>Most viewed first</source> | |
5735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="2782422473180760140" datatype="html"> | 5923 | <target state="new">Most viewed first</target> |
5736 | <source>Longest first</source><target state="new">Longest first</target> | 5924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">29</context></context-group> |
5737 | 5925 | </trans-unit> | |
5738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 5926 | <trans-unit id="8108088952881606566" datatype="html"> |
5927 | <source>Most liked first</source> | ||
5928 | <target state="new">Most liked first</target> | ||
5929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">30</context></context-group> | ||
5930 | </trans-unit> | ||
5931 | <trans-unit id="2782422473180760140" datatype="html"> | ||
5932 | <source>Longest first</source> | ||
5933 | <target state="new">Longest first</target> | ||
5934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">31</context></context-group> | ||
5935 | </trans-unit> | ||
5739 | <trans-unit id="8714145624854863455" datatype="html"> | 5936 | <trans-unit id="8714145624854863455" datatype="html"> |
5740 | <source>Accept ownership</source> | 5937 | <source>Accept ownership</source> |
5741 | <target state="new">Accept ownership</target> | 5938 | <target state="new">Accept ownership</target> |
@@ -5746,7 +5943,6 @@ color: red; | |||
5746 | <target state="new">Select a channel to receive the video</target> | 5943 | <target state="new">Select a channel to receive the video</target> |
5747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">10</context></context-group> | 5944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">10</context></context-group> |
5748 | </trans-unit> | 5945 | </trans-unit> |
5749 | |||
5750 | <trans-unit id="3610344835750059476" datatype="html"> | 5946 | <trans-unit id="3610344835750059476" datatype="html"> |
5751 | <source>My ownership changes</source> | 5947 | <source>My ownership changes</source> |
5752 | <target state="new">My ownership changes</target> | 5948 | <target state="new">My ownership changes</target> |
@@ -5762,11 +5958,11 @@ color: red; | |||
5762 | <target state="new"> | 5958 | <target state="new"> |
5763 | Created | 5959 | Created |
5764 | 5960 | ||
5765 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 5961 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
5766 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 5962 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
5767 | </target> | 5963 | </target> |
5768 | 5964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">21</context></context-group> | |
5769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 5965 | </trans-unit> |
5770 | <trans-unit id="5611592591303869712" datatype="html"> | 5966 | <trans-unit id="5611592591303869712" datatype="html"> |
5771 | <source>Status</source> | 5967 | <source>Status</source> |
5772 | <target state="new">Status</target> | 5968 | <target state="new">Status</target> |
@@ -5775,25 +5971,24 @@ color: red; | |||
5775 | <trans-unit id="5417361655914085905" datatype="html"> | 5971 | <trans-unit id="5417361655914085905" datatype="html"> |
5776 | <source>Account page</source> | 5972 | <source>Account page</source> |
5777 | <target state="new">Account page</target> | 5973 | <target state="new">Account page</target> |
5778 | 5974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">66</context></context-group> | |
5779 | 5975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">72</context></context-group> | |
5780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 5976 | </trans-unit> |
5781 | |||
5782 | <trans-unit id="2000373220662583633" datatype="html"> | 5977 | <trans-unit id="2000373220662583633" datatype="html"> |
5783 | <source>No ownership change request found.</source> | 5978 | <source>No ownership change request found.</source> |
5784 | <target state="new">No ownership change request found.</target> | 5979 | <target state="new">No ownership change request found.</target> |
5785 | 5980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">78</context></context-group> | |
5786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 5981 | </trans-unit> |
5787 | <trans-unit id="4247400351982331798" datatype="html"> | 5982 | <trans-unit id="4247400351982331798" datatype="html"> |
5788 | <source>Account settings</source> | 5983 | <source>Account settings</source> |
5789 | <target state="new">Account settings</target> | 5984 | <target state="new">Account settings</target> |
5790 | 5985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">28</context></context-group> | |
5791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5986 | </trans-unit> |
5792 | <trans-unit id="2864486939135008600" datatype="html"> | 5987 | <trans-unit id="2864486939135008600" datatype="html"> |
5793 | <source>Playlist elements</source> | 5988 | <source>Playlist elements</source> |
5794 | <target state="new">Playlist elements</target> | 5989 | <target state="new">Playlist elements</target> |
5795 | 5990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
5796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 5991 | </trans-unit> |
5797 | <trans-unit id="7801453816697513153" datatype="html"> | 5992 | <trans-unit id="7801453816697513153" datatype="html"> |
5798 | <source>My imports</source> | 5993 | <source>My imports</source> |
5799 | <target state="new">My imports</target> | 5994 | <target state="new">My imports</target> |
@@ -5803,25 +5998,28 @@ color: red; | |||
5803 | <trans-unit id="7000850040589508423" datatype="html"> | 5998 | <trans-unit id="7000850040589508423" datatype="html"> |
5804 | <source>Create video channel</source> | 5999 | <source>Create video channel</source> |
5805 | <target state="new">Create video channel</target> | 6000 | <target state="new">Create video channel</target> |
5806 | 6001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">14</context></context-group> | |
5807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="5700655611297335752" datatype="html"> | 6002 | </trans-unit> |
5808 | <source>No channel found.</source><target state="new">No channel found.</target> | 6003 | <trans-unit id="5700655611297335752" datatype="html"> |
5809 | 6004 | <source>No channel found.</source> | |
5810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 6005 | <target state="new">No channel found.</target> |
5811 | 6006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">18</context></context-group> | |
6007 | </trans-unit> | ||
5812 | <trans-unit id="626184983378002054" datatype="html"> | 6008 | <trans-unit id="626184983378002054" datatype="html"> |
5813 | <source>Example: my_channel</source> | 6009 | <source>Example: my_channel</source> |
5814 | <target state="new">Example: my_channel</target> | 6010 | <target state="new">Example: my_channel</target> |
5815 | 6011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
5816 | 6012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
5817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 6013 | </trans-unit> |
5818 | <trans-unit id="5871023634125368211" datatype="html"> | 6014 | <trans-unit id="5871023634125368211" datatype="html"> |
5819 | <source>CHANNEL</source> | 6015 | <source>CHANNEL</source> |
5820 | <target state="new">CHANNEL</target> | 6016 | <target state="new">CHANNEL</target> |
5821 | 6017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group> | |
5822 | 6018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group> | |
5823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit><trans-unit id="5013100494982905528" datatype="html"> | 6019 | </trans-unit> |
5824 | <source>Banner image of the channel</source><target state="new">Banner image of the channel</target> | 6020 | <trans-unit id="5013100494982905528" datatype="html"> |
6021 | <source>Banner image of the channel</source> | ||
6022 | <target state="new">Banner image of the channel</target> | ||
5825 | <context-group purpose="location"> | 6023 | <context-group purpose="location"> |
5826 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> | 6024 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> |
5827 | <context context-type="linenumber">13</context> | 6025 | <context context-type="linenumber">13</context> |
@@ -5831,37 +6029,37 @@ color: red; | |||
5831 | <context context-type="linenumber">13</context> | 6029 | <context context-type="linenumber">13</context> |
5832 | </context-group> | 6030 | </context-group> |
5833 | </trans-unit> | 6031 | </trans-unit> |
5834 | |||
5835 | <trans-unit id="5278589041647101772" datatype="html"> | 6032 | <trans-unit id="5278589041647101772" datatype="html"> |
5836 | <source>Overwrite support field of all videos of this channel</source> | 6033 | <source>Overwrite support field of all videos of this channel</source> |
5837 | <target state="new">Overwrite support field of all videos of this channel</target> | 6034 | <target state="new">Overwrite support field of all videos of this channel</target> |
5838 | 6035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group> | |
5839 | 6036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group> | |
5840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6037 | </trans-unit> |
5841 | <trans-unit id="5500467336262464724" datatype="html"> | 6038 | <trans-unit id="5500467336262464724" datatype="html"> |
5842 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> | 6039 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> |
5843 | <target state="new"> | 6040 | <target state="new"> |
5844 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers | 6041 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers |
5845 | </target> | 6042 | </target> |
5846 | 6043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | |
5847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 6044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> |
6045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">27</context></context-group> | ||
6046 | </trans-unit> | ||
5848 | <trans-unit id="31472093355465024" datatype="html"> | 6047 | <trans-unit id="31472093355465024" datatype="html"> |
5849 | <source>Upload a new avatar</source> | 6048 | <source>Upload a new avatar</source> |
5850 | <target state="new">Upload a new avatar</target> | 6049 | <target state="new">Upload a new avatar</target> |
5851 | 6050 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">9</context></context-group> | |
5852 | 6051 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">34</context></context-group> | |
5853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 6052 | </trans-unit> |
5854 | <trans-unit id="4854396465510517671" datatype="html"> | 6053 | <trans-unit id="4854396465510517671" datatype="html"> |
5855 | <source>Target</source> | 6054 | <source>Target</source> |
5856 | <target state="new">Target</target> | 6055 | <target state="new">Target</target> |
5857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">17</context></context-group> | 6056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">17</context></context-group> |
5858 | </trans-unit> | 6057 | </trans-unit> |
5859 | |||
5860 | <trans-unit id="6376690302059877029" datatype="html"> | 6058 | <trans-unit id="6376690302059877029" datatype="html"> |
5861 | <source>This video was deleted</source> | 6059 | <source>This video was deleted</source> |
5862 | <target state="new">This video was deleted</target> | 6060 | <target state="new">This video was deleted</target> |
5863 | 6061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">48</context></context-group> | |
5864 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 6062 | </trans-unit> |
5865 | <trans-unit id="6924803931258995553" datatype="html"> | 6063 | <trans-unit id="6924803931258995553" datatype="html"> |
5866 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> | 6064 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> |
5867 | <target state="new">Showing | 6065 | <target state="new">Showing |
@@ -5876,34 +6074,33 @@ color: red; | |||
5876 | <target state="new">Once you delete your account, there is no going back. You will be asked to confirm this action.</target> | 6074 | <target state="new">Once you delete your account, there is no going back. You will be asked to confirm this action.</target> |
5877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">2</context></context-group> | 6075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">2</context></context-group> |
5878 | </trans-unit> | 6076 | </trans-unit> |
5879 | |||
5880 | <trans-unit id="4000980858407872649" datatype="html"> | 6077 | <trans-unit id="4000980858407872649" datatype="html"> |
5881 | <source>Channel page</source> | 6078 | <source>Channel page</source> |
5882 | <target state="new">Channel page</target> | 6079 | <target state="new">Channel page</target> |
5883 | 6080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">25</context></context-group> | |
5884 | 6081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5885 | 6082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">63</context></context-group> | |
5886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 6083 | </trans-unit> |
5887 | <trans-unit id="9131836378905533756" datatype="html"> | 6084 | <trans-unit id="9131836378905533756" datatype="html"> |
5888 | <source>Created by <x id="INTERPOLATION"/></source> | 6085 | <source>Created by <x id="INTERPOLATION"/></source> |
5889 | <target state="new">Created by | 6086 | <target state="new">Created by |
5890 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> | 6087 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> |
5891 | </target> | 6088 | </target> |
5892 | 6089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">28</context></context-group> | |
5893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 6090 | </trans-unit> |
5894 | <trans-unit id="228548407872312756" datatype="html"> | 6091 | <trans-unit id="228548407872312756" datatype="html"> |
5895 | <source>Owner account page</source> | 6092 | <source>Owner account page</source> |
5896 | <target state="new">Owner account page</target> | 6093 | <target state="new">Owner account page</target> |
5897 | 6094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group> | |
5898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 6095 | </trans-unit> |
5899 | |||
5900 | |||
5901 | <trans-unit id="4781078006040259916" datatype="html"> | 6096 | <trans-unit id="4781078006040259916" datatype="html"> |
5902 | <source>You don't have any video in your watch history yet.</source> | 6097 | <source>You don't have any video in your watch history yet.</source> |
5903 | <target state="new">You don't have any video in your watch history yet.</target> | 6098 | <target state="new">You don't have any video in your watch history yet.</target> |
5904 | 6099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">29</context></context-group> | |
5905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="989169929300254768" datatype="html"> | 6100 | </trans-unit> |
5906 | <source>Delete from history</source><target state="new">Delete from history</target> | 6101 | <trans-unit id="989169929300254768" datatype="html"> |
6102 | <source>Delete from history</source> | ||
6103 | <target state="new">Delete from history</target> | ||
5907 | <context-group purpose="location"> | 6104 | <context-group purpose="location"> |
5908 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 6105 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
5909 | <context context-type="linenumber">36</context> | 6106 | <context context-type="linenumber">36</context> |
@@ -5920,14 +6117,18 @@ color: red; | |||
5920 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 6117 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
5921 | <context context-type="linenumber">3</context> | 6118 | <context context-type="linenumber">3</context> |
5922 | </context-group> | 6119 | </context-group> |
5923 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 6120 | </trans-unit> |
5924 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source><target state="new">Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 6121 | <trans-unit id="5511928240200239994" datatype="html"> |
6122 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | ||
6123 | <target state="new">Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | ||
5925 | <context-group purpose="location"> | 6124 | <context-group purpose="location"> |
5926 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 6125 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5927 | <context context-type="linenumber">5</context> | 6126 | <context context-type="linenumber">5</context> |
5928 | </context-group> | 6127 | </context-group> |
5929 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 6128 | </trans-unit> |
5930 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 6129 | <trans-unit id="5339945526545410198" datatype="html"> |
6130 | <source>Set up my channels</source> | ||
6131 | <target state="new">Set up my channels</target> | ||
5931 | <context-group purpose="location"> | 6132 | <context-group purpose="location"> |
5932 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 6133 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5933 | <context context-type="linenumber">6</context> | 6134 | <context context-type="linenumber">6</context> |
@@ -5936,8 +6137,8 @@ color: red; | |||
5936 | <trans-unit id="2726946550255780479" datatype="html"> | 6137 | <trans-unit id="2726946550255780479" datatype="html"> |
5937 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> | 6138 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> |
5938 | <target state="new"> | 6139 | <target state="new"> |
5939 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> | 6140 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> |
5940 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> | 6141 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> |
5941 | Notification preferences | 6142 | Notification preferences |
5942 | 6143 | ||
5943 | </target> | 6144 | </target> |
@@ -5958,12 +6159,11 @@ color: red; | |||
5958 | <target state="new">All read</target> | 6159 | <target state="new">All read</target> |
5959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">26</context></context-group> | 6160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">26</context></context-group> |
5960 | </trans-unit> | 6161 | </trans-unit> |
5961 | |||
5962 | <trans-unit id="9167786874272926575" datatype="html"> | 6162 | <trans-unit id="9167786874272926575" datatype="html"> |
5963 | <source>Web</source> | 6163 | <source>Web</source> |
5964 | <target state="new">Web</target> | 6164 | <target state="new">Web</target> |
5965 | 6165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">5</context></context-group> | |
5966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 6166 | </trans-unit> |
5967 | <trans-unit id="1967081128372276674" datatype="html"> | 6167 | <trans-unit id="1967081128372276674" datatype="html"> |
5968 | <source>My Playlists</source> | 6168 | <source>My Playlists</source> |
5969 | <target state="new">My Playlists</target> | 6169 | <target state="new">My Playlists</target> |
@@ -5985,30 +6185,29 @@ color: red; | |||
5985 | <trans-unit id="3438686710205841496" datatype="html"> | 6185 | <trans-unit id="3438686710205841496" datatype="html"> |
5986 | <source>Create playlist</source> | 6186 | <source>Create playlist</source> |
5987 | <target state="new">Create playlist</target> | 6187 | <target state="new">Create playlist</target> |
5988 | 6188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">13</context></context-group> | |
5989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 6189 | </trans-unit> |
5990 | <trans-unit id="7040375308762081154" datatype="html"> | 6190 | <trans-unit id="7040375308762081154" datatype="html"> |
5991 | <source>My video channels</source> | 6191 | <source>My video channels</source> |
5992 | <target state="new">My video channels</target> | 6192 | <target state="new">My video channels</target> |
5993 | 6193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">11</context></context-group> | |
5994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 6194 | </trans-unit> |
5995 | <trans-unit id="7418836785553125957" datatype="html"> | 6195 | <trans-unit id="7418836785553125957" datatype="html"> |
5996 | <source>Create a new video channel</source> | 6196 | <source>Create a new video channel</source> |
5997 | <target state="new">Create a new video channel</target> | 6197 | <target state="new">Create a new video channel</target> |
5998 | 6198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
5999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 6199 | </trans-unit> |
6000 | <trans-unit id="8828123061564507501" datatype="html"> | 6200 | <trans-unit id="8828123061564507501" datatype="html"> |
6001 | <source>Playlist <x id="PH"/>} deleted.</source> | 6201 | <source>Playlist <x id="PH"/>} deleted.</source> |
6002 | <target state="new">Playlist <x id="PH"/>} deleted.</target> | 6202 | <target state="new">Playlist <x id="PH"/>} deleted.</target> |
6003 | 6203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">45</context></context-group> | |
6004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 6204 | </trans-unit> |
6005 | <trans-unit id="3943893855105372623" datatype="html"> | 6205 | <trans-unit id="3943893855105372623" datatype="html"> |
6006 | <source>Playlist thumbnail</source> | 6206 | <source>Playlist thumbnail</source> |
6007 | <target state="new">Playlist thumbnail</target> | 6207 | <target state="new">Playlist thumbnail</target> |
6008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> | 6208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> |
6009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> | 6209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> |
6010 | </trans-unit> | 6210 | </trans-unit> |
6011 | |||
6012 | <trans-unit id="7743343997362363486" datatype="html"> | 6211 | <trans-unit id="7743343997362363486" datatype="html"> |
6013 | <source>No videos in this playlist.</source> | 6212 | <source>No videos in this playlist.</source> |
6014 | <target state="new">No videos in this playlist.</target> | 6213 | <target state="new">No videos in this playlist.</target> |
@@ -6019,18 +6218,18 @@ color: red; | |||
6019 | <target state="new"> | 6218 | <target state="new"> |
6020 | Browse videos on PeerTube to add them in your playlist. | 6219 | Browse videos on PeerTube to add them in your playlist. |
6021 | </target> | 6220 | </target> |
6022 | 6221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">27</context></context-group> | |
6023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 6222 | </trans-unit> |
6024 | <trans-unit id="8901774330683812267" datatype="html"> | 6223 | <trans-unit id="8901774330683812267" datatype="html"> |
6025 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> | 6224 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> |
6026 | <target state="new"> | 6225 | <target state="new"> |
6027 | See the | 6226 | See the |
6028 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | 6227 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation |
6029 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. | 6228 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. |
6030 | 6229 | ||
6031 | </target> | 6230 | </target> |
6032 | 6231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">31</context></context-group> | |
6033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 6232 | </trans-unit> |
6034 | <trans-unit id="5904811038805050477" datatype="html"> | 6233 | <trans-unit id="5904811038805050477" datatype="html"> |
6035 | <source>Welcome to PeerTube!</source> | 6234 | <source>Welcome to PeerTube!</source> |
6036 | <target state="new">Welcome to PeerTube!</target> | 6235 | <target state="new">Welcome to PeerTube!</target> |
@@ -6040,19 +6239,25 @@ color: red; | |||
6040 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> | 6239 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> |
6041 | <target state="new"> | 6240 | <target state="new"> |
6042 | If you need help to use PeerTube, you can have a look at the | 6241 | If you need help to use PeerTube, you can have a look at the |
6043 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | 6242 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation |
6044 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 6243 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
6045 | 6244 | ||
6046 | </target> | 6245 | </target> |
6047 | 6246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> | |
6048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 6247 | </trans-unit> |
6049 | <source> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source><target state="new"> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> | 6248 | <trans-unit id="8844610145426272276" datatype="html"> |
6050 | 6249 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> | |
6051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit><trans-unit id="3030338154442300172" datatype="html"> | 6250 | <target state="new"> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> |
6052 | <source> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}" xid="498463490165953744"/> </source><target state="new"> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </target> | 6251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> |
6053 | 6252 | </trans-unit> | |
6054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit><trans-unit id="3505845886770923767" datatype="html"> | 6253 | <trans-unit id="3030338154442300172" datatype="html"> |
6055 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source><target state="new">{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</target> | 6254 | <source>Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}" xid="498463490165953744"/> </source> |
6255 | <target state="new"> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </target> | ||
6256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group> | ||
6257 | </trans-unit> | ||
6258 | <trans-unit id="3505845886770923767" datatype="html"> | ||
6259 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source> | ||
6260 | <target state="new">{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</target> | ||
6056 | <context-group purpose="location"> | 6261 | <context-group purpose="location"> |
6057 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 6262 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
6058 | <context context-type="linenumber">3</context> | 6263 | <context context-type="linenumber">3</context> |
@@ -6063,15 +6268,15 @@ color: red; | |||
6063 | <target state="new"> | 6268 | <target state="new"> |
6064 | Verify account email confirmation | 6269 | Verify account email confirmation |
6065 | </target> | 6270 | </target> |
6066 | 6271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">2</context></context-group> | |
6067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 6272 | </trans-unit> |
6068 | <trans-unit id="5705969545943613067" datatype="html"> | 6273 | <trans-unit id="5705969545943613067" datatype="html"> |
6069 | <source>Email updated.</source> | 6274 | <source>Email updated.</source> |
6070 | <target state="new"> | 6275 | <target state="new"> |
6071 | Email updated. | 6276 | Email updated. |
6072 | </target> | 6277 | </target> |
6073 | 6278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">9</context></context-group> | |
6074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6279 | </trans-unit> |
6075 | <trans-unit id="5321335688371682440" datatype="html"> | 6280 | <trans-unit id="5321335688371682440" datatype="html"> |
6076 | <source>An error occurred.</source> | 6281 | <source>An error occurred.</source> |
6077 | <target state="new">An error occurred.</target> | 6282 | <target state="new">An error occurred.</target> |
@@ -6080,24 +6285,25 @@ color: red; | |||
6080 | <trans-unit id="9128669621822125729" datatype="html"> | 6285 | <trans-unit id="9128669621822125729" datatype="html"> |
6081 | <source>Video channel videos</source> | 6286 | <source>Video channel videos</source> |
6082 | <target state="new">Video channel videos</target> | 6287 | <target state="new">Video channel videos</target> |
6083 | 6288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">22</context></context-group> | |
6084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 6289 | </trans-unit> |
6085 | <trans-unit id="3193822049276963401" datatype="html"> | 6290 | <trans-unit id="3193822049276963401" datatype="html"> |
6086 | <source>Video channel playlists</source> | 6291 | <source>Video channel playlists</source> |
6087 | <target state="new">Video channel playlists</target> | 6292 | <target state="new">Video channel playlists</target> |
6088 | 6293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">35</context></context-group></trans-unit><trans-unit id="1949999959792821767" datatype="html"> | 6294 | </trans-unit> |
6090 | <source> Manage channel </source><target state="new"> Manage channel </target> | 6295 | <trans-unit id="1949999959792821767" datatype="html"> |
6091 | 6296 | <source>Manage channel</source> | |
6092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6297 | <target state="new"> Manage channel </target> |
6093 | 6298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">9</context></context-group> | |
6299 | </trans-unit> | ||
6094 | <trans-unit id="4302331889176439801" datatype="html"> | 6300 | <trans-unit id="4302331889176439801" datatype="html"> |
6095 | <source>Request email for account verification</source> | 6301 | <source>Request email for account verification</source> |
6096 | <target state="new"> | 6302 | <target state="new"> |
6097 | Request email for account verification | 6303 | Request email for account verification |
6098 | </target> | 6304 | </target> |
6099 | 6305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">2</context></context-group> | |
6100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 6306 | </trans-unit> |
6101 | <trans-unit id="4027779086550572813" datatype="html"> | 6307 | <trans-unit id="4027779086550572813" datatype="html"> |
6102 | <source>Send verification email</source> | 6308 | <source>Send verification email</source> |
6103 | <target state="new">Send verification email</target> | 6309 | <target state="new">Send verification email</target> |
@@ -6111,133 +6317,158 @@ color: red; | |||
6111 | <trans-unit id="248731258067914565" datatype="html"> | 6317 | <trans-unit id="248731258067914565" datatype="html"> |
6112 | <source>Verify account via email</source> | 6318 | <source>Verify account via email</source> |
6113 | <target state="new">Verify account via email</target> | 6319 | <target state="new">Verify account via email</target> |
6114 | 6320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">15</context></context-group> | |
6115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 6321 | </trans-unit> |
6116 | <trans-unit id="9197112111252826229" datatype="html"> | 6322 | <trans-unit id="9197112111252826229" datatype="html"> |
6117 | <source>Ask to send an email to verify you account</source> | 6323 | <source>Ask to send an email to verify you account</source> |
6118 | <target state="new">Ask to send an email to verify you account</target> | 6324 | <target state="new">Ask to send an email to verify you account</target> |
6119 | 6325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
6120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6326 | </trans-unit> |
6121 | <trans-unit id="2999492056553212422" datatype="html"> | 6327 | <trans-unit id="2999492056553212422" datatype="html"> |
6122 | <source>Banned</source> | 6328 | <source>Banned</source> |
6123 | <target state="new">Banned</target> | 6329 | <target state="new">Banned</target> |
6124 | 6330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group> | |
6125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 6331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">105</context></context-group> |
6332 | </trans-unit> | ||
6126 | <trans-unit id="4572885137800697555" datatype="html"> | 6333 | <trans-unit id="4572885137800697555" datatype="html"> |
6127 | <source>Instance muted</source> | 6334 | <source>Instance muted</source> |
6128 | <target state="new">Instance muted</target> | 6335 | <target state="new">Instance muted</target> |
6129 | 6336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">2</context></context-group> | |
6130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 6337 | </trans-unit> |
6131 | <trans-unit id="302022805144581075" datatype="html"> | 6338 | <trans-unit id="302022805144581075" datatype="html"> |
6132 | <source>Muted by your instance</source> | 6339 | <source>Muted by your instance</source> |
6133 | <target state="new">Muted by your instance</target> | 6340 | <target state="new">Muted by your instance</target> |
6134 | 6341 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">3</context></context-group> | |
6135 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6342 | </trans-unit> |
6136 | <trans-unit id="6860866645734090311" datatype="html"> | 6343 | <trans-unit id="6860866645734090311" datatype="html"> |
6137 | <source>Instance muted by your instance</source> | 6344 | <source>Instance muted by your instance</source> |
6138 | <target state="new">Instance muted by your instance</target> | 6345 | <target state="new">Instance muted by your instance</target> |
6139 | 6346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">4</context></context-group> | |
6140 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit><trans-unit id="8661266239199665830" datatype="html"> | 6347 | </trans-unit> |
6141 | <source>Copy account handle</source><target state="new">Copy account handle</target> | 6348 | <trans-unit id="8661266239199665830" datatype="html"> |
6142 | 6349 | <source>Copy account handle</source> | |
6143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="3061133792040537550" datatype="html"> | 6350 | <target state="new">Copy account handle</target> |
6144 | <source>Show the complete description</source><target state="new">Show the complete description</target> | 6351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">29</context></context-group> |
6145 | 6352 | </trans-unit> | |
6146 | 6353 | <trans-unit id="3061133792040537550" datatype="html"> | |
6147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="9098920722959201547" datatype="html"> | 6354 | <source>Show the complete description</source> |
6148 | <source> Show more... </source><target state="new"> Show more... </target> | 6355 | <target state="new">Show the complete description</target> |
6149 | 6356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">53</context></context-group> | |
6150 | 6357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">96</context></context-group> | |
6151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit><trans-unit id="6808894347744915561" datatype="html"> | 6358 | </trans-unit> |
6152 | <source> Manage account </source><target state="new"> Manage account </target> | 6359 | <trans-unit id="9098920722959201547" datatype="html"> |
6153 | 6360 | <source>Show more...</source> | |
6154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit><trans-unit id="1311667768861466464" datatype="html"> | 6361 | <target state="new"> Show more... </target> |
6155 | <source>Search account videos</source><target state="new">Search account videos</target> | 6362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">54</context></context-group> |
6156 | 6363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">97</context></context-group> | |
6157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit><trans-unit id="5512878593724620692" datatype="html"> | 6364 | </trans-unit> |
6158 | <source>CHANNELS</source><target state="new">CHANNELS</target> | 6365 | <trans-unit id="6808894347744915561" datatype="html"> |
6159 | 6366 | <source>Manage account</source> | |
6160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6367 | <target state="new"> Manage account </target> |
6161 | 6368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">59</context></context-group> | |
6369 | </trans-unit> | ||
6370 | <trans-unit id="1311667768861466464" datatype="html"> | ||
6371 | <source>Search account videos</source> | ||
6372 | <target state="new">Search account videos</target> | ||
6373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">78</context></context-group> | ||
6374 | </trans-unit> | ||
6375 | <trans-unit id="5512878593724620692" datatype="html"> | ||
6376 | <source>CHANNELS</source> | ||
6377 | <target state="new">CHANNELS</target> | ||
6378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | ||
6379 | </trans-unit> | ||
6162 | <trans-unit id="3666829335406793239" datatype="html"> | 6380 | <trans-unit id="3666829335406793239" datatype="html"> |
6163 | <source>This account does not have channels.</source> | 6381 | <source>This account does not have channels.</source> |
6164 | <target state="new">This account does not have channels.</target> | 6382 | <target state="new">This account does not have channels.</target> |
6165 | 6383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">5</context></context-group> | |
6166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 6384 | </trans-unit> |
6167 | <trans-unit id="403587185492002456" datatype="html"> | 6385 | <trans-unit id="403587185492002456" datatype="html"> |
6168 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6386 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6169 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { | 6387 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { |
6170 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } | 6388 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } |
6171 | </target> | 6389 | </target> |
6172 | 6390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group> | |
6173 | 6391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> | |
6174 | 6392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group> | |
6175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="3068011377000255023" datatype="html"> | 6393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group> |
6176 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source><target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 6394 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group> |
6177 | 6395 | </trans-unit> | |
6178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="8856905278208146821" datatype="html"> | 6396 | <trans-unit id="3068011377000255023" datatype="html"> |
6179 | <source> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source><target state="new"> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </target> | 6397 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6180 | 6398 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | |
6181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4071627711041975501" datatype="html"> | 6399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> |
6182 | <source>Show this channel</source><target state="new">Show this channel</target> | 6400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group> |
6183 | 6401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group> | |
6184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group> |
6403 | </trans-unit> | ||
6404 | <trans-unit id="8856905278208146821" datatype="html"> | ||
6405 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> | ||
6406 | <target state="new"> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </target> | ||
6407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group> | ||
6408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | ||
6409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group> | ||
6410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group> | ||
6411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group> | ||
6412 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group> | ||
6413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group> | ||
6414 | </trans-unit> | ||
6415 | <trans-unit id="4071627711041975501" datatype="html"> | ||
6416 | <source>Show this channel</source> | ||
6417 | <target state="new">Show this channel</target> | ||
6418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">38</context></context-group> | ||
6419 | </trans-unit> | ||
6185 | <trans-unit id="7766488542631150871" datatype="html"> | 6420 | <trans-unit id="7766488542631150871" datatype="html"> |
6186 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 6421 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
6187 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 6422 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
6188 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } | 6423 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } |
6189 | </target> | 6424 | </target> |
6190 | 6425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | |
6191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> |
6427 | </trans-unit> | ||
6192 | <trans-unit id="7152797255397280410" datatype="html"> | 6428 | <trans-unit id="7152797255397280410" datatype="html"> |
6193 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 6429 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
6194 | It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another | ||
6195 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | ||
6196 | <target state="new">Do you really want to delete <x id="PH"/>? | 6430 | <target state="new">Do you really want to delete <x id="PH"/>? |
6197 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | 6431 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another |
6198 | channel with the same name (<x id="PH_2"/>)!</target> | 6432 | channel with the same name (<x id="PH_2"/>)!</target> |
6199 | 6433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> | |
6200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit><trans-unit id="4433306639366959484" datatype="html"> | 6434 | </trans-unit> |
6201 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source><target state="new">Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</target> | 6435 | <trans-unit id="4433306639366959484" datatype="html"> |
6436 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> | ||
6437 | <target state="new">Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</target> | ||
6202 | <context-group purpose="location"> | 6438 | <context-group purpose="location"> |
6203 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 6439 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
6204 | <context context-type="linenumber">48</context> | 6440 | <context context-type="linenumber">48</context> |
6205 | </context-group> | 6441 | </context-group> |
6206 | </trans-unit> | 6442 | </trans-unit> |
6207 | |||
6208 | <trans-unit id="3428015997161360357" datatype="html"> | 6443 | <trans-unit id="3428015997161360357" datatype="html"> |
6209 | <source>NEW CHANNEL</source> | 6444 | <source>NEW CHANNEL</source> |
6210 | <target state="new">NEW CHANNEL</target> | 6445 | <target state="new">NEW CHANNEL</target> |
6211 | 6446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
6212 | 6447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
6213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 6448 | </trans-unit> |
6214 | <trans-unit id="7828153032795614080" datatype="html"> | 6449 | <trans-unit id="7828153032795614080" datatype="html"> |
6215 | <source>See this video channel</source> | 6450 | <source>See this video channel</source> |
6216 | <target state="new">See this video channel</target> | 6451 | <target state="new">See this video channel</target> |
6217 | 6452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">15</context></context-group> | |
6218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 6453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group> |
6454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">4</context></context-group> | ||
6455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">7</context></context-group> | ||
6456 | </trans-unit> | ||
6219 | <trans-unit id="1545109431751219382" datatype="html"> | 6457 | <trans-unit id="1545109431751219382" datatype="html"> |
6220 | <source>This channel doesn't have any videos.</source> | 6458 | <source>This channel doesn't have any videos.</source> |
6221 | <target state="new">This channel doesn't have any videos.</target> | 6459 | <target state="new">This channel doesn't have any videos.</target> |
6222 | 6460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group> | |
6223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="2705478076887104088" datatype="html"> | 6461 | </trans-unit> |
6224 | <source>SHOW THIS CHANNEL ></source><target state="new">SHOW THIS CHANNEL ></target> | 6462 | <trans-unit id="2705478076887104088" datatype="html"> |
6225 | 6463 | <source>SHOW THIS CHANNEL ></source> | |
6226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 6464 | <target state="new">SHOW THIS CHANNEL ></target> |
6227 | 6465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group> | |
6228 | 6466 | </trans-unit> | |
6229 | |||
6230 | <trans-unit id="4088311569349098646" datatype="html"> | 6467 | <trans-unit id="4088311569349098646" datatype="html"> |
6231 | <source>Stats</source> | 6468 | <source>Stats</source> |
6232 | <target state="new">Stats</target> | 6469 | <target state="new">Stats</target> |
6233 | 6470 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">144</context></context-group> | |
6234 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">144</context></context-group></trans-unit> | 6471 | </trans-unit> |
6235 | |||
6236 | |||
6237 | |||
6238 | |||
6239 | |||
6240 | |||
6241 | <trans-unit id="4068658588793749132" datatype="html"> | 6472 | <trans-unit id="4068658588793749132" datatype="html"> |
6242 | <source>This channel does not have playlists.</source> | 6473 | <source>This channel does not have playlists.</source> |
6243 | <target state="new">This channel does not have playlists.</target> | 6474 | <target state="new">This channel does not have playlists.</target> |
@@ -6256,15 +6487,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6256 | <trans-unit id="3701439542279610547" datatype="html"> | 6487 | <trans-unit id="3701439542279610547" datatype="html"> |
6257 | <source>Follows</source> | 6488 | <source>Follows</source> |
6258 | <target state="new">Follows</target> | 6489 | <target state="new">Follows</target> |
6259 | 6490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">2</context></context-group> | |
6260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="400578776928464905" datatype="html"> | 6491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">64</context></context-group> |
6261 | <source>Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source><target state="new">Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | 6492 | </trans-unit> |
6493 | <trans-unit id="400578776928464905" datatype="html"> | ||
6494 | <source>Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source> | ||
6495 | <target state="new">Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | ||
6262 | <context-group purpose="location"> | 6496 | <context-group purpose="location"> |
6263 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6497 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
6264 | <context context-type="linenumber">4</context> | 6498 | <context context-type="linenumber">4</context> |
6265 | </context-group> | 6499 | </context-group> |
6266 | </trans-unit> | 6500 | </trans-unit> |
6267 | |||
6268 | <trans-unit id="2081837971167498893" datatype="html"> | 6501 | <trans-unit id="2081837971167498893" datatype="html"> |
6269 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> | 6502 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> |
6270 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 6503 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> |
@@ -6273,7 +6506,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6273 | <context context-type="linenumber">16</context> | 6506 | <context context-type="linenumber">16</context> |
6274 | </context-group> | 6507 | </context-group> |
6275 | </trans-unit> | 6508 | </trans-unit> |
6276 | |||
6277 | <trans-unit id="8203367621031610680" datatype="html"> | 6509 | <trans-unit id="8203367621031610680" datatype="html"> |
6278 | <source>Your name</source> | 6510 | <source>Your name</source> |
6279 | <target state="new">Your name</target> | 6511 | <target state="new">Your name</target> |
@@ -6300,8 +6532,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6300 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> | 6532 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> |
6301 | </target> | 6533 | </target> |
6302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group> | 6534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group> |
6303 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 6535 | </trans-unit> |
6304 | <source>Contact us</source><target state="new">Contact us</target> | 6536 | <trans-unit id="8525213662266893834" datatype="html"> |
6537 | <source>Contact us</source> | ||
6538 | <target state="new">Contact us</target> | ||
6305 | <context-group purpose="location"> | 6539 | <context-group purpose="location"> |
6306 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6540 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6307 | <context context-type="linenumber">7</context> | 6541 | <context context-type="linenumber">7</context> |
@@ -6311,7 +6545,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6311 | <context context-type="linenumber">3</context> | 6545 | <context context-type="linenumber">3</context> |
6312 | </context-group> | 6546 | </context-group> |
6313 | </trans-unit> | 6547 | </trans-unit> |
6314 | |||
6315 | <trans-unit id="19872047295276660" datatype="html"> | 6548 | <trans-unit id="19872047295276660" datatype="html"> |
6316 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6549 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
6317 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> | 6550 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> |
@@ -6322,8 +6555,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6322 | <target state="new"> | 6555 | <target state="new"> |
6323 | ADMINISTRATORS & SUSTAINABILITY | 6556 | ADMINISTRATORS & SUSTAINABILITY |
6324 | </target> | 6557 | </target> |
6325 | 6558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">31</context></context-group> | |
6326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 6559 | </trans-unit> |
6327 | <trans-unit id="6741838149332998818" datatype="html"> | 6560 | <trans-unit id="6741838149332998818" datatype="html"> |
6328 | <source>Who we are</source> | 6561 | <source>Who we are</source> |
6329 | <target state="new">Who we are</target> | 6562 | <target state="new">Who we are</target> |
@@ -6338,45 +6571,46 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6338 | <source>How long we plan to maintain this instance</source> | 6571 | <source>How long we plan to maintain this instance</source> |
6339 | <target state="new">How long we plan to maintain this instance</target> | 6572 | <target state="new">How long we plan to maintain this instance</target> |
6340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">72</context></context-group> | 6573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">72</context></context-group> |
6341 | </trans-unit><trans-unit id="8765504394950427814" datatype="html"> | 6574 | </trans-unit> |
6342 | <source>How we will pay for keeping our instance running</source><target state="new">How we will pay for keeping our instance running</target> | 6575 | <trans-unit id="8765504394950427814" datatype="html"> |
6576 | <source>How we will pay for keeping our instance running</source> | ||
6577 | <target state="new">How we will pay for keeping our instance running</target> | ||
6343 | <context-group purpose="location"> | 6578 | <context-group purpose="location"> |
6344 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6579 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6345 | <context context-type="linenumber">86</context> | 6580 | <context context-type="linenumber">86</context> |
6346 | </context-group> | 6581 | </context-group> |
6347 | </trans-unit> | 6582 | </trans-unit> |
6348 | |||
6349 | <trans-unit id="7707185552909365717" datatype="html"> | 6583 | <trans-unit id="7707185552909365717" datatype="html"> |
6350 | <source>INFORMATION</source> | 6584 | <source>INFORMATION</source> |
6351 | <target state="new"> | 6585 | <target state="new"> |
6352 | INFORMATION | 6586 | INFORMATION |
6353 | </target> | 6587 | </target> |
6354 | 6588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">100</context></context-group> | |
6355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> | 6589 | </trans-unit> |
6356 | <trans-unit id="8685905644837116382" datatype="html"> | 6590 | <trans-unit id="8685905644837116382" datatype="html"> |
6357 | <source>MODERATION</source> | 6591 | <source>MODERATION</source> |
6358 | <target state="new"> | 6592 | <target state="new"> |
6359 | MODERATION | 6593 | MODERATION |
6360 | </target> | 6594 | </target> |
6361 | 6595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group> | |
6362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> | 6596 | </trans-unit> |
6363 | <trans-unit id="9178042134345945115" datatype="html"> | 6597 | <trans-unit id="9178042134345945115" datatype="html"> |
6364 | <source>OTHER INFORMATION</source> | 6598 | <source>OTHER INFORMATION</source> |
6365 | <target state="new"> | 6599 | <target state="new"> |
6366 | OTHER INFORMATION | 6600 | OTHER INFORMATION |
6367 | </target> | 6601 | </target> |
6368 | 6602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">185</context></context-group> | |
6369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">185</context></context-group></trans-unit> | 6603 | </trans-unit> |
6370 | <trans-unit id="4281738631669138686" datatype="html"> | 6604 | <trans-unit id="4281738631669138686" datatype="html"> |
6371 | <source>Hardware information</source> | 6605 | <source>Hardware information</source> |
6372 | <target state="new">Hardware information</target> | 6606 | <target state="new">Hardware information</target> |
6373 | 6607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">198</context></context-group> | |
6374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit> | 6608 | </trans-unit> |
6375 | <trans-unit id="273909283347871" datatype="html"> | 6609 | <trans-unit id="273909283347871" datatype="html"> |
6376 | <source>FEATURES</source> | 6610 | <source>FEATURES</source> |
6377 | <target state="new">FEATURES</target> | 6611 | <target state="new">FEATURES</target> |
6378 | 6612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">207</context></context-group> | |
6379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">207</context></context-group></trans-unit> | 6613 | </trans-unit> |
6380 | <trans-unit id="8495040351808033345" datatype="html"> | 6614 | <trans-unit id="8495040351808033345" datatype="html"> |
6381 | <source>Features found on this instance</source> | 6615 | <source>Features found on this instance</source> |
6382 | <target state="new">Features found on this instance</target> | 6616 | <target state="new">Features found on this instance</target> |
@@ -6387,31 +6621,30 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6387 | <trans-unit id="8932880935037645502" datatype="html"> | 6621 | <trans-unit id="8932880935037645502" datatype="html"> |
6388 | <source>STATISTICS</source> | 6622 | <source>STATISTICS</source> |
6389 | <target state="new">STATISTICS</target> | 6623 | <target state="new">STATISTICS</target> |
6390 | 6624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">219</context></context-group> | |
6391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit> | 6625 | </trans-unit> |
6392 | |||
6393 | <trans-unit id="1161141363959659794" datatype="html"> | 6626 | <trans-unit id="1161141363959659794" datatype="html"> |
6394 | <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source> | 6627 | <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source> |
6395 | <target state="new"> | 6628 | <target state="new"> |
6396 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. | 6629 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. |
6397 | </target> | 6630 | </target> |
6398 | 6631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">9</context></context-group> | |
6399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6632 | </trans-unit> |
6400 | <trans-unit id="135286612733607700" datatype="html"> | 6633 | <trans-unit id="135286612733607700" datatype="html"> |
6401 | <source>It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source> | 6634 | <source>It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source> |
6402 | <target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> | 6635 | <target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> |
6403 | 6636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">13</context></context-group> | |
6404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 6637 | </trans-unit> |
6405 | <trans-unit id="7257048945916143687" datatype="html"> | 6638 | <trans-unit id="7257048945916143687" datatype="html"> |
6406 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> | 6639 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> |
6407 | <target state="new"> | 6640 | <target state="new"> |
6408 | For more information, please visit | 6641 | For more information, please visit |
6409 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org | 6642 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org |
6410 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 6643 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
6411 | 6644 | ||
6412 | </target> | 6645 | </target> |
6413 | 6646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">18</context></context-group> | |
6414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 6647 | </trans-unit> |
6415 | <trans-unit id="8205344394429673413" datatype="html"> | 6648 | <trans-unit id="8205344394429673413" datatype="html"> |
6416 | <source>Use PeerTube documentation</source> | 6649 | <source>Use PeerTube documentation</source> |
6417 | <target state="new">Use PeerTube | 6650 | <target state="new">Use PeerTube |
@@ -6423,8 +6656,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6423 | <target state="new"> | 6656 | <target state="new"> |
6424 | Discover how to setup your account, what is a channel, how to create a playlist and more! | 6657 | Discover how to setup your account, what is a channel, how to create a playlist and more! |
6425 | </target> | 6658 | </target> |
6426 | 6659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">32</context></context-group> | |
6427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 6660 | </trans-unit> |
6428 | <trans-unit id="5336387229608682776" datatype="html"> | 6661 | <trans-unit id="5336387229608682776" datatype="html"> |
6429 | <source>PeerTube Applications</source> | 6662 | <source>PeerTube Applications</source> |
6430 | <target state="new">PeerTube | 6663 | <target state="new">PeerTube |
@@ -6436,8 +6669,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6436 | <target state="new"> | 6669 | <target state="new"> |
6437 | Discover unofficial Android applications or browser addons! | 6670 | Discover unofficial Android applications or browser addons! |
6438 | </target> | 6671 | </target> |
6439 | 6672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">45</context></context-group> | |
6440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 6673 | </trans-unit> |
6441 | <trans-unit id="4093735071527927163" datatype="html"> | 6674 | <trans-unit id="4093735071527927163" datatype="html"> |
6442 | <source>Contribute on PeerTube</source> | 6675 | <source>Contribute on PeerTube</source> |
6443 | <target state="new">Contribute on | 6676 | <target state="new">Contribute on |
@@ -6449,13 +6682,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6449 | <target state="new"> | 6682 | <target state="new"> |
6450 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! | 6683 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! |
6451 | </target> | 6684 | </target> |
6452 | 6685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">58</context></context-group> | |
6453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6686 | </trans-unit> |
6454 | <trans-unit id="185970110822844952" datatype="html"> | 6687 | <trans-unit id="185970110822844952" datatype="html"> |
6455 | <source>P2P & Privacy</source> | 6688 | <source>P2P & Privacy</source> |
6456 | <target state="new">P2P & Privacy</target> | 6689 | <target state="new">P2P & Privacy</target> |
6457 | 6690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">69</context></context-group> | |
6458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 6691 | </trans-unit> |
6459 | <trans-unit id="442017645619017020" datatype="html"> | 6692 | <trans-unit id="442017645619017020" datatype="html"> |
6460 | <source>PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.</source> | 6693 | <source>PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.</source> |
6461 | <target state="new"> | 6694 | <target state="new"> |
@@ -6463,34 +6696,34 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6463 | but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What | 6696 | but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What |
6464 | follows applies only if you want to keep using the P2P mode of PeerTube. | 6697 | follows applies only if you want to keep using the P2P mode of PeerTube. |
6465 | </target> | 6698 | </target> |
6466 | 6699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">72</context></context-group> | |
6467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 6700 | </trans-unit> |
6468 | <trans-unit id="6314880288843792309" datatype="html"> | 6701 | <trans-unit id="6314880288843792309" datatype="html"> |
6469 | <source>The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video.</source> | 6702 | <source>The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video.</source> |
6470 | <target state="new"> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </target> | 6703 | <target state="new"> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </target> |
6471 | 6704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">78</context></context-group> | |
6472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 6705 | </trans-unit> |
6473 | <trans-unit id="6868048887248005916" datatype="html"> | 6706 | <trans-unit id="6868048887248005916" datatype="html"> |
6474 | <source>What are the consequences?</source> | 6707 | <source>What are the consequences?</source> |
6475 | <target state="new">What are the consequences?</target> | 6708 | <target state="new">What are the consequences?</target> |
6476 | 6709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">83</context></context-group> | |
6477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 6710 | </trans-unit> |
6478 | <trans-unit id="1411398404280870617" datatype="html"> | 6711 | <trans-unit id="1411398404280870617" datatype="html"> |
6479 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> | 6712 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> |
6480 | <target state="new"> | 6713 | <target state="new"> |
6481 | In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. | 6714 | In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. |
6482 | In practice, this is much more difficult because: | 6715 | In practice, this is much more difficult because: |
6483 | </target> | 6716 | </target> |
6484 | 6717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">85</context></context-group> | |
6485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 6718 | </trans-unit> |
6486 | <trans-unit id="6870500454322981404" datatype="html"> | 6719 | <trans-unit id="6870500454322981404" datatype="html"> |
6487 | <source>An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)</source> | 6720 | <source>An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)</source> |
6488 | <target state="new"> | 6721 | <target state="new"> |
6489 | An HTTP request has to be sent on each tracker for each video to spy. | 6722 | An HTTP request has to be sent on each tracker for each video to spy. |
6490 | If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) | 6723 | If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) |
6491 | </target> | 6724 | </target> |
6492 | 6725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">91</context></context-group> | |
6493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 6726 | </trans-unit> |
6494 | <trans-unit id="4042605201005159699" datatype="html"> | 6727 | <trans-unit id="4042605201005159699" datatype="html"> |
6495 | <source>For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm</source> | 6728 | <source>For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm</source> |
6496 | <target state="new"> | 6729 | <target state="new"> |
@@ -6498,48 +6731,48 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6498 | For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 | 6731 | For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 |
6499 | requests sent to know every peer in the swarm | 6732 | requests sent to know every peer in the swarm |
6500 | </target> | 6733 | </target> |
6501 | 6734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">96</context></context-group> | |
6502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 6735 | </trans-unit> |
6503 | <trans-unit id="8817667841110447397" datatype="html"> | 6736 | <trans-unit id="8817667841110447397" datatype="html"> |
6504 | <source>Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour</source> | 6737 | <source>Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour</source> |
6505 | <target state="new"> | 6738 | <target state="new"> |
6506 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour | 6739 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour |
6507 | </target> | 6740 | </target> |
6508 | 6741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">102</context></context-group> | |
6509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> | 6742 | </trans-unit> |
6510 | <trans-unit id="4100327951517495019" datatype="html"> | 6743 | <trans-unit id="4100327951517495019" datatype="html"> |
6511 | <source>If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video</source> | 6744 | <source>If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video</source> |
6512 | <target state="new"> | 6745 | <target state="new"> |
6513 | If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the | 6746 | If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the |
6514 | video | 6747 | video |
6515 | </target> | 6748 | </target> |
6516 | 6749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">106</context></context-group> | |
6517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 6750 | </trans-unit> |
6518 | <trans-unit id="7196664247366401915" datatype="html"> | 6751 | <trans-unit id="7196664247366401915" datatype="html"> |
6519 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> | 6752 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> |
6520 | <target state="new"> | 6753 | <target state="new"> |
6521 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities | 6754 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities |
6522 | </target> | 6755 | </target> |
6523 | 6756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> | |
6524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 6757 | </trans-unit> |
6525 | <trans-unit id="1120376809358109718" datatype="html"> | 6758 | <trans-unit id="1120376809358109718" datatype="html"> |
6526 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 6759 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
6527 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | 6760 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> |
6528 | 6761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> | |
6529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group></trans-unit> | 6762 | </trans-unit> |
6530 | <trans-unit id="7812408733559506009" datatype="html"> | 6763 | <trans-unit id="7812408733559506009" datatype="html"> |
6531 | <source>The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information.</source> | 6764 | <source>The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information.</source> |
6532 | <target state="new"> | 6765 | <target state="new"> |
6533 | The worst-case scenario of an average person spying on their friends is quite unlikely. | 6766 | The worst-case scenario of an average person spying on their friends is quite unlikely. |
6534 | There are much more effective ways to get that kind of information. | 6767 | There are much more effective ways to get that kind of information. |
6535 | </target> | 6768 | </target> |
6536 | 6769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">123</context></context-group> | |
6537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">123</context></context-group></trans-unit> | 6770 | </trans-unit> |
6538 | <trans-unit id="8484650229450883706" datatype="html"> | 6771 | <trans-unit id="8484650229450883706" datatype="html"> |
6539 | <source>How does PeerTube compare with YouTube?</source> | 6772 | <source>How does PeerTube compare with YouTube?</source> |
6540 | <target state="new">How does PeerTube compare with YouTube?</target> | 6773 | <target state="new">How does PeerTube compare with YouTube?</target> |
6541 | 6774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">128</context></context-group> | |
6542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> | 6775 | </trans-unit> |
6543 | <trans-unit id="6213340208914097303" datatype="html"> | 6776 | <trans-unit id="6213340208914097303" datatype="html"> |
6544 | <source>The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).</source> | 6777 | <source>The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).</source> |
6545 | <target state="new"> | 6778 | <target state="new"> |
@@ -6547,13 +6780,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6547 | In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. | 6780 | In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. |
6548 | Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). | 6781 | Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). |
6549 | </target> | 6782 | </target> |
6550 | 6783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">130</context></context-group> | |
6551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> | 6784 | </trans-unit> |
6552 | <trans-unit id="2676074687792256808" datatype="html"> | 6785 | <trans-unit id="2676074687792256808" datatype="html"> |
6553 | <source>What can I do to limit the exposure of my IP address?</source> | 6786 | <source>What can I do to limit the exposure of my IP address?</source> |
6554 | <target state="new">What can I do to limit the exposure of my IP address?</target> | 6787 | <target state="new">What can I do to limit the exposure of my IP address?</target> |
6555 | 6788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">136</context></context-group> | |
6556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">136</context></context-group></trans-unit> | 6789 | </trans-unit> |
6557 | <trans-unit id="8804946818315976118" datatype="html"> | 6790 | <trans-unit id="8804946818315976118" datatype="html"> |
6558 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> | 6791 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> |
6559 | <target state="new"> | 6792 | <target state="new"> |
@@ -6562,44 +6795,44 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6562 | PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. | 6795 | PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. |
6563 | Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. | 6796 | Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. |
6564 | </target> | 6797 | </target> |
6565 | 6798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">138</context></context-group> | |
6566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 6799 | </trans-unit> |
6567 | <trans-unit id="401806741040118292" datatype="html"> | 6800 | <trans-unit id="401806741040118292" datatype="html"> |
6568 | <source>What will be done to mitigate this problem?</source> | 6801 | <source>What will be done to mitigate this problem?</source> |
6569 | <target state="new">What will be done to mitigate this problem?</target> | 6802 | <target state="new">What will be done to mitigate this problem?</target> |
6570 | 6803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">145</context></context-group> | |
6571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 6804 | </trans-unit> |
6572 | <trans-unit id="7404776804526394585" datatype="html"> | 6805 | <trans-unit id="7404776804526394585" datatype="html"> |
6573 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> | 6806 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> |
6574 | <target state="new"> | 6807 | <target state="new"> |
6575 | PeerTube wants to deliver the best countermeasures possible, to give you more choice | 6808 | PeerTube wants to deliver the best countermeasures possible, to give you more choice |
6576 | and render attacks less likely. Here is what we put in place so far: | 6809 | and render attacks less likely. Here is what we put in place so far: |
6577 | </target> | 6810 | </target> |
6578 | 6811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">147</context></context-group> | |
6579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> | 6812 | </trans-unit> |
6580 | <trans-unit id="8635362984201852982" datatype="html"> | 6813 | <trans-unit id="8635362984201852982" datatype="html"> |
6581 | <source>We set a limit to the number of peers sent by the tracker</source> | 6814 | <source>We set a limit to the number of peers sent by the tracker</source> |
6582 | <target state="new">We set a limit to the number of peers sent by the tracker</target> | 6815 | <target state="new">We set a limit to the number of peers sent by the tracker</target> |
6583 | 6816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">153</context></context-group> | |
6584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">153</context></context-group></trans-unit> | 6817 | </trans-unit> |
6585 | <trans-unit id="8903417899533541365" datatype="html"> | 6818 | <trans-unit id="8903417899533541365" datatype="html"> |
6586 | <source>We set a limit on the request frequency received by the tracker</source> | 6819 | <source>We set a limit on the request frequency received by the tracker</source> |
6587 | <target state="new">We set a limit on the request frequency received by the tracker</target> | 6820 | <target state="new">We set a limit on the request frequency received by the tracker</target> |
6588 | 6821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">154</context></context-group> | |
6589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">154</context></context-group></trans-unit> | 6822 | </trans-unit> |
6590 | <trans-unit id="2470460396724373169" datatype="html"> | 6823 | <trans-unit id="2470460396724373169" datatype="html"> |
6591 | <source>Allow instance admins to disable P2P from the administration interface</source> | 6824 | <source>Allow instance admins to disable P2P from the administration interface</source> |
6592 | <target state="new">Allow instance admins to disable P2P from the administration interface</target> | 6825 | <target state="new">Allow instance admins to disable P2P from the administration interface</target> |
6593 | 6826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">155</context></context-group> | |
6594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">155</context></context-group></trans-unit> | 6827 | </trans-unit> |
6595 | <trans-unit id="5991790391344625653" datatype="html"> | 6828 | <trans-unit id="5991790391344625653" datatype="html"> |
6596 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> | 6829 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> |
6597 | <target state="new"> | 6830 | <target state="new"> |
6598 | Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling | 6831 | Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling |
6599 | WebRTC in your browser. | 6832 | WebRTC in your browser. |
6600 | </target> | 6833 | </target> |
6601 | 6834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">158</context></context-group> | |
6602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">158</context></context-group></trans-unit> | 6835 | </trans-unit> |
6603 | <trans-unit id="3857357852909495917" datatype="html"> | 6836 | <trans-unit id="3857357852909495917" datatype="html"> |
6604 | <source>This instance does not have instances followers.</source> | 6837 | <source>This instance does not have instances followers.</source> |
6605 | <target state="new">This instance does not have instances followers.</target> | 6838 | <target state="new">This instance does not have instances followers.</target> |
@@ -6625,37 +6858,38 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6625 | <trans-unit id="4195286790385468087" datatype="html"> | 6858 | <trans-unit id="4195286790385468087" datatype="html"> |
6626 | <source>About this instance</source> | 6859 | <source>About this instance</source> |
6627 | <target state="new">About this instance</target> | 6860 | <target state="new">About this instance</target> |
6628 | 6861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
6629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6862 | </trans-unit> |
6630 | <trans-unit id="8773846522957677259" datatype="html"> | 6863 | <trans-unit id="8773846522957677259" datatype="html"> |
6631 | <source>About PeerTube</source> | 6864 | <source>About PeerTube</source> |
6632 | <target state="new">About PeerTube</target> | 6865 | <target state="new">About PeerTube</target> |
6633 | 6866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
6634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 6867 | </trans-unit> |
6635 | <trans-unit id="1812900507515561988" datatype="html"> | 6868 | <trans-unit id="1812900507515561988" datatype="html"> |
6636 | <source>About this instance's network</source> | 6869 | <source>About this instance's network</source> |
6637 | <target state="new">About this instance's network</target> | 6870 | <target state="new">About this instance's network</target> |
6638 | 6871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
6639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6872 | </trans-unit> |
6640 | <trans-unit id="892073694820881630" datatype="html"> | 6873 | <trans-unit id="892073694820881630" datatype="html"> |
6641 | <source>Link copied</source> | 6874 | <source>Link copied</source> |
6642 | <target state="new">Link copied</target> | 6875 | <target state="new">Link copied</target> |
6643 | 6876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> | |
6644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group></trans-unit><trans-unit id="4807161697338135032" datatype="html"> | 6877 | </trans-unit> |
6645 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source><target state="new">Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 6878 | <trans-unit id="4807161697338135032" datatype="html"> |
6879 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | ||
6880 | <target state="new">Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | ||
6646 | <context-group purpose="location"> | 6881 | <context-group purpose="location"> |
6647 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6882 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6648 | <context context-type="linenumber">3</context> | 6883 | <context context-type="linenumber">3</context> |
6649 | </context-group> | 6884 | </context-group> |
6650 | </trans-unit> | 6885 | </trans-unit> |
6651 | |||
6652 | <trans-unit id="5579867071769973287" datatype="html"> | 6886 | <trans-unit id="5579867071769973287" datatype="html"> |
6653 | <source>Create an account</source> | 6887 | <source>Create an account</source> |
6654 | <target state="new"> | 6888 | <target state="new"> |
6655 | Create an account | 6889 | Create an account |
6656 | </target> | 6890 | </target> |
6657 | 6891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">8</context></context-group> | |
6658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 6892 | </trans-unit> |
6659 | <trans-unit id="9082008222523034483" datatype="html"> | 6893 | <trans-unit id="9082008222523034483" datatype="html"> |
6660 | <source>Get help</source> | 6894 | <source>Get help</source> |
6661 | <target state="new">Get help</target> | 6895 | <target state="new">Get help</target> |
@@ -6666,18 +6900,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6666 | <target state="new"> | 6900 | <target state="new"> |
6667 | Create my account | 6901 | Create my account |
6668 | </target> | 6902 | </target> |
6669 | 6903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group> | |
6670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6904 | </trans-unit> |
6671 | <trans-unit id="220345070199640496" datatype="html"> | 6905 | <trans-unit id="220345070199640496" datatype="html"> |
6672 | <source>PeerTube is creating your account...</source> | 6906 | <source>PeerTube is creating your account...</source> |
6673 | <target state="new">PeerTube is creating your account...</target> | 6907 | <target state="new">PeerTube is creating your account...</target> |
6674 | 6908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">55</context></context-group> | |
6675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 6909 | </trans-unit> |
6676 | <trans-unit id="397098723873502323" datatype="html"> | 6910 | <trans-unit id="397098723873502323" datatype="html"> |
6677 | <source>Done</source> | 6911 | <source>Done</source> |
6678 | <target state="new">Done</target> | 6912 | <target state="new">Done</target> |
6679 | 6913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">51</context></context-group> | |
6680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 6914 | </trans-unit> |
6681 | <trans-unit id="6294302495409052693" datatype="html"> | 6915 | <trans-unit id="6294302495409052693" datatype="html"> |
6682 | <source>Who are we?</source> | 6916 | <source>Who are we?</source> |
6683 | <target state="new">Who are we?</target> | 6917 | <target state="new">Who are we?</target> |
@@ -6708,19 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6708 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> | 6942 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> |
6709 | <target state="new"> | 6943 | <target state="new"> |
6710 | A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. | 6944 | A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. |
6711 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 6945 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
6712 | For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. | 6946 | For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. |
6713 | 6947 | ||
6714 | </target> | 6948 | </target> |
6715 | 6949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">4</context></context-group> | |
6716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 6950 | </trans-unit> |
6717 | <trans-unit id="2254156021453506528" datatype="html"> | 6951 | <trans-unit id="2254156021453506528" datatype="html"> |
6718 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> | 6952 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> |
6719 | <target state="new"> | 6953 | <target state="new"> |
6720 | Other users can decide to subscribe any channel they want, to be notified when you publish a new video. | 6954 | Other users can decide to subscribe any channel they want, to be notified when you publish a new video. |
6721 | </target> | 6955 | </target> |
6722 | 6956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">9</context></context-group> | |
6723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6957 | </trans-unit> |
6724 | <trans-unit id="8583412279916132438" datatype="html"> | 6958 | <trans-unit id="8583412279916132438" datatype="html"> |
6725 | <source>Channel display name</source> | 6959 | <source>Channel display name</source> |
6726 | <target state="new">Channel display name</target> | 6960 | <target state="new">Channel display name</target> |
@@ -6729,16 +6963,16 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6729 | <trans-unit id="6980413875907286634" datatype="html"> | 6963 | <trans-unit id="6980413875907286634" datatype="html"> |
6730 | <source>Channel name</source> | 6964 | <source>Channel name</source> |
6731 | <target state="new">Channel name</target> | 6965 | <target state="new">Channel name</target> |
6732 | 6966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
6733 | 6967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
6734 | 6968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">30</context></context-group> | |
6735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 6969 | </trans-unit> |
6736 | <trans-unit id="8463487834152954723" datatype="html"> | 6970 | <trans-unit id="8463487834152954723" datatype="html"> |
6737 | <source>john_channel</source> | 6971 | <source>john_channel</source> |
6738 | <target state="new">john_channel</target> | 6972 | <target state="new">john_channel</target> |
6739 | 6973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | |
6740 | 6974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | |
6741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 6975 | </trans-unit> |
6742 | <trans-unit id="7901486036096751355" datatype="html"> | 6976 | <trans-unit id="7901486036096751355" datatype="html"> |
6743 | <source>Example: my_super_channel</source> | 6977 | <source>Example: my_super_channel</source> |
6744 | <target state="new">Example: my_super_channel</target> | 6978 | <target state="new">Example: my_super_channel</target> |
@@ -6749,14 +6983,16 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6749 | <target state="new"> | 6983 | <target state="new"> |
6750 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | 6984 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. |
6751 | </target> | 6985 | </target> |
6752 | 6986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">42</context></context-group> | |
6753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 6987 | </trans-unit> |
6754 | <trans-unit id="5203776997447520497" datatype="html"> | 6988 | <trans-unit id="5203776997447520497" datatype="html"> |
6755 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> | 6989 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> |
6756 | <target state="new"> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </target> | 6990 | <target state="new"> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </target> |
6757 | 6991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> | |
6758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="7440807341905682986" datatype="html"> | 6992 | </trans-unit> |
6759 | <source> I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source><target state="new"> I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </target> | 6993 | <trans-unit id="7440807341905682986" datatype="html"> |
6994 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> | ||
6995 | <target state="new"> I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </target> | ||
6760 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6761 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 6997 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
6762 | <context context-type="linenumber">5,10</context> | 6998 | <context context-type="linenumber">5,10</context> |
@@ -6767,9 +7003,11 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6767 | <target state="new"> | 7003 | <target state="new"> |
6768 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | 7004 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. |
6769 | </target> | 7005 | </target> |
6770 | 7006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">35</context></context-group> | |
6771 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit><trans-unit id="2770947245861951784" datatype="html"> | 7007 | </trans-unit> |
6772 | <source>Signup is not enabled on this instance.</source><target state="new">Signup is not enabled on this instance.</target> | 7008 | <trans-unit id="2770947245861951784" datatype="html"> |
7009 | <source>Signup is not enabled on this instance.</source> | ||
7010 | <target state="new">Signup is not enabled on this instance.</target> | ||
6773 | <context-group purpose="location"> | 7011 | <context-group purpose="location"> |
6774 | <context context-type="sourcefile">src/app/+signup/+register/register.component.html</context> | 7012 | <context context-type="sourcefile">src/app/+signup/+register/register.component.html</context> |
6775 | <context context-type="linenumber">4</context> | 7013 | <context context-type="linenumber">4</context> |
@@ -6778,38 +7016,39 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6778 | <trans-unit id="198278273748445199" datatype="html"> | 7016 | <trans-unit id="198278273748445199" datatype="html"> |
6779 | <source>Video uploads are disabled on this instance, hence your account won't be able to upload videos.</source> | 7017 | <source>Video uploads are disabled on this instance, hence your account won't be able to upload videos.</source> |
6780 | <target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> | 7018 | <target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> |
6781 | 7019 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">3</context></context-group> | |
6782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 7020 | </trans-unit> |
6783 | |||
6784 | <trans-unit id="3301086086650990787" datatype="html"> | 7021 | <trans-unit id="3301086086650990787" datatype="html"> |
6785 | <source>Register</source> | 7022 | <source>Register</source> |
6786 | <target state="new">Register</target> | 7023 | <target state="new">Register</target> |
6787 | 7024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-routing.module.ts</context><context context-type="linenumber">13</context></context-group> | |
6788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-routing.module.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 7025 | </trans-unit> |
6789 | <trans-unit id="6979021199788941693" datatype="html"> | 7026 | <trans-unit id="6979021199788941693" datatype="html"> |
6790 | <source>Your message has been sent.</source> | 7027 | <source>Your message has been sent.</source> |
6791 | <target state="new">Your message has been sent.</target> | 7028 | <target state="new">Your message has been sent.</target> |
6792 | 7029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">88</context></context-group> | |
6793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 7030 | </trans-unit> |
6794 | <trans-unit id="2072135752262464360" datatype="html"> | 7031 | <trans-unit id="2072135752262464360" datatype="html"> |
6795 | <source>You already sent this form recently</source> | 7032 | <source>You already sent this form recently</source> |
6796 | <target state="new">You already sent this form recently</target> | 7033 | <target state="new">You already sent this form recently</target> |
6797 | 7034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">94</context></context-group> | |
6798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit><trans-unit id="1097932116708163073" datatype="html"> | 7035 | </trans-unit> |
6799 | <source> This website is powered by PeerTube </source><target state="new"> This website is powered by PeerTube </target> | 7036 | <trans-unit id="1097932116708163073" datatype="html"> |
7037 | <source>This website is powered by PeerTube</source> | ||
7038 | <target state="new"> This website is powered by PeerTube </target> | ||
6800 | <context-group purpose="location"> | 7039 | <context-group purpose="location"> |
6801 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 7040 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
6802 | <context context-type="linenumber">2,4</context> | 7041 | <context context-type="linenumber">2,4</context> |
6803 | </context-group> | 7042 | </context-group> |
6804 | </trans-unit> | 7043 | </trans-unit> |
6805 | |||
6806 | <trans-unit id="819067926858619041" datatype="html"> | 7044 | <trans-unit id="819067926858619041" datatype="html"> |
6807 | <source>Account videos</source> | 7045 | <source>Account videos</source> |
6808 | <target state="new">Account videos</target> | 7046 | <target state="new">Account videos</target> |
6809 | 7047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7048 | </trans-unit> |
6811 | <trans-unit id="4605517634011438234" datatype="html"> | 7049 | <trans-unit id="4605517634011438234" datatype="html"> |
6812 | <source>ACCOUNT</source><target state="new">ACCOUNT</target> | 7050 | <source>ACCOUNT</source> |
7051 | <target state="new">ACCOUNT</target> | ||
6813 | <context-group purpose="location"> | 7052 | <context-group purpose="location"> |
6814 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 7053 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
6815 | <context context-type="linenumber">8</context> | 7054 | <context context-type="linenumber">8</context> |
@@ -6818,110 +7057,124 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6818 | <trans-unit id="6823616469362610020" datatype="html"> | 7057 | <trans-unit id="6823616469362610020" datatype="html"> |
6819 | <source>Account video channels</source> | 7058 | <source>Account video channels</source> |
6820 | <target state="new">Account video channels</target> | 7059 | <target state="new">Account video channels</target> |
6821 | 7060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
6822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 7061 | </trans-unit> |
6823 | |||
6824 | |||
6825 | <trans-unit id="807777065817324789" datatype="html"> | 7062 | <trans-unit id="807777065817324789" datatype="html"> |
6826 | <source>Display all videos (private, unlisted or not yet published)</source> | 7063 | <source>Display all videos (private, unlisted or not yet published)</source> |
6827 | <target state="new">Display all videos (private, unlisted or not yet published)</target> | 7064 | <target state="new">Display all videos (private, unlisted or not yet published)</target> |
6828 | 7065 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">125</context></context-group> | |
6829 | 7066 | </trans-unit> | |
6830 | 7067 | <trans-unit id="784681343382270982" datatype="html"> | |
6831 | 7068 | <source>Remove this filter</source> | |
6832 | 7069 | <target state="new">Remove this filter</target> | |
6833 | 7070 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.ts</context><context context-type="linenumber">95</context></context-group> | |
6834 | 7071 | </trans-unit> | |
6835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit><trans-unit id="784681343382270982" datatype="html"> | 7072 | <trans-unit id="5254305728396198887" datatype="html"> |
6836 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 7073 | <source>Sensitive content</source> |
6837 | 7074 | <target state="new">Sensitive content</target> | |
6838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="5254305728396198887" datatype="html"> | 7075 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">116</context></context-group> |
6839 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 7076 | </trans-unit> |
6840 | 7077 | <trans-unit id="5590086849807274701" datatype="html"> | |
6841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">116</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 7078 | <source>Scope</source> |
6842 | <source>Scope</source><target state="new">Scope</target> | 7079 | <target state="new">Scope</target> |
6843 | 7080 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">123</context></context-group> | |
6844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">123</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 7081 | </trans-unit> |
6845 | <source>Federated</source><target state="new">Federated</target> | 7082 | <trans-unit id="5019568087038659501" datatype="html"> |
6846 | 7083 | <source>Federated</source> | |
6847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 7084 | <target state="new">Federated</target> |
6848 | <source>Languages</source><target state="new">Languages</target> | 7085 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">125</context></context-group> |
6849 | 7086 | </trans-unit> | |
6850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 7087 | <trans-unit id="1949800099101277248" datatype="html"> |
6851 | <source>Categories</source><target state="new">Categories</target> | 7088 | <source>Languages</source> |
6852 | 7089 | <target state="new">Languages</target> | |
6853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">142</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 7090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">133</context></context-group> |
6854 | <source>All videos</source><target state="new">All videos</target> | 7091 | </trans-unit> |
6855 | 7092 | <trans-unit id="1902100407096396858" datatype="html"> | |
6856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">151</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 7093 | <source>Categories</source> |
6857 | <source>Blurred</source><target state="new">Blurred</target> | 7094 | <target state="new">Categories</target> |
6858 | 7095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">142</context></context-group> | |
6859 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 7096 | </trans-unit> |
6860 | <source>hidden</source><target state="new">hidden</target> | 7097 | <trans-unit id="3599150758014724057" datatype="html"> |
6861 | 7098 | <source>All videos</source> | |
6862 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">237</context></context-group></trans-unit><trans-unit id="5766954855630346873" datatype="html"> | 7099 | <target state="new">All videos</target> |
6863 | <source>blurred</source><target state="new">blurred</target> | 7100 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">151</context></context-group> |
6864 | 7101 | </trans-unit> | |
6865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">238</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 7102 | <trans-unit id="8466337030143068285" datatype="html"> |
6866 | <source>displayed</source><target state="new">displayed</target> | 7103 | <source>Blurred</source> |
6867 | 7104 | <target state="new">Blurred</target> | |
6868 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">240</context></context-group></trans-unit> | 7105 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">231</context></context-group> |
7106 | </trans-unit> | ||
7107 | <trans-unit id="7054829409324166420" datatype="html"> | ||
7108 | <source>hidden</source> | ||
7109 | <target state="new">hidden</target> | ||
7110 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">237</context></context-group> | ||
7111 | </trans-unit> | ||
7112 | <trans-unit id="5766954855630346873" datatype="html"> | ||
7113 | <source>blurred</source> | ||
7114 | <target state="new">blurred</target> | ||
7115 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">238</context></context-group> | ||
7116 | </trans-unit> | ||
7117 | <trans-unit id="1833483831276078393" datatype="html"> | ||
7118 | <source>displayed</source> | ||
7119 | <target state="new">displayed</target> | ||
7120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">240</context></context-group> | ||
7121 | </trans-unit> | ||
6869 | <trans-unit id="4856575356061361269" datatype="html"> | 7122 | <trans-unit id="4856575356061361269" datatype="html"> |
6870 | <source><x id="PH"/> direct account followers </source> | 7123 | <source><x id="PH"/> direct account followers </source> |
6871 | <target state="new"> | 7124 | <target state="new"> |
6872 | <x id="PH"/> direct account followers | 7125 | <x id="PH"/> direct account followers |
6873 | </target> | 7126 | </target> |
6874 | 7127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">153</context></context-group> | |
6875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> | 7128 | </trans-unit> |
6876 | <trans-unit id="6250999352462648289" datatype="html"> | 7129 | <trans-unit id="6250999352462648289" datatype="html"> |
6877 | <source>Report this account</source> | 7130 | <source>Report this account</source> |
6878 | <target state="new">Report this account</target> | 7131 | <target state="new">Report this account</target> |
6879 | 7132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">202</context></context-group> | |
6880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit><trans-unit id="2614607010577950577" datatype="html"> | 7133 | </trans-unit> |
6881 | <source>Overview</source><target state="new">Overview</target> | 7134 | <trans-unit id="2614607010577950577" datatype="html"> |
7135 | <source>Overview</source> | ||
7136 | <target state="new">Overview</target> | ||
6882 | <context-group purpose="location"> | 7137 | <context-group purpose="location"> |
6883 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 7138 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
6884 | <context context-type="linenumber">35</context> | 7139 | <context context-type="linenumber">35</context> |
6885 | </context-group> | 7140 | </context-group> |
6886 | </trans-unit> | 7141 | </trans-unit> |
6887 | |||
6888 | |||
6889 | <trans-unit id="1504521795586863905" datatype="html"> | 7142 | <trans-unit id="1504521795586863905" datatype="html"> |
6890 | <source>VIDEOS</source> | 7143 | <source>VIDEOS</source> |
6891 | <target state="new">VIDEOS</target> | 7144 | <target state="new">VIDEOS</target> |
6892 | 7145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">83</context></context-group> | |
6893 | 7146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">245</context></context-group> | |
6894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">245</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 7147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">81</context></context-group> |
6895 | 7148 | </trans-unit> | |
6896 | <trans-unit id="25349740244798533" datatype="html"> | 7149 | <trans-unit id="25349740244798533" datatype="html"> |
6897 | <source>Username copied</source> | 7150 | <source>Username copied</source> |
6898 | <target state="new">Username copied</target> | 7151 | <target state="new">Username copied</target> |
6899 | 7152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">121</context></context-group> | |
6900 | 7153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">115</context></context-group> | |
6901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 7154 | </trans-unit> |
6902 | <trans-unit id="9221735175659318025" datatype="html"> | 7155 | <trans-unit id="9221735175659318025" datatype="html"> |
6903 | <source>1 subscriber</source> | 7156 | <source>1 subscriber</source> |
6904 | <target state="new">1 subscriber</target> | 7157 | <target state="new">1 subscriber</target> |
6905 | 7158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">125</context></context-group> | |
6906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 7159 | </trans-unit> |
6907 | <trans-unit id="4097331874769079975" datatype="html"> | 7160 | <trans-unit id="4097331874769079975" datatype="html"> |
6908 | <source><x id="PH"/> subscribers</source> | 7161 | <source><x id="PH"/> subscribers</source> |
6909 | <target state="new"><x id="PH"/> subscribers</target> | 7162 | <target state="new"><x id="PH"/> subscribers</target> |
6910 | 7163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group> | |
6911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7164 | </trans-unit> |
6912 | |||
6913 | |||
6914 | <trans-unit id="1035838766454786107" datatype="html"> | 7165 | <trans-unit id="1035838766454786107" datatype="html"> |
6915 | <source>Audio-only</source> | 7166 | <source>Audio-only</source> |
6916 | <target state="new">Audio-only</target> | 7167 | <target state="new">Audio-only</target> |
6917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> | 7168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> |
6918 | </trans-unit> | 7169 | </trans-unit> |
6919 | <trans-unit id="8011855989482474311" datatype="html"> | 7170 | <trans-unit id="8011855989482474311" datatype="html"> |
6920 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 7171 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
6921 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> | 7172 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> |
6922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> | 7173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> |
6923 | </trans-unit><trans-unit id="7756250490108954499" datatype="html"> | 7174 | </trans-unit> |
6924 | <source>144p</source><target state="new">144p</target> | 7175 | <trans-unit id="7756250490108954499" datatype="html"> |
7176 | <source>144p</source> | ||
7177 | <target state="new">144p</target> | ||
6925 | <context-group purpose="location"> | 7178 | <context-group purpose="location"> |
6926 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context> | 7179 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context> |
6927 | <context context-type="linenumber">22</context> | 7180 | <context context-type="linenumber">22</context> |
@@ -6930,44 +7183,46 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6930 | <trans-unit id="3768852440495368591" datatype="html"> | 7183 | <trans-unit id="3768852440495368591" datatype="html"> |
6931 | <source>240p</source> | 7184 | <source>240p</source> |
6932 | <target state="new">240p</target> | 7185 | <target state="new">240p</target> |
6933 | 7186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">26</context></context-group> | |
6934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 7187 | </trans-unit> |
6935 | <trans-unit id="6824490596490222280" datatype="html"> | 7188 | <trans-unit id="6824490596490222280" datatype="html"> |
6936 | <source>360p</source> | 7189 | <source>360p</source> |
6937 | <target state="new">360p</target> | 7190 | <target state="new">360p</target> |
6938 | 7191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">30</context></context-group> | |
6939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 7192 | </trans-unit> |
6940 | <trans-unit id="4039682741786530029" datatype="html"> | 7193 | <trans-unit id="4039682741786530029" datatype="html"> |
6941 | <source>480p</source> | 7194 | <source>480p</source> |
6942 | <target state="new">480p</target> | 7195 | <target state="new">480p</target> |
6943 | 7196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">34</context></context-group> | |
6944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7197 | </trans-unit> |
6945 | <trans-unit id="5165245100010036661" datatype="html"> | 7198 | <trans-unit id="5165245100010036661" datatype="html"> |
6946 | <source>720p</source> | 7199 | <source>720p</source> |
6947 | <target state="new">720p</target> | 7200 | <target state="new">720p</target> |
6948 | 7201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">38</context></context-group> | |
6949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 7202 | </trans-unit> |
6950 | <trans-unit id="7709767791012306261" datatype="html"> | 7203 | <trans-unit id="7709767791012306261" datatype="html"> |
6951 | <source>1080p</source> | 7204 | <source>1080p</source> |
6952 | <target state="new">1080p</target> | 7205 | <target state="new">1080p</target> |
6953 | 7206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">42</context></context-group> | |
6954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 7207 | </trans-unit> |
6955 | <trans-unit id="3671005503070777897" datatype="html"> | 7208 | <trans-unit id="3671005503070777897" datatype="html"> |
6956 | <source>1440p</source> | 7209 | <source>1440p</source> |
6957 | <target state="new">1440p</target> | 7210 | <target state="new">1440p</target> |
6958 | 7211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">46</context></context-group> | |
6959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 7212 | </trans-unit> |
6960 | <trans-unit id="597839553814574067" datatype="html"> | 7213 | <trans-unit id="597839553814574067" datatype="html"> |
6961 | <source>2160p</source> | 7214 | <source>2160p</source> |
6962 | <target state="new">2160p</target> | 7215 | <target state="new">2160p</target> |
6963 | 7216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">50</context></context-group> | |
6964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 7217 | </trans-unit> |
6965 | <trans-unit id="3957742085471141221" datatype="html"> | 7218 | <trans-unit id="3957742085471141221" datatype="html"> |
6966 | <source>Auto (via ffmpeg)</source> | 7219 | <source>Auto (via ffmpeg)</source> |
6967 | <target state="new">Auto (via ffmpeg)</target> | 7220 | <target state="new">Auto (via ffmpeg)</target> |
6968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">50</context></context-group> | 7221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">50</context></context-group> |
6969 | </trans-unit><trans-unit id="3642770981085338761" datatype="html"> | 7222 | </trans-unit> |
6970 | <source>Followers of your instance</source><target state="new">Followers of your instance</target> | 7223 | <trans-unit id="3642770981085338761" datatype="html"> |
7224 | <source>Followers of your instance</source> | ||
7225 | <target state="new">Followers of your instance</target> | ||
6971 | <context-group purpose="location"> | 7226 | <context-group purpose="location"> |
6972 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 7227 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
6973 | <context context-type="linenumber">3</context> | 7228 | <context context-type="linenumber">3</context> |
@@ -6976,88 +7231,98 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6976 | <trans-unit id="931255636742351800" datatype="html"> | 7231 | <trans-unit id="931255636742351800" datatype="html"> |
6977 | <source>No limit</source> | 7232 | <source>No limit</source> |
6978 | <target state="new">No limit</target> | 7233 | <target state="new">No limit</target> |
6979 | 7234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">34</context></context-group> | |
6980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7235 | </trans-unit> |
6981 | <trans-unit id="5250062810079582285" datatype="html"> | 7236 | <trans-unit id="5250062810079582285" datatype="html"> |
6982 | <source>1 hour</source> | 7237 | <source>1 hour</source> |
6983 | <target state="new">1 hour</target> | 7238 | <target state="new">1 hour</target> |
6984 | 7239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">35</context></context-group> | |
6985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7240 | </trans-unit> |
6986 | <trans-unit id="8662356672298904015" datatype="html"> | 7241 | <trans-unit id="8662356672298904015" datatype="html"> |
6987 | <source>3 hours</source> | 7242 | <source>3 hours</source> |
6988 | <target state="new">3 hours</target> | 7243 | <target state="new">3 hours</target> |
6989 | 7244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">36</context></context-group> | |
6990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 7245 | </trans-unit> |
6991 | <trans-unit id="1794624538833178491" datatype="html"> | 7246 | <trans-unit id="1794624538833178491" datatype="html"> |
6992 | <source>5 hours</source> | 7247 | <source>5 hours</source> |
6993 | <target state="new">5 hours</target> | 7248 | <target state="new">5 hours</target> |
6994 | 7249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">37</context></context-group> | |
6995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7250 | </trans-unit> |
6996 | <trans-unit id="4941148355486671862" datatype="html"> | 7251 | <trans-unit id="4941148355486671862" datatype="html"> |
6997 | <source>10 hours</source> | 7252 | <source>10 hours</source> |
6998 | <target state="new">10 hours</target> | 7253 | <target state="new">10 hours</target> |
6999 | 7254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 7255 | </trans-unit> |
7001 | <trans-unit id="6659155428791414865" datatype="html"> | 7256 | <trans-unit id="6659155428791414865" datatype="html"> |
7002 | <source>x264, targeting maximum device compatibility</source> | 7257 | <source>x264, targeting maximum device compatibility</source> |
7003 | <target state="new">x264, targeting maximum device compatibility</target> | 7258 | <target state="new">x264, targeting maximum device compatibility</target> |
7004 | 7259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">55</context></context-group> | |
7005 | 7260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts</context><context context-type="linenumber">50</context></context-group> | |
7006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 7261 | </trans-unit> |
7007 | <trans-unit id="1473738049081128420" datatype="html"> | 7262 | <trans-unit id="1473738049081128420" datatype="html"> |
7008 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> | 7263 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> |
7009 | <target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | 7264 | <target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> |
7010 | 7265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">8</context></context-group> | |
7011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 7266 | </trans-unit> |
7012 | <trans-unit id="9122600735711449044" datatype="html"> | 7267 | <trans-unit id="9122600735711449044" datatype="html"> |
7013 | <source>However, you may want to read our guidelines before tweaking the following values.</source> | 7268 | <source>However, you may want to read our guidelines before tweaking the following values.</source> |
7014 | <target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | 7269 | <target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> |
7015 | 7270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">11</context></context-group> | |
7016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7271 | </trans-unit> |
7017 | <trans-unit id="9035429011363248302" datatype="html"> | 7272 | <trans-unit id="9035429011363248302" datatype="html"> |
7018 | <source>Read guidelines</source> | 7273 | <source>Read guidelines</source> |
7019 | <target state="new"> Read guidelines </target> | 7274 | <target state="new"> Read guidelines </target> |
7020 | 7275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">16</context></context-group> | |
7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 7276 | </trans-unit> |
7022 | <trans-unit id="2384409178337534505" datatype="html"> | 7277 | <trans-unit id="2384409178337534505" datatype="html"> |
7023 | <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> | 7278 | <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> |
7024 | <target state="new"> 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> | 7279 | <target state="new"> 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> |
7025 | 7280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">27</context></context-group> | |
7026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 7281 | </trans-unit> |
7027 | <trans-unit id="1618463615802675111" datatype="html"> | 7282 | <trans-unit id="1618463615802675111" datatype="html"> |
7028 | <source>threads</source> | 7283 | <source>threads</source> |
7029 | <target state="new">threads</target> | 7284 | <target state="new">threads</target> |
7030 | 7285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">90</context></context-group> | |
7031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 7286 | </trans-unit> |
7032 | <trans-unit id="593234948551881507" datatype="html"> | 7287 | <trans-unit id="593234948551881507" datatype="html"> |
7033 | <source>thread</source> | 7288 | <source>thread</source> |
7034 | <target state="new">thread</target> | 7289 | <target state="new">thread</target> |
7035 | 7290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">91</context></context-group> | |
7036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">91</context></context-group></trans-unit><trans-unit id="709846045064893539" datatype="html"> | 7291 | </trans-unit> |
7037 | <source> Updating instance configuration from the web interface is disabled by the system administrator. | 7292 | <trans-unit id="709846045064893539" datatype="html"> |
7038 | </source><target state="new"> Updating instance configuration from the web interface is disabled by the system administrator. | 7293 | <source>Updating instance configuration from the web interface is disabled by the system administrator.</source> |
7294 | <target state="new"> Updating instance configuration from the web interface is disabled by the system administrator. | ||
7039 | </target> | 7295 | </target> |
7040 | <context-group purpose="location"> | 7296 | <context-group purpose="location"> |
7041 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 7297 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
7042 | <context context-type="linenumber">3,5</context> | 7298 | <context context-type="linenumber">3,5</context> |
7043 | </context-group> | 7299 | </context-group> |
7044 | </trans-unit><trans-unit id="1305357231288135414" datatype="html"> | 7300 | </trans-unit> |
7045 | <source>Homepage</source><target state="new">Homepage</target> | 7301 | <trans-unit id="1305357231288135414" datatype="html"> |
7046 | 7302 | <source>Homepage</source> | |
7047 | 7303 | <target state="new">Homepage</target> | |
7048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+home/home-routing.module.ts</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="5037437391296624618" datatype="html"> | 7304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">12</context></context-group> |
7049 | <source>Information</source><target state="new">Information</target> | 7305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context><context context-type="linenumber">13</context></context-group> |
7050 | 7306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+home/home-routing.module.ts</context><context context-type="linenumber">11</context></context-group> | |
7051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="8643289769990675407" datatype="html"> | 7307 | </trans-unit> |
7052 | <source>Basic</source><target state="new">Basic</target> | 7308 | <trans-unit id="5037437391296624618" datatype="html"> |
7053 | 7309 | <source>Information</source> | |
7054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 7310 | <target state="new">Information</target> |
7311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">20</context></context-group> | ||
7312 | </trans-unit> | ||
7313 | <trans-unit id="8643289769990675407" datatype="html"> | ||
7314 | <source>Basic</source> | ||
7315 | <target state="new">Basic</target> | ||
7316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">29</context></context-group> | ||
7317 | </trans-unit> | ||
7055 | <trans-unit id="2060042292048624940" datatype="html"> | 7318 | <trans-unit id="2060042292048624940" datatype="html"> |
7056 | <source>Configuration updated.</source> | 7319 | <source>Configuration updated.</source> |
7057 | <target state="new">Configuration updated.</target> | 7320 | <target state="new">Configuration updated.</target> |
7058 | 7321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">309</context></context-group> | |
7059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit><trans-unit id="6920964195632624609" datatype="html"> | 7322 | </trans-unit> |
7060 | <source>INSTANCE HOMEPAGE</source><target state="new">INSTANCE HOMEPAGE</target> | 7323 | <trans-unit id="6920964195632624609" datatype="html"> |
7324 | <source>INSTANCE HOMEPAGE</source> | ||
7325 | <target state="new">INSTANCE HOMEPAGE</target> | ||
7061 | <context-group purpose="location"> | 7326 | <context-group purpose="location"> |
7062 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> | 7327 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> |
7063 | <context context-type="linenumber">7</context> | 7328 | <context context-type="linenumber">7</context> |
@@ -7066,13 +7331,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7066 | <trans-unit id="3203902538239082422" datatype="html"> | 7331 | <trans-unit id="3203902538239082422" datatype="html"> |
7067 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> | 7332 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> |
7068 | <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> | 7333 | <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> |
7069 | 7334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts</context><context context-type="linenumber">105</context></context-group> | |
7070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 7335 | </trans-unit> |
7071 | <trans-unit id="6284468333579755406" datatype="html"> | 7336 | <trans-unit id="6284468333579755406" datatype="html"> |
7072 | <source>Edit custom configuration</source> | 7337 | <source>Edit custom configuration</source> |
7073 | <target state="new">Edit custom configuration</target> | 7338 | <target state="new">Edit custom configuration</target> |
7074 | 7339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context><context context-type="linenumber">24</context></context-group> | |
7075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 7340 | </trans-unit> |
7076 | <trans-unit id="6549061957433635758" datatype="html"> | 7341 | <trans-unit id="6549061957433635758" datatype="html"> |
7077 | <source>Process domains</source> | 7342 | <source>Process domains</source> |
7078 | <target state="new">Process domains</target> | 7343 | <target state="new">Process domains</target> |
@@ -7083,13 +7348,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7083 | <target state="new">Report | 7348 | <target state="new">Report |
7084 | <x id="PH"/> | 7349 | <x id="PH"/> |
7085 | </target> | 7350 | </target> |
7086 | 7351 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">61</context></context-group> | |
7087 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 7352 | </trans-unit> |
7088 | <trans-unit id="5065410539274460415" datatype="html"> | 7353 | <trans-unit id="5065410539274460415" datatype="html"> |
7089 | <source>Account reported.</source> | 7354 | <source>Account reported.</source> |
7090 | <target state="new">Account reported.</target> | 7355 | <target state="new">Account reported.</target> |
7091 | 7356 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">83</context></context-group> | |
7092 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 7357 | </trans-unit> |
7093 | <trans-unit id="6245265026120479954" datatype="html"> | 7358 | <trans-unit id="6245265026120479954" datatype="html"> |
7094 | <source>Comment reported.</source> | 7359 | <source>Comment reported.</source> |
7095 | <target state="new">Comment reported.</target> | 7360 | <target state="new">Comment reported.</target> |
@@ -7098,44 +7363,51 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7098 | <trans-unit id="2127446333083057097" datatype="html"> | 7363 | <trans-unit id="2127446333083057097" datatype="html"> |
7099 | <source>Domain is required.</source> | 7364 | <source>Domain is required.</source> |
7100 | <target state="new">Domain is required.</target> | 7365 | <target state="new">Domain is required.</target> |
7101 | 7366 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">92</context></context-group> | |
7102 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="7951488350851416577" datatype="html"> | 7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">101</context></context-group> |
7103 | <source>Hosts entered are invalid.</source><target state="new">Hosts entered are invalid.</target> | 7368 | </trans-unit> |
7369 | <trans-unit id="7951488350851416577" datatype="html"> | ||
7370 | <source>Hosts entered are invalid.</source> | ||
7371 | <target state="new">Hosts entered are invalid.</target> | ||
7104 | <context-group purpose="location"> | 7372 | <context-group purpose="location"> |
7105 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7373 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7106 | <context context-type="linenumber">93</context> | 7374 | <context context-type="linenumber">93</context> |
7107 | </context-group> | 7375 | </context-group> |
7108 | </trans-unit><trans-unit id="1469559036084108672" datatype="html"> | 7376 | </trans-unit> |
7109 | <source>Hosts entered contain duplicates.</source><target state="new">Hosts entered contain duplicates.</target> | 7377 | <trans-unit id="1469559036084108672" datatype="html"> |
7378 | <source>Hosts entered contain duplicates.</source> | ||
7379 | <target state="new">Hosts entered contain duplicates.</target> | ||
7110 | <context-group purpose="location"> | 7380 | <context-group purpose="location"> |
7111 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7381 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7112 | <context context-type="linenumber">94</context> | 7382 | <context context-type="linenumber">94</context> |
7113 | </context-group> | 7383 | </context-group> |
7114 | </trans-unit><trans-unit id="5991533283446904296" datatype="html"> | 7384 | </trans-unit> |
7115 | <source>Hosts or handles are invalid.</source><target state="new">Hosts or handles are invalid.</target> | 7385 | <trans-unit id="5991533283446904296" datatype="html"> |
7386 | <source>Hosts or handles are invalid.</source> | ||
7387 | <target state="new">Hosts or handles are invalid.</target> | ||
7116 | <context-group purpose="location"> | 7388 | <context-group purpose="location"> |
7117 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7389 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7118 | <context context-type="linenumber">102</context> | 7390 | <context context-type="linenumber">102</context> |
7119 | </context-group> | 7391 | </context-group> |
7120 | </trans-unit><trans-unit id="6759198394434886237" datatype="html"> | 7392 | </trans-unit> |
7121 | <source>Hosts or handles contain duplicates.</source><target state="new">Hosts or handles contain duplicates.</target> | 7393 | <trans-unit id="6759198394434886237" datatype="html"> |
7394 | <source>Hosts or handles contain duplicates.</source> | ||
7395 | <target state="new">Hosts or handles contain duplicates.</target> | ||
7122 | <context-group purpose="location"> | 7396 | <context-group purpose="location"> |
7123 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7397 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7124 | <context context-type="linenumber">103</context> | 7398 | <context context-type="linenumber">103</context> |
7125 | </context-group> | 7399 | </context-group> |
7126 | </trans-unit> | 7400 | </trans-unit> |
7127 | |||
7128 | |||
7129 | <trans-unit id="240806681889331244" datatype="html"> | 7401 | <trans-unit id="240806681889331244" datatype="html"> |
7130 | <source>Unlimited</source> | 7402 | <source>Unlimited</source> |
7131 | <target state="new">Unlimited</target> | 7403 | <target state="new">Unlimited</target> |
7132 | 7404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">22</context></context-group> | |
7133 | 7405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">36</context></context-group> | |
7134 | 7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">30</context></context-group> | |
7135 | 7407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">37</context></context-group> | |
7136 | 7408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">32</context></context-group> | |
7137 | 7409 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 7410 | </trans-unit> |
7139 | <trans-unit id="5504952199515017930" datatype="html"> | 7411 | <trans-unit id="5504952199515017930" datatype="html"> |
7140 | <source>None - no upload possible</source> | 7412 | <source>None - no upload possible</source> |
7141 | <target state="new">None - no upload possible</target> | 7413 | <target state="new">None - no upload possible</target> |
@@ -7256,37 +7528,42 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7256 | <trans-unit id="7022070615528435141" datatype="html"> | 7528 | <trans-unit id="7022070615528435141" datatype="html"> |
7257 | <source>Delete</source> | 7529 | <source>Delete</source> |
7258 | <target state="new">Delete</target> | 7530 | <target state="new">Delete</target> |
7259 | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7260 | 7532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group> | |
7261 | 7533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7262 | 7534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7263 | 7535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group> | |
7264 | 7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7265 | 7537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">209</context></context-group> | |
7266 | 7538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7267 | 7539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group> | |
7268 | 7540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group> | |
7269 | 7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group> | |
7270 | 7542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7271 | 7543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group> | |
7272 | 7544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group> | |
7273 | 7545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7274 | 7546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group> | |
7275 | 7547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">225</context></context-group> | |
7276 | 7548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">190</context></context-group> | |
7277 | 7549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | |
7278 | 7550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7279 | 7551 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group> | |
7280 | 7552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group> | |
7281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">209</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">225</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">190</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 7553 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group> |
7554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group> | ||
7555 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | ||
7556 | </trans-unit> | ||
7282 | <trans-unit id="2452034338905853167" datatype="html"> | 7557 | <trans-unit id="2452034338905853167" datatype="html"> |
7283 | <source><x id="PH"/> removed from instance followers </source> | 7558 | <source><x id="PH"/> removed from instance followers </source> |
7284 | <target state="new"> | 7559 | <target state="new"> |
7285 | <x id="PH"/> removed from instance followers | 7560 | <x id="PH"/> removed from instance followers |
7286 | </target> | 7561 | </target> |
7287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">81</context></context-group> | 7562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">81</context></context-group> |
7288 | </trans-unit><trans-unit id="6018246591673612412" datatype="html"> | 7563 | </trans-unit> |
7289 | <source>Follow</source><target state="new">Follow</target> | 7564 | <trans-unit id="6018246591673612412" datatype="html"> |
7565 | <source>Follow</source> | ||
7566 | <target state="new">Follow</target> | ||
7290 | <context-group purpose="location"> | 7567 | <context-group purpose="location"> |
7291 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7568 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7292 | <context context-type="linenumber">3</context> | 7569 | <context context-type="linenumber">3</context> |
@@ -7299,8 +7576,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7299 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7576 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
7300 | <context context-type="linenumber">18</context> | 7577 | <context context-type="linenumber">18</context> |
7301 | </context-group> | 7578 | </context-group> |
7302 | </trans-unit><trans-unit id="3596798855644241001" datatype="html"> | 7579 | </trans-unit> |
7303 | <source>1 host (without "http://"), account handle or channel handle per line</source><target state="new">1 host (without "http://"), account handle or channel handle per line</target> | 7580 | <trans-unit id="3596798855644241001" datatype="html"> |
7581 | <source>1 host (without "http://"), account handle or channel handle per line</source> | ||
7582 | <target state="new">1 host (without "http://"), account handle or channel handle per line</target> | ||
7304 | <context-group purpose="location"> | 7583 | <context-group purpose="location"> |
7305 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7584 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7306 | <context context-type="linenumber">11</context> | 7585 | <context context-type="linenumber">11</context> |
@@ -7311,14 +7590,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7311 | <target state="new"> | 7590 | <target state="new"> |
7312 | <x id="PH"/> is not valid | 7591 | <x id="PH"/> is not valid |
7313 | </target> | 7592 | </target> |
7314 | 7593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
7315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 7594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context><context context-type="linenumber">50</context></context-group> |
7595 | </trans-unit> | ||
7316 | <trans-unit id="2355066641781598196" datatype="html"> | 7596 | <trans-unit id="2355066641781598196" datatype="html"> |
7317 | <source>Follow request(s) sent!</source> | 7597 | <source>Follow request(s) sent!</source> |
7318 | <target state="new">Follow request(s) sent!</target> | 7598 | <target state="new">Follow request(s) sent!</target> |
7319 | 7599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.ts</context><context context-type="linenumber">63</context></context-group> | |
7320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit><trans-unit id="3459358413436264734" datatype="html"> | 7600 | </trans-unit> |
7321 | <source>Your instance subscriptions</source><target state="new">Your instance subscriptions</target> | 7601 | <trans-unit id="3459358413436264734" datatype="html"> |
7602 | <source>Your instance subscriptions</source> | ||
7603 | <target state="new">Your instance subscriptions</target> | ||
7322 | <context-group purpose="location"> | 7604 | <context-group purpose="location"> |
7323 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7605 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
7324 | <context context-type="linenumber">3</context> | 7606 | <context context-type="linenumber">3</context> |
@@ -7329,21 +7611,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7329 | <target state="new">Do you really want to unfollow | 7611 | <target state="new">Do you really want to unfollow |
7330 | <x id="PH"/>? | 7612 | <x id="PH"/>? |
7331 | </target> | 7613 | </target> |
7332 | 7614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">46</context></context-group> | |
7333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 7615 | </trans-unit> |
7334 | <trans-unit id="9160510009013134726" datatype="html"> | 7616 | <trans-unit id="9160510009013134726" datatype="html"> |
7335 | <source>Unfollow</source> | 7617 | <source>Unfollow</source> |
7336 | <target state="new">Unfollow</target> | 7618 | <target state="new">Unfollow</target> |
7337 | 7619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group> | |
7338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 7620 | </trans-unit> |
7339 | <trans-unit id="3935234189109112926" datatype="html"> | 7621 | <trans-unit id="3935234189109112926" datatype="html"> |
7340 | <source>You are not following <x id="PH"/> anymore.</source> | 7622 | <source>You are not following <x id="PH"/> anymore.</source> |
7341 | <target state="new">You are not following | 7623 | <target state="new">You are not following |
7342 | <x id="PH"/> anymore. | 7624 | <x id="PH"/> anymore. |
7343 | </target> | 7625 | </target> |
7344 | 7626 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="397182597341363053" datatype="html"> | 7627 | </trans-unit> |
7346 | <source>Redundancy</source><target state="new">Redundancy</target> | 7628 | <trans-unit id="397182597341363053" datatype="html"> |
7629 | <source>Redundancy</source> | ||
7630 | <target state="new">Redundancy</target> | ||
7347 | <context-group purpose="location"> | 7631 | <context-group purpose="location"> |
7348 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 7632 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> |
7349 | <context context-type="linenumber">48</context> | 7633 | <context context-type="linenumber">48</context> |
@@ -7367,30 +7651,28 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7367 | </target> | 7651 | </target> |
7368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> | 7652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> |
7369 | </trans-unit> | 7653 | </trans-unit> |
7370 | |||
7371 | |||
7372 | <trans-unit id="5875705095657098468" datatype="html"> | 7654 | <trans-unit id="5875705095657098468" datatype="html"> |
7373 | <source>Do you really want to remove this video redundancy?</source> | 7655 | <source>Do you really want to remove this video redundancy?</source> |
7374 | <target state="new">Do you really want to remove this video redundancy?</target> | 7656 | <target state="new">Do you really want to remove this video redundancy?</target> |
7375 | 7657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">149</context></context-group> | |
7376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit> | 7658 | </trans-unit> |
7377 | <trans-unit id="9098272570113000349" datatype="html"> | 7659 | <trans-unit id="9098272570113000349" datatype="html"> |
7378 | <source>Remove redundancy</source> | 7660 | <source>Remove redundancy</source> |
7379 | <target state="new">Remove redundancy</target> | 7661 | <target state="new">Remove redundancy</target> |
7380 | 7662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">150</context></context-group> | |
7381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 7663 | </trans-unit> |
7382 | <trans-unit id="6537102123107780785" datatype="html"> | 7664 | <trans-unit id="6537102123107780785" datatype="html"> |
7383 | <source>Video redundancies removed!</source> | 7665 | <source>Video redundancies removed!</source> |
7384 | <target state="new">Video redundancies removed!</target> | 7666 | <target state="new">Video redundancies removed!</target> |
7385 | 7667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">156</context></context-group> | |
7386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit> | 7668 | </trans-unit> |
7387 | <trans-unit id="8639315630141911544" datatype="html"> | 7669 | <trans-unit id="8639315630141911544" datatype="html"> |
7388 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7670 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
7389 | <target state="new">Account | 7671 | <target state="new">Account |
7390 | <x id="PH"/> unmuted by your instance. | 7672 | <x id="PH"/> unmuted by your instance. |
7391 | </target> | 7673 | </target> |
7392 | 7674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">43</context></context-group> | |
7393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7675 | </trans-unit> |
7394 | <trans-unit id="3371601176452094961" datatype="html"> | 7676 | <trans-unit id="3371601176452094961" datatype="html"> |
7395 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 7677 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
7396 | <target state="new">Instance | 7678 | <target state="new">Instance |
@@ -7398,7 +7680,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7398 | </target> | 7680 | </target> |
7399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group> | 7681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group> |
7400 | </trans-unit> | 7682 | </trans-unit> |
7401 | |||
7402 | <trans-unit id="3096398988891996621" datatype="html"> | 7683 | <trans-unit id="3096398988891996621" datatype="html"> |
7403 | <source>Instance <x id="PH"/> muted by your instance.</source> | 7684 | <source>Instance <x id="PH"/> muted by your instance.</source> |
7404 | <target state="new">Instance | 7685 | <target state="new">Instance |
@@ -7414,162 +7695,168 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7414 | <trans-unit id="149121389669248117" datatype="html"> | 7695 | <trans-unit id="149121389669248117" datatype="html"> |
7415 | <source>Violent or Repulsive</source> | 7696 | <source>Violent or Repulsive</source> |
7416 | <target state="new">Violent or Repulsive</target> | 7697 | <target state="new">Violent or Repulsive</target> |
7417 | 7698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">19</context></context-group> | |
7418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 7699 | </trans-unit> |
7419 | <trans-unit id="2493388551376623687" datatype="html"> | 7700 | <trans-unit id="2493388551376623687" datatype="html"> |
7420 | <source>Hateful or Abusive</source> | 7701 | <source>Hateful or Abusive</source> |
7421 | <target state="new">Hateful or Abusive</target> | 7702 | <target state="new">Hateful or Abusive</target> |
7422 | 7703 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">20</context></context-group> | |
7423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">20</context></context-group></trans-unit> | 7704 | </trans-unit> |
7424 | <trans-unit id="5124757565683866220" datatype="html"> | 7705 | <trans-unit id="5124757565683866220" datatype="html"> |
7425 | <source>Spam or Misleading</source> | 7706 | <source>Spam or Misleading</source> |
7426 | <target state="new">Spam or Misleading</target> | 7707 | <target state="new">Spam or Misleading</target> |
7427 | 7708 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">21</context></context-group> | |
7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 7709 | </trans-unit> |
7429 | <trans-unit id="8440128775129354214" datatype="html"> | 7710 | <trans-unit id="8440128775129354214" datatype="html"> |
7430 | <source>Privacy</source> | 7711 | <source>Privacy</source> |
7431 | <target state="new">Privacy</target> | 7712 | <target state="new">Privacy</target> |
7432 | 7713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> | |
7433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> |
7715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">112</context></context-group> | ||
7716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group> | ||
7717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group> | ||
7718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group> | ||
7719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">26</context></context-group> | ||
7720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">2</context></context-group> | ||
7721 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group> | ||
7722 | </trans-unit> | ||
7434 | <trans-unit id="8768506950499277937" datatype="html"> | 7723 | <trans-unit id="8768506950499277937" datatype="html"> |
7435 | <source>Copyright</source> | 7724 | <source>Copyright</source> |
7436 | <target state="new">Copyright</target> | 7725 | <target state="new">Copyright</target> |
7437 | 7726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group> | |
7438 | 7727 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">146</context></context-group> | |
7439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 7728 | </trans-unit> |
7440 | <trans-unit id="3776575731053010580" datatype="html"> | 7729 | <trans-unit id="3776575731053010580" datatype="html"> |
7441 | <source>Server rules</source> | 7730 | <source>Server rules</source> |
7442 | <target state="new">Server rules</target> | 7731 | <target state="new">Server rules</target> |
7443 | 7732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">24</context></context-group> | |
7444 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 7733 | </trans-unit> |
7445 | <trans-unit id="6907161397537530258" datatype="html"> | 7734 | <trans-unit id="6907161397537530258" datatype="html"> |
7446 | <source>Thumbnails</source> | 7735 | <source>Thumbnails</source> |
7447 | <target state="new">Thumbnails</target> | 7736 | <target state="new">Thumbnails</target> |
7448 | 7737 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group> | |
7449 | 7738 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">161</context></context-group> | |
7450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">161</context></context-group></trans-unit> | 7739 | </trans-unit> |
7451 | <trans-unit id="6473213678768782133" datatype="html"> | 7740 | <trans-unit id="6473213678768782133" datatype="html"> |
7452 | <source>Internal actions</source> | 7741 | <source>Internal actions</source> |
7453 | <target state="new">Internal actions</target> | 7742 | <target state="new">Internal actions</target> |
7454 | 7743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">59</context></context-group> | |
7455 | 7744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group> | |
7456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> | 7745 | </trans-unit> |
7457 | <trans-unit id="4559872264406386913" datatype="html"> | 7746 | <trans-unit id="4559872264406386913" datatype="html"> |
7458 | <source>Delete report</source> | 7747 | <source>Delete report</source> |
7459 | <target state="new">Delete report</target> | 7748 | <target state="new">Delete report</target> |
7460 | 7749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">275</context></context-group> | |
7461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 7750 | </trans-unit> |
7462 | <trans-unit id="5793550984155962433" datatype="html"> | 7751 | <trans-unit id="5793550984155962433" datatype="html"> |
7463 | <source>Actions for the flagged account</source> | 7752 | <source>Actions for the flagged account</source> |
7464 | <target state="new">Actions for the flagged account</target> | 7753 | <target state="new">Actions for the flagged account</target> |
7465 | 7754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">286</context></context-group> | |
7466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">286</context></context-group></trans-unit> | 7755 | </trans-unit> |
7467 | <trans-unit id="1679841953757186358" datatype="html"> | 7756 | <trans-unit id="1679841953757186358" datatype="html"> |
7468 | <source>Mark as accepted</source> | 7757 | <source>Mark as accepted</source> |
7469 | <target state="new">Mark as accepted</target> | 7758 | <target state="new">Mark as accepted</target> |
7470 | 7759 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group> | |
7471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group></trans-unit> | 7760 | </trans-unit> |
7472 | <trans-unit id="7993358694073742566" datatype="html"> | 7761 | <trans-unit id="7993358694073742566" datatype="html"> |
7473 | <source>Mark as rejected</source> | 7762 | <source>Mark as rejected</source> |
7474 | <target state="new">Mark as rejected</target> | 7763 | <target state="new">Mark as rejected</target> |
7475 | 7764 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group> | |
7476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group></trans-unit> | 7765 | </trans-unit> |
7477 | <trans-unit id="4175703770051343108" datatype="html"> | 7766 | <trans-unit id="4175703770051343108" datatype="html"> |
7478 | <source>Add internal note</source> | 7767 | <source>Add internal note</source> |
7479 | <target state="new">Add internal note</target> | 7768 | <target state="new">Add internal note</target> |
7480 | 7769 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group> | |
7481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 7770 | </trans-unit> |
7482 | <trans-unit id="296166371893775555" datatype="html"> | 7771 | <trans-unit id="296166371893775555" datatype="html"> |
7483 | <source>Actions for the video</source> | 7772 | <source>Actions for the video</source> |
7484 | <target state="new">Actions for the video</target> | 7773 | <target state="new">Actions for the video</target> |
7485 | 7774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7486 | 7775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group> | |
7487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> | 7776 | </trans-unit> |
7488 | <trans-unit id="3924877328520650445" datatype="html"> | 7777 | <trans-unit id="3924877328520650445" datatype="html"> |
7489 | <source>Block video</source> | 7778 | <source>Block video</source> |
7490 | <target state="new">Block video</target> | 7779 | <target state="new">Block video</target> |
7491 | 7780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">339</context></context-group> | |
7492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit> | 7781 | </trans-unit> |
7493 | <trans-unit id="4762794934098378428" datatype="html"> | 7782 | <trans-unit id="4762794934098378428" datatype="html"> |
7494 | <source>Video blocked.</source> | 7783 | <source>Video blocked.</source> |
7495 | <target state="new">Video blocked.</target> | 7784 | <target state="new">Video blocked.</target> |
7496 | 7785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">345</context></context-group> | |
7497 | 7786 | </trans-unit> | |
7498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> | ||
7499 | <trans-unit id="4328862996304258770" datatype="html"> | 7787 | <trans-unit id="4328862996304258770" datatype="html"> |
7500 | <source>Unblock video</source> | 7788 | <source>Unblock video</source> |
7501 | <target state="new">Unblock video</target> | 7789 | <target state="new">Unblock video</target> |
7502 | 7790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">355</context></context-group> | |
7503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> | 7791 | </trans-unit> |
7504 | <trans-unit id="9065327551191479877" datatype="html"> | 7792 | <trans-unit id="9065327551191479877" datatype="html"> |
7505 | <source>Video unblocked.</source> | 7793 | <source>Video unblocked.</source> |
7506 | <target state="new">Video unblocked.</target> | 7794 | <target state="new">Video unblocked.</target> |
7507 | 7795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">361</context></context-group> | |
7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">361</context></context-group></trans-unit> | 7796 | </trans-unit> |
7509 | <trans-unit id="1250415136605923486" datatype="html"> | 7797 | <trans-unit id="1250415136605923486" datatype="html"> |
7510 | <source>Do you really want to delete this abuse report?</source> | 7798 | <source>Do you really want to delete this abuse report?</source> |
7511 | <target state="new">Do you really want to delete this abuse report?</target> | 7799 | <target state="new">Do you really want to delete this abuse report?</target> |
7512 | 7800 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7801 | </trans-unit> |
7514 | <trans-unit id="3482559157143817408" datatype="html"> | 7802 | <trans-unit id="3482559157143817408" datatype="html"> |
7515 | <source>Abuse deleted.</source> | 7803 | <source>Abuse deleted.</source> |
7516 | <target state="new">Abuse deleted.</target> | 7804 | <target state="new">Abuse deleted.</target> |
7517 | 7805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">140</context></context-group> | |
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 7806 | </trans-unit> |
7519 | <trans-unit id="6282990098351939529" datatype="html"> | 7807 | <trans-unit id="6282990098351939529" datatype="html"> |
7520 | <source>Deleted comment</source> | 7808 | <source>Deleted comment</source> |
7521 | <target state="new">Deleted comment</target> | 7809 | <target state="new">Deleted comment</target> |
7522 | 7810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">215</context></context-group> | |
7523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 7811 | </trans-unit> |
7524 | <trans-unit id="9196775343330824083" datatype="html"> | 7812 | <trans-unit id="9196775343330824083" datatype="html"> |
7525 | <source>Messages with reporter</source> | 7813 | <source>Messages with reporter</source> |
7526 | <target state="new">Messages with reporter</target> | 7814 | <target state="new">Messages with reporter</target> |
7527 | 7815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">249</context></context-group> | |
7528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit> | 7816 | </trans-unit> |
7529 | <trans-unit id="8770468575924421391" datatype="html"> | 7817 | <trans-unit id="8770468575924421391" datatype="html"> |
7530 | <source>Messages with moderators</source> | 7818 | <source>Messages with moderators</source> |
7531 | <target state="new">Messages with moderators</target> | 7819 | <target state="new">Messages with moderators</target> |
7532 | 7820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group> | |
7533 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> | 7821 | </trans-unit> |
7534 | <trans-unit id="8528549800795985099" datatype="html"> | 7822 | <trans-unit id="8528549800795985099" datatype="html"> |
7535 | <source>Update internal note</source> | 7823 | <source>Update internal note</source> |
7536 | <target state="new">Update internal note</target> | 7824 | <target state="new">Update internal note</target> |
7537 | 7825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group> | |
7538 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group></trans-unit> | 7826 | </trans-unit> |
7539 | <trans-unit id="3962242315365992494" datatype="html"> | 7827 | <trans-unit id="3962242315365992494" datatype="html"> |
7540 | <source>Switch video block to manual</source> | 7828 | <source>Switch video block to manual</source> |
7541 | <target state="new">Switch video block to manual</target> | 7829 | <target state="new">Switch video block to manual</target> |
7542 | 7830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">64</context></context-group> | |
7543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 7831 | </trans-unit> |
7544 | <trans-unit id="6906423861055262169" datatype="html"> | 7832 | <trans-unit id="6906423861055262169" datatype="html"> |
7545 | <source>Video <x id="PH"/> switched to manual block.</source> | 7833 | <source>Video <x id="PH"/> switched to manual block.</source> |
7546 | <target state="new">Video | 7834 | <target state="new">Video |
7547 | <x id="PH"/> switched to manual block. | 7835 | <x id="PH"/> switched to manual block. |
7548 | </target> | 7836 | </target> |
7549 | 7837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group> | |
7550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 7838 | </trans-unit> |
7551 | <trans-unit id="7293356040886494773" datatype="html"> | 7839 | <trans-unit id="7293356040886494773" datatype="html"> |
7552 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7840 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
7553 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> | 7841 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> |
7554 | 7842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">131</context></context-group> | |
7555 | 7843 | </trans-unit> | |
7556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">131</context></context-group></trans-unit> | ||
7557 | <trans-unit id="4859202148272511129" datatype="html"> | 7844 | <trans-unit id="4859202148272511129" datatype="html"> |
7558 | <source>Unblock</source> | 7845 | <source>Unblock</source> |
7559 | <target state="new">Unblock</target> | 7846 | <target state="new">Unblock</target> |
7560 | 7847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7561 | 7848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">133</context></context-group> | |
7562 | 7849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7563 | 7850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">354</context></context-group> | |
7564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">133</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 7851 | </trans-unit> |
7565 | <trans-unit id="4922469417589203720" datatype="html"> | 7852 | <trans-unit id="4922469417589203720" datatype="html"> |
7566 | <source>Video <x id="PH"/> unblocked.</source> | 7853 | <source>Video <x id="PH"/> unblocked.</source> |
7567 | <target state="new">Video | 7854 | <target state="new">Video |
7568 | <x id="PH"/> unblocked. | 7855 | <x id="PH"/> unblocked. |
7569 | </target> | 7856 | </target> |
7570 | 7857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
7571 | 7858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group> | |
7572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group></trans-unit> | 7859 | </trans-unit> |
7573 | <trans-unit id="6286037250766429054" datatype="html"> | 7860 | <trans-unit id="6286037250766429054" datatype="html"> |
7574 | <source>yes</source> | 7861 | <source>yes</source> |
7575 | <target state="new">yes</target> | 7862 | <target state="new">yes</target> |
@@ -7585,155 +7872,180 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7585 | <trans-unit id="212615365039028546" datatype="html"> | 7872 | <trans-unit id="212615365039028546" datatype="html"> |
7586 | <source>You don't have plugins installed yet.</source> | 7873 | <source>You don't have plugins installed yet.</source> |
7587 | <target state="new">You don't have plugins installed yet.</target> | 7874 | <target state="new">You don't have plugins installed yet.</target> |
7588 | 7875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">87</context></context-group> | |
7589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 7876 | </trans-unit> |
7590 | <trans-unit id="1710094819987243777" datatype="html"> | 7877 | <trans-unit id="1710094819987243777" datatype="html"> |
7591 | <source>You don't have themes installed yet.</source> | 7878 | <source>You don't have themes installed yet.</source> |
7592 | <target state="new">You don't have themes installed yet.</target> | 7879 | <target state="new">You don't have themes installed yet.</target> |
7593 | 7880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">90</context></context-group> | |
7594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 7881 | </trans-unit> |
7595 | <trans-unit id="931472057457682240" datatype="html"> | 7882 | <trans-unit id="931472057457682240" datatype="html"> |
7596 | <source>Update to <x id="PH"/> </source> | 7883 | <source>Update to <x id="PH"/> </source> |
7597 | <target state="new">Update to | 7884 | <target state="new">Update to |
7598 | <x id="PH"/> | 7885 | <x id="PH"/> |
7599 | </target> | 7886 | </target> |
7600 | 7887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">98</context></context-group> | |
7601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 7888 | </trans-unit> |
7602 | <trans-unit id="9107383323119159110" datatype="html"> | 7889 | <trans-unit id="9107383323119159110" datatype="html"> |
7603 | <source>Do you really want to uninstall <x id="PH"/>?</source> | 7890 | <source>Do you really want to uninstall <x id="PH"/>?</source> |
7604 | <target state="new">Do you really want to uninstall | 7891 | <target state="new">Do you really want to uninstall |
7605 | <x id="PH"/>? | 7892 | <x id="PH"/>? |
7606 | </target> | 7893 | </target> |
7607 | 7894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7895 | </trans-unit> |
7609 | <trans-unit id="4474510732215437338" datatype="html"> | 7896 | <trans-unit id="4474510732215437338" datatype="html"> |
7610 | <source>Uninstall</source> | 7897 | <source>Uninstall</source> |
7611 | <target state="new">Uninstall</target> | 7898 | <target state="new">Uninstall</target> |
7612 | 7899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group> | |
7613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">112</context></context-group></trans-unit> | 7900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">112</context></context-group> |
7901 | </trans-unit> | ||
7614 | <trans-unit id="3773378957693174719" datatype="html"> | 7902 | <trans-unit id="3773378957693174719" datatype="html"> |
7615 | <source><x id="PH"/> uninstalled. </source> | 7903 | <source><x id="PH"/> uninstalled. </source> |
7616 | <target state="new"> | 7904 | <target state="new"> |
7617 | <x id="PH"/> uninstalled. | 7905 | <x id="PH"/> uninstalled. |
7618 | </target> | 7906 | </target> |
7619 | 7907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">119</context></context-group> | |
7620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit><trans-unit id="7914215986085479339" datatype="html"> | 7908 | </trans-unit> |
7621 | <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source><target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target> | 7909 | <trans-unit id="7914215986085479339" datatype="html"> |
7622 | 7910 | <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source> | |
7623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit><trans-unit id="2849750161085431718" datatype="html"> | 7911 | <target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target> |
7624 | <source>Upgrade</source><target state="new">Upgrade</target> | 7912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">135</context></context-group> |
7625 | 7913 | </trans-unit> | |
7626 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit><trans-unit id="7686590072950686188" datatype="html"> | 7914 | <trans-unit id="2849750161085431718" datatype="html"> |
7627 | <source>Proceed upgrade</source><target state="new">Proceed upgrade</target> | 7915 | <source>Upgrade</source> |
7628 | 7916 | <target state="new">Upgrade</target> | |
7629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 7917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">136</context></context-group> |
7918 | </trans-unit> | ||
7919 | <trans-unit id="7686590072950686188" datatype="html"> | ||
7920 | <source>Proceed upgrade</source> | ||
7921 | <target state="new">Proceed upgrade</target> | ||
7922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">137</context></context-group> | ||
7923 | </trans-unit> | ||
7630 | <trans-unit id="7830308409197461339" datatype="html"> | 7924 | <trans-unit id="7830308409197461339" datatype="html"> |
7631 | <source><x id="PH"/> updated. </source> | 7925 | <source><x id="PH"/> updated. </source> |
7632 | <target state="new"> | 7926 | <target state="new"> |
7633 | <x id="PH"/> updated. | 7927 | <x id="PH"/> updated. |
7634 | </target> | 7928 | </target> |
7635 | 7929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> | 7930 | </trans-unit> |
7637 | <trans-unit id="3229595422546554334" datatype="html"> | 7931 | <trans-unit id="3229595422546554334" datatype="html"> |
7638 | <source>Jobs</source> | 7932 | <source>Jobs</source> |
7639 | <target state="new">Jobs</target> | 7933 | <target state="new">Jobs</target> |
7640 | 7934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">154</context></context-group> | |
7641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 7935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">24</context></context-group> |
7936 | </trans-unit> | ||
7642 | <trans-unit id="4804785061014590286" datatype="html"> | 7937 | <trans-unit id="4804785061014590286" datatype="html"> |
7643 | <source>Logs</source> | 7938 | <source>Logs</source> |
7644 | <target state="new">Logs</target> | 7939 | <target state="new">Logs</target> |
7645 | 7940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">162</context></context-group> | |
7646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">162</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">35</context></context-group> |
7942 | </trans-unit> | ||
7647 | <trans-unit id="3150704904301058778" datatype="html"> | 7943 | <trans-unit id="3150704904301058778" datatype="html"> |
7648 | <source>The plugin index is not available. Please retry later.</source> | 7944 | <source>The plugin index is not available. Please retry later.</source> |
7649 | <target state="new">The plugin index is not available. Please retry later.</target> | 7945 | <target state="new">The plugin index is not available. Please retry later.</target> |
7650 | 7946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">99</context></context-group> | |
7651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 7947 | </trans-unit> |
7652 | <trans-unit id="1387301493234848481" datatype="html"> | 7948 | <trans-unit id="1387301493234848481" datatype="html"> |
7653 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | 7949 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> |
7654 | <target state="new">Please only install plugins or themes you trust, since they can execute any code on your instance.</target> | 7950 | <target state="new">Please only install plugins or themes you trust, since they can execute any code on your instance.</target> |
7655 | 7951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">129</context></context-group> | |
7656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 7952 | </trans-unit> |
7657 | <trans-unit id="2994182849694226596" datatype="html"> | 7953 | <trans-unit id="2994182849694226596" datatype="html"> |
7658 | <source>Install <x id="PH"/>?</source> | 7954 | <source>Install <x id="PH"/>?</source> |
7659 | <target state="new">Install | 7955 | <target state="new">Install |
7660 | <x id="PH"/>? | 7956 | <x id="PH"/>? |
7661 | </target> | 7957 | </target> |
7662 | 7958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">130</context></context-group> | |
7663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> | 7959 | </trans-unit> |
7664 | <trans-unit id="6703720397495603345" datatype="html"> | 7960 | <trans-unit id="6703720397495603345" datatype="html"> |
7665 | <source><x id="PH"/> installed. </source> | 7961 | <source><x id="PH"/> installed. </source> |
7666 | <target state="new"> | 7962 | <target state="new"> |
7667 | <x id="PH"/> installed. | 7963 | <x id="PH"/> installed. |
7668 | </target> | 7964 | </target> |
7669 | 7965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">142</context></context-group> | |
7670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 7966 | </trans-unit> |
7671 | <trans-unit id="1875025899004073421" datatype="html"> | 7967 | <trans-unit id="1875025899004073421" datatype="html"> |
7672 | <source>Settings updated.</source> | 7968 | <source>Settings updated.</source> |
7673 | <target state="new">Settings updated.</target> | 7969 | <target state="new">Settings updated.</target> |
7674 | 7970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">55</context></context-group> | |
7675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 7971 | </trans-unit> |
7676 | |||
7677 | |||
7678 | <trans-unit id="2941409202780782189" datatype="html"> | 7972 | <trans-unit id="2941409202780782189" datatype="html"> |
7679 | <source>plugin</source> | 7973 | <source>plugin</source> |
7680 | <target state="new">plugin</target> | 7974 | <target state="new">plugin</target> |
7681 | 7975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">30</context></context-group> | |
7682 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 7976 | </trans-unit> |
7683 | <trans-unit id="840045833311458646" datatype="html"> | 7977 | <trans-unit id="840045833311458646" datatype="html"> |
7684 | <source>theme</source> | 7978 | <source>theme</source> |
7685 | <target state="new">theme</target> | 7979 | <target state="new">theme</target> |
7686 | 7980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group> | |
7687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit><trans-unit id="2483018961011868950" datatype="html"> | 7981 | </trans-unit> |
7688 | <source>IP address</source><target state="new">IP address</target> | 7982 | <trans-unit id="2483018961011868950" datatype="html"> |
7983 | <source>IP address</source> | ||
7984 | <target state="new">IP address</target> | ||
7689 | <context-group purpose="location"> | 7985 | <context-group purpose="location"> |
7690 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7986 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7691 | <context context-type="linenumber">2</context> | 7987 | <context context-type="linenumber">2</context> |
7692 | </context-group> | 7988 | </context-group> |
7693 | </trans-unit><trans-unit id="7223931053738621590" datatype="html"> | 7989 | </trans-unit> |
7694 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source><target state="new">PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 7990 | <trans-unit id="7223931053738621590" datatype="html"> |
7991 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | ||
7992 | <target state="new">PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | ||
7695 | <context-group purpose="location"> | 7993 | <context-group purpose="location"> |
7696 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7994 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7697 | <context context-type="linenumber">4</context> | 7995 | <context context-type="linenumber">4</context> |
7698 | </context-group> | 7996 | </context-group> |
7699 | </trans-unit><trans-unit id="722088235348685072" datatype="html"> | 7997 | </trans-unit> |
7700 | <source>If this is not your correct public IP, please consider fixing it because:</source><target state="new">If this is not your correct public IP, please consider fixing it because:</target> | 7998 | <trans-unit id="722088235348685072" datatype="html"> |
7999 | <source>If this is not your correct public IP, please consider fixing it because:</source> | ||
8000 | <target state="new">If this is not your correct public IP, please consider fixing it because:</target> | ||
7701 | <context-group purpose="location"> | 8001 | <context-group purpose="location"> |
7702 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8002 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7703 | <context context-type="linenumber">6</context> | 8003 | <context context-type="linenumber">6</context> |
7704 | </context-group> | 8004 | </context-group> |
7705 | </trans-unit><trans-unit id="8079826195972333513" datatype="html"> | 8005 | </trans-unit> |
7706 | <source>Views may not be counted correctly (reduced compared to what they should be)</source><target state="new">Views may not be counted correctly (reduced compared to what they should be)</target> | 8006 | <trans-unit id="8079826195972333513" datatype="html"> |
8007 | <source>Views may not be counted correctly (reduced compared to what they should be)</source> | ||
8008 | <target state="new">Views may not be counted correctly (reduced compared to what they should be)</target> | ||
7707 | <context-group purpose="location"> | 8009 | <context-group purpose="location"> |
7708 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8010 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7709 | <context context-type="linenumber">8</context> | 8011 | <context context-type="linenumber">8</context> |
7710 | </context-group> | 8012 | </context-group> |
7711 | </trans-unit><trans-unit id="565435193934699740" datatype="html"> | 8013 | </trans-unit> |
7712 | <source>Anti brute force system could be overzealous</source><target state="new">Anti brute force system could be overzealous</target> | 8014 | <trans-unit id="565435193934699740" datatype="html"> |
8015 | <source>Anti brute force system could be overzealous</source> | ||
8016 | <target state="new">Anti brute force system could be overzealous</target> | ||
7713 | <context-group purpose="location"> | 8017 | <context-group purpose="location"> |
7714 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8018 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7715 | <context context-type="linenumber">9</context> | 8019 | <context context-type="linenumber">9</context> |
7716 | </context-group> | 8020 | </context-group> |
7717 | </trans-unit><trans-unit id="4468853448271686046" datatype="html"> | 8021 | </trans-unit> |
7718 | <source>P2P system could not work correctly</source><target state="new">P2P system could not work correctly</target> | 8022 | <trans-unit id="4468853448271686046" datatype="html"> |
8023 | <source>P2P system could not work correctly</source> | ||
8024 | <target state="new">P2P system could not work correctly</target> | ||
7719 | <context-group purpose="location"> | 8025 | <context-group purpose="location"> |
7720 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8026 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7721 | <context context-type="linenumber">10</context> | 8027 | <context context-type="linenumber">10</context> |
7722 | </context-group> | 8028 | </context-group> |
7723 | </trans-unit><trans-unit id="5743050350352753869" datatype="html"> | 8029 | </trans-unit> |
7724 | <source>To fix it:</source><target state="new">To fix it:</target> | 8030 | <trans-unit id="5743050350352753869" datatype="html"> |
8031 | <source>To fix it:</source> | ||
8032 | <target state="new">To fix it:</target> | ||
7725 | <context-group purpose="location"> | 8033 | <context-group purpose="location"> |
7726 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8034 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7727 | <context context-type="linenumber">13</context> | 8035 | <context context-type="linenumber">13</context> |
7728 | </context-group> | 8036 | </context-group> |
7729 | </trans-unit><trans-unit id="1285026053775066761" datatype="html"> | 8037 | </trans-unit> |
7730 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source><target state="new">Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</target> | 8038 | <trans-unit id="1285026053775066761" datatype="html"> |
8039 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> | ||
8040 | <target state="new">Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</target> | ||
7731 | <context-group purpose="location"> | 8041 | <context-group purpose="location"> |
7732 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8042 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7733 | <context context-type="linenumber">15</context> | 8043 | <context context-type="linenumber">15</context> |
7734 | </context-group> | 8044 | </context-group> |
7735 | </trans-unit><trans-unit id="7014275542536964627" datatype="html"> | 8045 | </trans-unit> |
7736 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source><target state="new">If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> | 8046 | <trans-unit id="7014275542536964627" datatype="html"> |
8047 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> | ||
8048 | <target state="new">If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> | ||
7737 | <context-group purpose="location"> | 8049 | <context-group purpose="location"> |
7738 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 8050 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7739 | <context context-type="linenumber">16,17</context> | 8051 | <context context-type="linenumber">16,17</context> |
@@ -7742,54 +8054,60 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7742 | <trans-unit id="7591870443991978948" datatype="html"> | 8054 | <trans-unit id="7591870443991978948" datatype="html"> |
7743 | <source>Last week</source> | 8055 | <source>Last week</source> |
7744 | <target state="new">Last week</target> | 8056 | <target state="new">Last week</target> |
7745 | 8057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8058 | </trans-unit> |
7747 | <trans-unit id="4981709795568846080" datatype="html"> | 8059 | <trans-unit id="4981709795568846080" datatype="html"> |
7748 | <source>Last day</source> | 8060 | <source>Last day</source> |
7749 | <target state="new">Last day</target> | 8061 | <target state="new">Last day</target> |
7750 | 8062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">101</context></context-group> | |
7751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 8063 | </trans-unit> |
7752 | <trans-unit id="9178360613965745088" datatype="html"> | 8064 | <trans-unit id="9178360613965745088" datatype="html"> |
7753 | <source>Last hour</source> | 8065 | <source>Last hour</source> |
7754 | <target state="new">Last hour</target> | 8066 | <target state="new">Last hour</target> |
7755 | 8067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">106</context></context-group> | |
7756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 8068 | </trans-unit> |
7757 | <trans-unit id="3164845764519833078" datatype="html"> | 8069 | <trans-unit id="3164845764519833078" datatype="html"> |
7758 | <source>debug</source> | 8070 | <source>debug</source> |
7759 | <target state="new">debug</target> | 8071 | <target state="new">debug</target> |
7760 | 8072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 8073 | </trans-unit> |
7762 | <trans-unit id="4279081882680795350" datatype="html"> | 8074 | <trans-unit id="4279081882680795350" datatype="html"> |
7763 | <source>info</source> | 8075 | <source>info</source> |
7764 | <target state="new">info</target> | 8076 | <target state="new">info</target> |
7765 | 8077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">122</context></context-group> | |
7766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 8078 | </trans-unit> |
7767 | <trans-unit id="3379167598974960777" datatype="html"> | 8079 | <trans-unit id="3379167598974960777" datatype="html"> |
7768 | <source>warning</source> | 8080 | <source>warning</source> |
7769 | <target state="new">warning</target> | 8081 | <target state="new">warning</target> |
7770 | 8082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">126</context></context-group> | |
7771 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8083 | </trans-unit> |
7772 | <trans-unit id="8772116786769251214" datatype="html"> | 8084 | <trans-unit id="8772116786769251214" datatype="html"> |
7773 | <source>error</source> | 8085 | <source>error</source> |
7774 | <target state="new">error</target> | 8086 | <target state="new">error</target> |
7775 | 8087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">130</context></context-group> | |
7776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> | 8088 | </trans-unit> |
7777 | <trans-unit id="3422890808980876594" datatype="html"> | 8089 | <trans-unit id="3422890808980876594" datatype="html"> |
7778 | <source>Debug</source> | 8090 | <source>Debug</source> |
7779 | <target state="new">Debug</target> | 8091 | <target state="new">Debug</target> |
7780 | 8092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">170</context></context-group> | |
7781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">170</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">46</context></context-group> |
8094 | </trans-unit> | ||
7782 | <trans-unit id="314315645942131479" datatype="html"> | 8095 | <trans-unit id="314315645942131479" datatype="html"> |
7783 | <source>Info</source> | 8096 | <source>Info</source> |
7784 | <target state="new">Info</target> | 8097 | <target state="new">Info</target> |
7785 | 8098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">41</context></context-group> | |
7786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="4116911651502837995" datatype="html"> | 8099 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group> |
7787 | <source>Files</source><target state="new">Files</target> | 8100 | </trans-unit> |
7788 | 8101 | <trans-unit id="4116911651502837995" datatype="html"> | |
7789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="4767765747214995164" datatype="html"> | 8102 | <source>Files</source> |
7790 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source><target state="new">Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> | 8103 | <target state="new">Files</target> |
7791 | 8104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
7792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 8105 | </trans-unit> |
8106 | <trans-unit id="4767765747214995164" datatype="html"> | ||
8107 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | ||
8108 | <target state="new">Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> | ||
8109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group> | ||
8110 | </trans-unit> | ||
7793 | <trans-unit id="6759205696902713848" datatype="html"> | 8111 | <trans-unit id="6759205696902713848" datatype="html"> |
7794 | <source>Warning</source> | 8112 | <source>Warning</source> |
7795 | <target state="new">Warning</target> | 8113 | <target state="new">Warning</target> |
@@ -7798,264 +8116,289 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7798 | <trans-unit id="1519954996184640001" datatype="html"> | 8116 | <trans-unit id="1519954996184640001" datatype="html"> |
7799 | <source>Error</source> | 8117 | <source>Error</source> |
7800 | <target state="new">Error</target> | 8118 | <target state="new">Error</target> |
7801 | 8119 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">105</context></context-group> | |
7802 | 8120 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | |
7803 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 8121 | </trans-unit> |
7804 | <trans-unit id="5076187961693950167" datatype="html"> | 8122 | <trans-unit id="5076187961693950167" datatype="html"> |
7805 | <source>Standard logs</source> | 8123 | <source>Standard logs</source> |
7806 | <target state="new">Standard logs</target> | 8124 | <target state="new">Standard logs</target> |
7807 | 8125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">141</context></context-group> | |
7808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 8126 | </trans-unit> |
7809 | <trans-unit id="4737341634746310376" datatype="html"> | 8127 | <trans-unit id="4737341634746310376" datatype="html"> |
7810 | <source>Audit logs</source> | 8128 | <source>Audit logs</source> |
7811 | <target state="new">Audit logs</target> | 8129 | <target state="new">Audit logs</target> |
7812 | 8130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">145</context></context-group> | |
7813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 8131 | </trans-unit> |
7814 | <trans-unit id="1886888801485703107" datatype="html"> | 8132 | <trans-unit id="1886888801485703107" datatype="html"> |
7815 | <source>User <x id="PH"/> created.</source> | 8133 | <source>User <x id="PH"/> created.</source> |
7816 | <target state="new">User | 8134 | <target state="new">User |
7817 | <x id="PH"/> created. | 8135 | <x id="PH"/> created. |
7818 | </target> | 8136 | </target> |
7819 | 8137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">78</context></context-group> | |
7820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8138 | </trans-unit> |
7821 | <trans-unit id="8286337167859377104" datatype="html"> | 8139 | <trans-unit id="8286337167859377104" datatype="html"> |
7822 | <source>Create user</source> | 8140 | <source>Create user</source> |
7823 | <target state="new">Create user</target> | 8141 | <target state="new">Create user</target> |
7824 | 8142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">97</context></context-group> | |
7825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">97</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">25</context></context-group> |
8144 | </trans-unit> | ||
7826 | <trans-unit id="7098180453085889026" datatype="html"> | 8145 | <trans-unit id="7098180453085889026" datatype="html"> |
7827 | <source>Blocked videos</source> | 8146 | <source>Blocked videos</source> |
7828 | <target state="new">Blocked videos</target> | 8147 | <target state="new">Blocked videos</target> |
7829 | 8148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">66</context></context-group> | |
7830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 8149 | </trans-unit> |
7831 | <trans-unit id="7805059636749367886" datatype="html"> | 8150 | <trans-unit id="7805059636749367886" datatype="html"> |
7832 | <source>Muted instances</source> | 8151 | <source>Muted instances</source> |
7833 | <target state="new">Muted instances</target> | 8152 | <target state="new">Muted instances</target> |
7834 | 8153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">101</context></context-group> | |
7835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 8154 | </trans-unit> |
7836 | <trans-unit id="5974506725502681113" datatype="html"> | 8155 | <trans-unit id="5974506725502681113" datatype="html"> |
7837 | <source>Password changed for user <x id="PH"/>.</source> | 8156 | <source>Password changed for user <x id="PH"/>.</source> |
7838 | <target state="new">Password changed for user | 8157 | <target state="new">Password changed for user |
7839 | <x id="PH"/>. | 8158 | <x id="PH"/>. |
7840 | </target> | 8159 | </target> |
7841 | 8160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">41</context></context-group> | |
7842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8161 | </trans-unit> |
7843 | <trans-unit id="149953821752893163" datatype="html"> | 8162 | <trans-unit id="149953821752893163" datatype="html"> |
7844 | <source>Update user password</source> | 8163 | <source>Update user password</source> |
7845 | <target state="new">Update user password</target> | 8164 | <target state="new">Update user password</target> |
7846 | 8165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | 8166 | </trans-unit> |
7848 | |||
7849 | |||
7850 | <trans-unit id="780323526182667308" datatype="html"> | 8167 | <trans-unit id="780323526182667308" datatype="html"> |
7851 | <source>User <x id="PH"/> updated.</source> | 8168 | <source>User <x id="PH"/> updated.</source> |
7852 | <target state="new">User | 8169 | <target state="new">User |
7853 | <x id="PH"/> updated. | 8170 | <x id="PH"/> updated. |
7854 | </target> | 8171 | </target> |
7855 | 8172 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
7856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 8173 | </trans-unit> |
7857 | <trans-unit id="1349763489797682899" datatype="html"> | 8174 | <trans-unit id="1349763489797682899" datatype="html"> |
7858 | <source>Update user</source> | 8175 | <source>Update user</source> |
7859 | <target state="new">Update user</target> | 8176 | <target state="new">Update user</target> |
7860 | 8177 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">113</context></context-group> | |
7861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 8178 | </trans-unit> |
7862 | <trans-unit id="8819563010322372715" datatype="html"> | 8179 | <trans-unit id="8819563010322372715" datatype="html"> |
7863 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 8180 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
7864 | <target state="new">An email asking for password reset has been sent to | 8181 | <target state="new">An email asking for password reset has been sent to |
7865 | <x id="PH"/>. | 8182 | <x id="PH"/>. |
7866 | </target> | 8183 | </target> |
7867 | 8184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">120</context></context-group> | |
7868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | 8185 | </trans-unit> |
7869 | <trans-unit id="7483807629538115183" datatype="html"> | 8186 | <trans-unit id="7483807629538115183" datatype="html"> |
7870 | <source>Users list</source> | 8187 | <source>Users list</source> |
7871 | <target state="new">Users list</target> | 8188 | <target state="new">Users list</target> |
7872 | 8189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/users.routes.ts</context><context context-type="linenumber">25</context></context-group> | |
7873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/users.routes.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8190 | </trans-unit> |
7874 | <trans-unit id="1525334987774465166" datatype="html"> | 8191 | <trans-unit id="1525334987774465166" datatype="html"> |
7875 | <source>Create a user</source> | 8192 | <source>Create a user</source> |
7876 | <target state="new">Create a user</target> | 8193 | <target state="new">Create a user</target> |
7877 | 8194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/users.routes.ts</context><context context-type="linenumber">34</context></context-group> | |
7878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/users.routes.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8195 | </trans-unit> |
7879 | <trans-unit id="5552039423287890133" datatype="html"> | 8196 | <trans-unit id="5552039423287890133" datatype="html"> |
7880 | <source>Update a user</source> | 8197 | <source>Update a user</source> |
7881 | <target state="new">Update a user</target> | 8198 | <target state="new">Update a user</target> |
7882 | 8199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/users.routes.ts</context><context context-type="linenumber">43</context></context-group> | |
7883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/users.routes.ts</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="2005509140164856243" datatype="html"> | 8200 | </trans-unit> |
7884 | <source>Video type</source><target state="new">Video type</target> | 8201 | <trans-unit id="2005509140164856243" datatype="html"> |
7885 | 8202 | <source>Video type</source> | |
7886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="1878553503929537171" datatype="html"> | 8203 | <target state="new">Video type</target> |
7887 | <source>VOD</source><target state="new">VOD</target> | 8204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">45</context></context-group> |
7888 | 8205 | </trans-unit> | |
7889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">49</context></context-group></trans-unit><trans-unit id="8610504659433544583" datatype="html"> | 8206 | <trans-unit id="1878553503929537171" datatype="html"> |
7890 | <source>Live</source><target state="new">Live</target> | 8207 | <source>VOD</source> |
7891 | 8208 | <target state="new">VOD</target> | |
7892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">53</context></context-group></trans-unit><trans-unit id="545237611115823456" datatype="html"> | 8209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">49</context></context-group> |
7893 | <source>Video files</source><target state="new">Video files</target> | 8210 | </trans-unit> |
7894 | 8211 | <trans-unit id="8610504659433544583" datatype="html"> | |
7895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">59</context></context-group></trans-unit><trans-unit id="5876109550513228304" datatype="html"> | 8212 | <source>Live</source> |
7896 | <source>With WebTorrent</source><target state="new">With WebTorrent</target> | 8213 | <target state="new">Live</target> |
7897 | 8214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">53</context></context-group> | |
7898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit><trans-unit id="9036202975131076885" datatype="html"> | 8215 | </trans-unit> |
7899 | <source>Without WebTorrent</source><target state="new">Without WebTorrent</target> | 8216 | <trans-unit id="545237611115823456" datatype="html"> |
7900 | 8217 | <source>Video files</source> | |
7901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit><trans-unit id="7468888924775619361" datatype="html"> | 8218 | <target state="new">Video files</target> |
7902 | <source>With HLS</source><target state="new">With HLS</target> | 8219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">59</context></context-group> |
7903 | 8220 | </trans-unit> | |
7904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="5489331826268601489" datatype="html"> | 8221 | <trans-unit id="5876109550513228304" datatype="html"> |
7905 | <source>Without HLS</source><target state="new">Without HLS</target> | 8222 | <source>With WebTorrent</source> |
7906 | 8223 | <target state="new">With WebTorrent</target> | |
7907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit><trans-unit id="7091163288887549392" datatype="html"> | 8224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">63</context></context-group> |
7908 | <source>Videos scope</source><target state="new">Videos scope</target> | 8225 | </trans-unit> |
7909 | 8226 | <trans-unit id="9036202975131076885" datatype="html"> | |
7910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">81</context></context-group></trans-unit><trans-unit id="1144415254281227966" datatype="html"> | 8227 | <source>Without WebTorrent</source> |
7911 | <source>Remote videos</source><target state="new">Remote videos</target> | 8228 | <target state="new">Without WebTorrent</target> |
7912 | 8229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">67</context></context-group> | |
7913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 8230 | </trans-unit> |
8231 | <trans-unit id="7468888924775619361" datatype="html"> | ||
8232 | <source>With HLS</source> | ||
8233 | <target state="new">With HLS</target> | ||
8234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">71</context></context-group> | ||
8235 | </trans-unit> | ||
8236 | <trans-unit id="5489331826268601489" datatype="html"> | ||
8237 | <source>Without HLS</source> | ||
8238 | <target state="new">Without HLS</target> | ||
8239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">75</context></context-group> | ||
8240 | </trans-unit> | ||
8241 | <trans-unit id="7091163288887549392" datatype="html"> | ||
8242 | <source>Videos scope</source> | ||
8243 | <target state="new">Videos scope</target> | ||
8244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">81</context></context-group> | ||
8245 | </trans-unit> | ||
8246 | <trans-unit id="1144415254281227966" datatype="html"> | ||
8247 | <source>Remote videos</source> | ||
8248 | <target state="new">Remote videos</target> | ||
8249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">85</context></context-group> | ||
8250 | </trans-unit> | ||
7914 | <trans-unit id="8564701209009684429" datatype="html"> | 8251 | <trans-unit id="8564701209009684429" datatype="html"> |
7915 | <source>Federation</source> | 8252 | <source>Federation</source> |
7916 | <target state="new">Federation</target> | 8253 | <target state="new">Federation</target> |
7917 | 8254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">72</context></context-group> | |
7918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 8255 | </trans-unit> |
7919 | |||
7920 | |||
7921 | <trans-unit id="3767259920053407667" datatype="html"> | 8256 | <trans-unit id="3767259920053407667" datatype="html"> |
7922 | <source>Videos will be deleted, comments will be tombstoned.</source> | 8257 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7923 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> | 8258 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> |
7924 | 8259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7925 | 8260 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">345</context></context-group> | |
7926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> | 8261 | </trans-unit> |
7927 | <trans-unit id="4209525355702493436" datatype="html"> | 8262 | <trans-unit id="4209525355702493436" datatype="html"> |
7928 | <source>Ban</source> | 8263 | <source>Ban</source> |
7929 | <target state="new">Ban</target> | 8264 | <target state="new">Ban</target> |
7930 | 8265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
7931 | 8266 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">350</context></context-group> | |
7932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">350</context></context-group></trans-unit> | 8267 | </trans-unit> |
7933 | <trans-unit id="3855396975723886053" datatype="html"> | 8268 | <trans-unit id="3855396975723886053" datatype="html"> |
7934 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 8269 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7935 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> | 8270 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> |
7936 | 8271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">102</context></context-group> | |
7937 | 8272 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group> | |
7938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 8273 | </trans-unit> |
7939 | <trans-unit id="4451482225013335720" datatype="html"> | 8274 | <trans-unit id="4451482225013335720" datatype="html"> |
7940 | <source>Unban</source> | 8275 | <source>Unban</source> |
7941 | <target state="new">Unban</target> | 8276 | <target state="new">Unban</target> |
7942 | 8277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">107</context></context-group> | |
7943 | 8278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | |
7944 | 8279 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | |
7945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 8280 | </trans-unit> |
7946 | <trans-unit id="7210277223053877333" datatype="html"> | 8281 | <trans-unit id="7210277223053877333" datatype="html"> |
7947 | <source>Set Email as Verified</source> | 8282 | <source>Set Email as Verified</source> |
7948 | <target state="new">Set Email as Verified</target> | 8283 | <target state="new">Set Email as Verified</target> |
7949 | 8284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7950 | 8285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">362</context></context-group> | |
7951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">362</context></context-group></trans-unit><trans-unit id="4207916966377787111" datatype="html"> | 8286 | </trans-unit> |
7952 | <source>Created</source><target state="new">Created</target> | 8287 | <trans-unit id="4207916966377787111" datatype="html"> |
7953 | 8288 | <source>Created</source> | |
7954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit><trans-unit id="8140268298586972139" datatype="html"> | 8289 | <target state="new">Created</target> |
7955 | <source>Daily quota</source><target state="new">Daily quota</target> | 8290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">129</context></context-group> |
7956 | 8291 | </trans-unit> | |
7957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit><trans-unit id="7910076708497708162" datatype="html"> | 8292 | <trans-unit id="8140268298586972139" datatype="html"> |
7958 | <source>Last login</source><target state="new">Last login</target> | 8293 | <source>Daily quota</source> |
7959 | 8294 | <target state="new">Daily quota</target> | |
7960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 8295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">134</context></context-group> |
8296 | </trans-unit> | ||
8297 | <trans-unit id="7910076708497708162" datatype="html"> | ||
8298 | <source>Last login</source> | ||
8299 | <target state="new">Last login</target> | ||
8300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">136</context></context-group> | ||
8301 | </trans-unit> | ||
7961 | <trans-unit id="3403978719736970622" datatype="html"> | 8302 | <trans-unit id="3403978719736970622" datatype="html"> |
7962 | <source>You cannot ban root.</source> | 8303 | <source>You cannot ban root.</source> |
7963 | <target state="new">You cannot ban root.</target> | 8304 | <target state="new">You cannot ban root.</target> |
7964 | 8305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">173</context></context-group> | |
7965 | 8306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">71</context></context-group> | |
7966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">173</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8307 | </trans-unit> |
7967 | <trans-unit id="4884272193574287483" datatype="html"> | 8308 | <trans-unit id="4884272193574287483" datatype="html"> |
7968 | <source>Do you really want to unban <x id="PH"/> users?</source> | 8309 | <source>Do you really want to unban <x id="PH"/> users?</source> |
7969 | <target state="new">Do you really want to unban | 8310 | <target state="new">Do you really want to unban |
7970 | <x id="PH"/> users? | 8311 | <x id="PH"/> users? |
7971 | </target> | 8312 | </target> |
7972 | 8313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | |
7973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 8314 | </trans-unit> |
7974 | <trans-unit id="8712248120167780385" datatype="html"> | 8315 | <trans-unit id="8712248120167780385" datatype="html"> |
7975 | <source><x id="PH"/> users unbanned. </source> | 8316 | <source><x id="PH"/> users unbanned. </source> |
7976 | <target state="new"> | 8317 | <target state="new"> |
7977 | <x id="PH"/> users unbanned. | 8318 | <x id="PH"/> users unbanned. |
7978 | </target> | 8319 | </target> |
7979 | 8320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">192</context></context-group> | |
7980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 8321 | </trans-unit> |
7981 | <trans-unit id="5325873477837320044" datatype="html"> | 8322 | <trans-unit id="5325873477837320044" datatype="html"> |
7982 | <source>You cannot delete root.</source> | 8323 | <source>You cannot delete root.</source> |
7983 | <target state="new">You cannot delete root.</target> | 8324 | <target state="new">You cannot delete root.</target> |
7984 | 8325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">203</context></context-group> | |
7985 | 8326 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">99</context></context-group> | |
7986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">203</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 8327 | </trans-unit> |
7987 | <trans-unit id="4086135983283545219" datatype="html"> | 8328 | <trans-unit id="4086135983283545219" datatype="html"> |
7988 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 8329 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
7989 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> | 8330 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> |
7990 | 8331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group> | |
7991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 8332 | </trans-unit> |
7992 | <trans-unit id="7166936623843420016" datatype="html"> | 8333 | <trans-unit id="7166936623843420016" datatype="html"> |
7993 | <source><x id="PH"/> users deleted. </source> | 8334 | <source><x id="PH"/> users deleted. </source> |
7994 | <target state="new"> | 8335 | <target state="new"> |
7995 | <x id="PH"/> users deleted. | 8336 | <x id="PH"/> users deleted. |
7996 | </target> | 8337 | </target> |
7997 | 8338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">215</context></context-group> | |
7998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 8339 | </trans-unit> |
7999 | <trans-unit id="8360664597512051242" datatype="html"> | 8340 | <trans-unit id="8360664597512051242" datatype="html"> |
8000 | <source><x id="PH"/> users email set as verified. </source> | 8341 | <source><x id="PH"/> users email set as verified. </source> |
8001 | <target state="new"> | 8342 | <target state="new"> |
8002 | <x id="PH"/> users email set as verified. | 8343 | <x id="PH"/> users email set as verified. |
8003 | </target> | 8344 | </target> |
8004 | 8345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">227</context></context-group> | |
8005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 8346 | </trans-unit> |
8006 | <trans-unit id="7390990800435887351" datatype="html"> | 8347 | <trans-unit id="7390990800435887351" datatype="html"> |
8007 | <source>Account <x id="PH"/> unmuted.</source> | 8348 | <source>Account <x id="PH"/> unmuted.</source> |
8008 | <target state="new">Account | 8349 | <target state="new">Account |
8009 | <x id="PH"/> unmuted. | 8350 | <x id="PH"/> unmuted. |
8010 | </target> | 8351 | </target> |
8011 | 8352 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group> | |
8012 | 8353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group> | |
8013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 8354 | </trans-unit> |
8014 | <trans-unit id="7246356397085094208" datatype="html"> | 8355 | <trans-unit id="7246356397085094208" datatype="html"> |
8015 | <source>Instance <x id="PH"/> unmuted.</source> | 8356 | <source>Instance <x id="PH"/> unmuted.</source> |
8016 | <target state="new">Instance | 8357 | <target state="new">Instance |
8017 | <x id="PH"/> unmuted. | 8358 | <x id="PH"/> unmuted. |
8018 | </target> | 8359 | </target> |
8019 | 8360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> | |
8020 | 8361 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group> | |
8021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group></trans-unit> | 8362 | </trans-unit> |
8022 | <trans-unit id="5551551295632950210" datatype="html"> | 8363 | <trans-unit id="5551551295632950210" datatype="html"> |
8023 | <source>Videos history is enabled</source> | 8364 | <source>Videos history is enabled</source> |
8024 | <target state="new">Videos history is enabled</target> | 8365 | <target state="new">Videos history is enabled</target> |
8025 | 8366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">96</context></context-group> | |
8026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8367 | </trans-unit> |
8027 | <trans-unit id="9136227503281311926" datatype="html"> | 8368 | <trans-unit id="9136227503281311926" datatype="html"> |
8028 | <source>Videos history is disabled</source> | 8369 | <source>Videos history is disabled</source> |
8029 | <target state="new">Videos history is disabled</target> | 8370 | <target state="new">Videos history is disabled</target> |
8030 | 8371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">97</context></context-group> | |
8031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 8372 | </trans-unit> |
8032 | <trans-unit id="8966726118414892732" datatype="html"> | 8373 | <trans-unit id="8966726118414892732" datatype="html"> |
8033 | <source>Delete videos history</source> | 8374 | <source>Delete videos history</source> |
8034 | <target state="new">Delete videos history</target> | 8375 | <target state="new">Delete videos history</target> |
8035 | 8376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group> | |
8036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | 8377 | </trans-unit> |
8037 | <trans-unit id="2482543433481435105" datatype="html"> | 8378 | <trans-unit id="2482543433481435105" datatype="html"> |
8038 | <source>Are you sure you want to delete all your videos history?</source> | 8379 | <source>Are you sure you want to delete all your videos history?</source> |
8039 | <target state="new">Are you sure you want to delete all your videos history?</target> | 8380 | <target state="new">Are you sure you want to delete all your videos history?</target> |
8040 | 8381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">121</context></context-group> | |
8041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 8382 | </trans-unit> |
8042 | <trans-unit id="4051606152827088952" datatype="html"> | 8383 | <trans-unit id="4051606152827088952" datatype="html"> |
8043 | <source>Videos history deleted</source> | 8384 | <source>Videos history deleted</source> |
8044 | <target state="new">Videos history deleted</target> | 8385 | <target state="new">Videos history deleted</target> |
8045 | 8386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8387 | </trans-unit> |
8047 | <trans-unit id="1486537403020619891" datatype="html"> | 8388 | <trans-unit id="1486537403020619891" datatype="html"> |
8048 | <source>My watch history</source> | 8389 | <source>My watch history</source> |
8049 | <target state="new">My watch history</target> | 8390 | <target state="new">My watch history</target> |
8050 | 8391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">3</context></context-group> | |
8051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">50</context></context-group> |
8052 | 8393 | </trans-unit> | |
8053 | <trans-unit id="3656932706364053858" datatype="html"> | 8394 | <trans-unit id="3656932706364053858" datatype="html"> |
8054 | <source>Track watch history</source> | 8395 | <source>Track watch history</source> |
8055 | <target state="new">Track watch history</target> | 8396 | <target state="new">Track watch history</target> |
8056 | 8397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> | |
8057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="778524577866863576" datatype="html"> | 8398 | </trans-unit> |
8058 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source><target state="new"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </target> | 8399 | <trans-unit id="778524577866863576" datatype="html"> |
8400 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> | ||
8401 | <target state="new"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </target> | ||
8059 | <context-group purpose="location"> | 8402 | <context-group purpose="location"> |
8060 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 8403 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
8061 | <context context-type="linenumber">17,19</context> | 8404 | <context context-type="linenumber">17,19</context> |
@@ -8064,8 +8407,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8064 | <trans-unit id="3183245287221165928" datatype="html"> | 8407 | <trans-unit id="3183245287221165928" datatype="html"> |
8065 | <source>Ownership accepted</source> | 8408 | <source>Ownership accepted</source> |
8066 | <target state="new">Ownership accepted</target> | 8409 | <target state="new">Ownership accepted</target> |
8067 | 8410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts</context><context context-type="linenumber">69</context></context-group> | |
8068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 8411 | </trans-unit> |
8069 | <trans-unit id="6012072687166259654" datatype="html"> | 8412 | <trans-unit id="6012072687166259654" datatype="html"> |
8070 | <source>Please check your emails to verify your new email.</source> | 8413 | <source>Please check your emails to verify your new email.</source> |
8071 | <target state="new">Please check your emails to verify your new email.</target> | 8414 | <target state="new">Please check your emails to verify your new email.</target> |
@@ -8077,46 +8420,52 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | 8420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> |
8078 | </trans-unit> | 8421 | </trans-unit> |
8079 | <trans-unit id="8553059323353586765" datatype="html"> | 8422 | <trans-unit id="8553059323353586765" datatype="html"> |
8080 | <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>"/>. It is never shown to the public. </source> | 8423 | <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>"/>. It is never shown to the public. </source> |
8081 | <target state="new"> 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>"/>. It is never shown to the public. | 8424 | <target state="new"> 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>"/>. It is never shown to the public. |
8082 | </target> | 8425 | </target> |
8083 | 8426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> | |
8084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 8427 | </trans-unit> |
8085 | <trans-unit id="853586874765134886" datatype="html"> | 8428 | <trans-unit id="853586874765134886" datatype="html"> |
8086 | <source>You current password is invalid.</source> | 8429 | <source>You current password is invalid.</source> |
8087 | <target state="new">You current password is invalid.</target> | 8430 | <target state="new">You current password is invalid.</target> |
8088 | 8431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">61</context></context-group> | |
8089 | 8432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">61</context></context-group> | |
8090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 8433 | </trans-unit> |
8091 | <trans-unit id="6159571046971090595" datatype="html"> | 8434 | <trans-unit id="6159571046971090595" datatype="html"> |
8092 | <source>Password updated.</source> | 8435 | <source>Password updated.</source> |
8093 | <target state="new">Password updated.</target> | 8436 | <target state="new">Password updated.</target> |
8094 | 8437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">53</context></context-group> | |
8095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 8438 | </trans-unit> |
8096 | |||
8097 | <trans-unit id="6897292459203320054" datatype="html"> | 8439 | <trans-unit id="6897292459203320054" datatype="html"> |
8098 | <source>Type your username to confirm</source> | 8440 | <source>Type your username to confirm</source> |
8099 | <target state="new">Type your username to confirm</target> | 8441 | <target state="new">Type your username to confirm</target> |
8100 | 8442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">29</context></context-group> | |
8101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 8443 | </trans-unit> |
8102 | <trans-unit id="3122895472333547524" datatype="html"> | 8444 | <trans-unit id="3122895472333547524" datatype="html"> |
8103 | <source>Delete your account</source> | 8445 | <source>Delete your account</source> |
8104 | <target state="new">Delete your account</target> | 8446 | <target state="new">Delete your account</target> |
8105 | 8447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group> | |
8106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="577064441120663273" datatype="html"> | 8448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">31</context></context-group> |
8107 | <source>Are you sure you want to delete your account?</source><target state="new">Are you sure you want to delete your account?</target> | 8449 | </trans-unit> |
8450 | <trans-unit id="577064441120663273" datatype="html"> | ||
8451 | <source>Are you sure you want to delete your account?</source> | ||
8452 | <target state="new">Are you sure you want to delete your account?</target> | ||
8108 | <context-group purpose="location"> | 8453 | <context-group purpose="location"> |
8109 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8454 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8110 | <context context-type="linenumber">22</context> | 8455 | <context context-type="linenumber">22</context> |
8111 | </context-group> | 8456 | </context-group> |
8112 | </trans-unit><trans-unit id="2740531699780274491" datatype="html"> | 8457 | </trans-unit> |
8113 | <source>This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</source><target state="new">This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</target> | 8458 | <trans-unit id="2740531699780274491" datatype="html"> |
8459 | <source>This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</source> | ||
8460 | <target state="new">This will delete all your data, including channels, videos, comments and you won't be able to create another user on this instance with "<x id="PH" equiv-text="this.user.username"/>" username.</target> | ||
8114 | <context-group purpose="location"> | 8461 | <context-group purpose="location"> |
8115 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8462 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8116 | <context context-type="linenumber">25</context> | 8463 | <context context-type="linenumber">25</context> |
8117 | </context-group> | 8464 | </context-group> |
8118 | </trans-unit><trans-unit id="5422897685524094185" datatype="html"> | 8465 | </trans-unit> |
8119 | <source>Content cached by other servers and other third-parties might make longer to be deleted.</source><target state="new">Content cached by other servers and other third-parties might make longer to be deleted.</target> | 8466 | <trans-unit id="5422897685524094185" datatype="html"> |
8467 | <source>Content cached by other servers and other third-parties might make longer to be deleted.</source> | ||
8468 | <target state="new">Content cached by other servers and other third-parties might make longer to be deleted.</target> | ||
8120 | <context-group purpose="location"> | 8469 | <context-group purpose="location"> |
8121 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> | 8470 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> |
8122 | <context context-type="linenumber">27</context> | 8471 | <context context-type="linenumber">27</context> |
@@ -8125,19 +8474,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8125 | <trans-unit id="2520605306994744004" datatype="html"> | 8474 | <trans-unit id="2520605306994744004" datatype="html"> |
8126 | <source>Delete my account</source> | 8475 | <source>Delete my account</source> |
8127 | <target state="new">Delete my account</target> | 8476 | <target state="new">Delete my account</target> |
8128 | 8477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group> | |
8129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8478 | </trans-unit> |
8130 | <trans-unit id="3902597758945766483" datatype="html"> | 8479 | <trans-unit id="3902597758945766483" datatype="html"> |
8131 | <source>Your account is deleted.</source> | 8480 | <source>Your account is deleted.</source> |
8132 | <target state="new">Your account is deleted.</target> | 8481 | <target state="new">Your account is deleted.</target> |
8133 | 8482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">39</context></context-group> | |
8134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 8483 | </trans-unit> |
8135 | <trans-unit id="4776289814033837037" datatype="html"> | 8484 | <trans-unit id="4776289814033837037" datatype="html"> |
8136 | <source>Interface settings updated.</source> | 8485 | <source>Interface settings updated.</source> |
8137 | <target state="new">Interface settings updated.</target> | 8486 | <target state="new">Interface settings updated.</target> |
8138 | 8487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">73</context></context-group> | |
8139 | 8488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">83</context></context-group> | |
8140 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 8489 | </trans-unit> |
8141 | <trans-unit id="77907918814566205" datatype="html"> | 8490 | <trans-unit id="77907918814566205" datatype="html"> |
8142 | <source>New video from your subscriptions</source> | 8491 | <source>New video from your subscriptions</source> |
8143 | <target state="new">New video from your subscriptions</target> | 8492 | <target state="new">New video from your subscriptions</target> |
@@ -8152,14 +8501,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8152 | <source>New abuse</source> | 8501 | <source>New abuse</source> |
8153 | <target state="new">New abuse</target> | 8502 | <target state="new">New abuse</target> |
8154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">34</context></context-group> | 8503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">34</context></context-group> |
8155 | </trans-unit><trans-unit id="5618790697446401830" datatype="html"> | 8504 | </trans-unit> |
8156 | <source>An automatically blocked video is awaiting review</source><target state="new">An automatically blocked video is awaiting review</target> | 8505 | <trans-unit id="5618790697446401830" datatype="html"> |
8506 | <source>An automatically blocked video is awaiting review</source> | ||
8507 | <target state="new">An automatically blocked video is awaiting review</target> | ||
8157 | <context-group purpose="location"> | 8508 | <context-group purpose="location"> |
8158 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8509 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8159 | <context context-type="linenumber">35</context> | 8510 | <context context-type="linenumber">35</context> |
8160 | </context-group> | 8511 | </context-group> |
8161 | </trans-unit> | 8512 | </trans-unit> |
8162 | |||
8163 | <trans-unit id="5671547068905553663" datatype="html"> | 8513 | <trans-unit id="5671547068905553663" datatype="html"> |
8164 | <source>One of your video is blocked/unblocked</source> | 8514 | <source>One of your video is blocked/unblocked</source> |
8165 | <target state="new">One of your video is blocked/unblocked</target> | 8515 | <target state="new">One of your video is blocked/unblocked</target> |
@@ -8209,26 +8559,34 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8209 | <source>One of your abuse reports has been accepted or rejected by moderators</source> | 8559 | <source>One of your abuse reports has been accepted or rejected by moderators</source> |
8210 | <target state="new">One of your abuse reports has been accepted or rejected by moderators</target> | 8560 | <target state="new">One of your abuse reports has been accepted or rejected by moderators</target> |
8211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">45</context></context-group> | 8561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">45</context></context-group> |
8212 | </trans-unit><trans-unit id="2764971902180889905" datatype="html"> | 8562 | </trans-unit> |
8213 | <source>A new PeerTube version is available</source><target state="new">A new PeerTube version is available</target> | 8563 | <trans-unit id="2764971902180889905" datatype="html"> |
8564 | <source>A new PeerTube version is available</source> | ||
8565 | <target state="new">A new PeerTube version is available</target> | ||
8214 | <context-group purpose="location"> | 8566 | <context-group purpose="location"> |
8215 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8567 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8216 | <context context-type="linenumber">46</context> | 8568 | <context context-type="linenumber">46</context> |
8217 | </context-group> | 8569 | </context-group> |
8218 | </trans-unit><trans-unit id="2560339336098442670" datatype="html"> | 8570 | </trans-unit> |
8219 | <source>One of your plugin/theme has a new available version</source><target state="new">One of your plugin/theme has a new available version</target> | 8571 | <trans-unit id="2560339336098442670" datatype="html"> |
8572 | <source>One of your plugin/theme has a new available version</source> | ||
8573 | <target state="new">One of your plugin/theme has a new available version</target> | ||
8220 | <context-group purpose="location"> | 8574 | <context-group purpose="location"> |
8221 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8575 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8222 | <context context-type="linenumber">47</context> | 8576 | <context context-type="linenumber">47</context> |
8223 | </context-group> | 8577 | </context-group> |
8224 | </trans-unit><trans-unit id="4579496777570550463" datatype="html"> | 8578 | </trans-unit> |
8225 | <source>Social</source><target state="new">Social</target> | 8579 | <trans-unit id="4579496777570550463" datatype="html"> |
8580 | <source>Social</source> | ||
8581 | <target state="new">Social</target> | ||
8226 | <context-group purpose="location"> | 8582 | <context-group purpose="location"> |
8227 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8583 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8228 | <context context-type="linenumber">51</context> | 8584 | <context context-type="linenumber">51</context> |
8229 | </context-group> | 8585 | </context-group> |
8230 | </trans-unit><trans-unit id="1852164487280647902" datatype="html"> | 8586 | </trans-unit> |
8231 | <source>Your videos</source><target state="new">Your videos</target> | 8587 | <trans-unit id="1852164487280647902" datatype="html"> |
8588 | <source>Your videos</source> | ||
8589 | <target state="new">Your videos</target> | ||
8232 | <context-group purpose="location"> | 8590 | <context-group purpose="location"> |
8233 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8591 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
8234 | <context context-type="linenumber">60</context> | 8592 | <context context-type="linenumber">60</context> |
@@ -8237,13 +8595,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8237 | <trans-unit id="5095562193296630034" datatype="html"> | 8595 | <trans-unit id="5095562193296630034" datatype="html"> |
8238 | <source>Preferences saved</source> | 8596 | <source>Preferences saved</source> |
8239 | <target state="new">Preferences saved</target> | 8597 | <target state="new">Preferences saved</target> |
8240 | 8598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">134</context></context-group> | |
8241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 8599 | </trans-unit> |
8242 | <trans-unit id="4967231969832964676" datatype="html"> | 8600 | <trans-unit id="4967231969832964676" datatype="html"> |
8243 | <source>Profile updated.</source> | 8601 | <source>Profile updated.</source> |
8244 | <target state="new">Profile updated.</target> | 8602 | <target state="new">Profile updated.</target> |
8245 | 8603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">59</context></context-group> | |
8246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 8604 | </trans-unit> |
8247 | <trans-unit id="6721822899525405039" datatype="html"> | 8605 | <trans-unit id="6721822899525405039" datatype="html"> |
8248 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 8606 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
8249 | <target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | 8607 | <target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> |
@@ -8255,84 +8613,90 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8255 | <trans-unit id="3525866160632851851" datatype="html"> | 8613 | <trans-unit id="3525866160632851851" datatype="html"> |
8256 | <source>Avatar changed.</source> | 8614 | <source>Avatar changed.</source> |
8257 | <target state="new">Avatar changed.</target> | 8615 | <target state="new">Avatar changed.</target> |
8258 | 8616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">112</context></context-group> | |
8259 | 8617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group> | |
8260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 8618 | </trans-unit> |
8261 | <trans-unit id="8920809083620698740" datatype="html"> | 8619 | <trans-unit id="8920809083620698740" datatype="html"> |
8262 | <source>avatar</source> | 8620 | <source>avatar</source> |
8263 | <target state="new">avatar</target> | 8621 | <target state="new">avatar</target> |
8264 | 8622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">119</context></context-group> | |
8265 | 8623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group> | |
8266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 8624 | </trans-unit> |
8267 | <trans-unit id="2775050991871557896" datatype="html"> | 8625 | <trans-unit id="2775050991871557896" datatype="html"> |
8268 | <source>Avatar deleted.</source> | 8626 | <source>Avatar deleted.</source> |
8269 | <target state="new">Avatar deleted.</target> | 8627 | <target state="new">Avatar deleted.</target> |
8270 | 8628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8271 | 8629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">61</context></context-group> | |
8272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 8630 | </trans-unit> |
8273 | <trans-unit id="1233062525939746039" datatype="html"> | 8631 | <trans-unit id="1233062525939746039" datatype="html"> |
8274 | <source>Unknown language</source> | 8632 | <source>Unknown language</source> |
8275 | <target state="new">Unknown language</target> | 8633 | <target state="new">Unknown language</target> |
8276 | 8634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">42</context></context-group> | |
8277 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 8635 | </trans-unit> |
8278 | <trans-unit id="3761504852202418603" datatype="html"> | 8636 | <trans-unit id="3761504852202418603" datatype="html"> |
8279 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 8637 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
8280 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> | 8638 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> |
8281 | 8639 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">76</context></context-group> | |
8282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 8640 | </trans-unit> |
8283 | |||
8284 | <trans-unit id="3960396487495291449" datatype="html"> | 8641 | <trans-unit id="3960396487495291449" datatype="html"> |
8285 | <source>Video settings updated.</source> | 8642 | <source>Video settings updated.</source> |
8286 | <target state="new">Video settings updated.</target> | 8643 | <target state="new">Video settings updated.</target> |
8287 | 8644 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">121</context></context-group> | |
8288 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 8645 | </trans-unit> |
8289 | <trans-unit id="3326446048041727269" datatype="html"> | 8646 | <trans-unit id="3326446048041727269" datatype="html"> |
8290 | <source>Display/Video settings updated.</source> | 8647 | <source>Display/Video settings updated.</source> |
8291 | <target state="new">Display/Video settings updated.</target> | 8648 | <target state="new">Display/Video settings updated.</target> |
8292 | 8649 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">130</context></context-group> | |
8293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> | 8650 | </trans-unit> |
8294 | <trans-unit id="1137937154872046253" datatype="html"> | 8651 | <trans-unit id="1137937154872046253" datatype="html"> |
8295 | <source>Video channel <x id="PH"/> created.</source> | 8652 | <source>Video channel <x id="PH"/> created.</source> |
8296 | <target state="new">Video channel | 8653 | <target state="new">Video channel |
8297 | <x id="PH"/> created. | 8654 | <x id="PH"/> created. |
8298 | </target> | 8655 | </target> |
8299 | 8656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> | |
8300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 8657 | </trans-unit> |
8301 | <trans-unit id="8723777130353305761" datatype="html"> | 8658 | <trans-unit id="8723777130353305761" datatype="html"> |
8302 | <source>This name already exists on this instance.</source> | 8659 | <source>This name already exists on this instance.</source> |
8303 | <target state="new">This name already exists on this instance.</target> | 8660 | <target state="new">This name already exists on this instance.</target> |
8304 | 8661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group> | |
8305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 8662 | </trans-unit> |
8306 | <trans-unit id="7589345916094713536" datatype="html"> | 8663 | <trans-unit id="7589345916094713536" datatype="html"> |
8307 | <source>Video channel <x id="PH"/> updated.</source> | 8664 | <source>Video channel <x id="PH"/> updated.</source> |
8308 | <target state="new">Video channel | 8665 | <target state="new">Video channel |
8309 | <x id="PH"/> updated. | 8666 | <x id="PH"/> updated. |
8310 | </target> | 8667 | </target> |
8311 | 8668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">97</context></context-group> | |
8312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit><trans-unit id="8407755843502300957" datatype="html"> | 8669 | </trans-unit> |
8313 | <source>Banner changed.</source><target state="new">Banner changed.</target> | 8670 | <trans-unit id="8407755843502300957" datatype="html"> |
8314 | 8671 | <source>Banner changed.</source> | |
8315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit><trans-unit id="689638706960732906" datatype="html"> | 8672 | <target state="new">Banner changed.</target> |
8316 | <source>banner</source><target state="new">banner</target> | 8673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">142</context></context-group> |
8317 | 8674 | </trans-unit> | |
8318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit><trans-unit id="3230561499965076671" datatype="html"> | 8675 | <trans-unit id="689638706960732906" datatype="html"> |
8319 | <source>Banner deleted.</source><target state="new">Banner deleted.</target> | 8676 | <source>banner</source> |
8320 | 8677 | <target state="new">banner</target> | |
8321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">159</context></context-group></trans-unit> | 8678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">149</context></context-group> |
8322 | 8679 | </trans-unit> | |
8680 | <trans-unit id="3230561499965076671" datatype="html"> | ||
8681 | <source>Banner deleted.</source> | ||
8682 | <target state="new">Banner deleted.</target> | ||
8683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">159</context></context-group> | ||
8684 | </trans-unit> | ||
8323 | <trans-unit id="624066830180032195" datatype="html"> | 8685 | <trans-unit id="624066830180032195" datatype="html"> |
8324 | <source>Video channel <x id="PH"/> deleted.</source> | 8686 | <source>Video channel <x id="PH"/> deleted.</source> |
8325 | <target state="new">Video channel | 8687 | <target state="new">Video channel |
8326 | <x id="PH"/> deleted. | 8688 | <x id="PH"/> deleted. |
8327 | </target> | 8689 | </target> |
8328 | 8690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">60</context></context-group> | |
8329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 8691 | </trans-unit> |
8330 | <trans-unit id="6450826648284332649" datatype="html"> | 8692 | <trans-unit id="6450826648284332649" datatype="html"> |
8331 | <source>Views for the day</source> | 8693 | <source>Views for the day</source> |
8332 | <target state="new">Views for the day</target> | 8694 | <target state="new">Views for the day</target> |
8333 | 8695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">88</context></context-group> | |
8334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">88</context></context-group></trans-unit><trans-unit id="7440637814928143808" datatype="html"> | 8696 | </trans-unit> |
8335 | <source>My followers</source><target state="new">My followers</target> | 8697 | <trans-unit id="7440637814928143808" datatype="html"> |
8698 | <source>My followers</source> | ||
8699 | <target state="new">My followers</target> | ||
8336 | <context-group purpose="location"> | 8700 | <context-group purpose="location"> |
8337 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> | 8701 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> |
8338 | <context context-type="linenumber">4</context> | 8702 | <context context-type="linenumber">4</context> |
@@ -8341,32 +8705,42 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8341 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> | 8705 | <context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context> |
8342 | <context context-type="linenumber">108</context> | 8706 | <context context-type="linenumber">108</context> |
8343 | </context-group> | 8707 | </context-group> |
8344 | </trans-unit><trans-unit id="2521678336272309407" datatype="html"> | 8708 | </trans-unit> |
8345 | <source>No follower found.</source><target state="new">No follower found.</target> | 8709 | <trans-unit id="2521678336272309407" datatype="html"> |
8710 | <source>No follower found.</source> | ||
8711 | <target state="new">No follower found.</target> | ||
8346 | <context-group purpose="location"> | 8712 | <context-group purpose="location"> |
8347 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> | 8713 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> |
8348 | <context context-type="linenumber">13</context> | 8714 | <context context-type="linenumber">13</context> |
8349 | </context-group> | 8715 | </context-group> |
8350 | </trans-unit><trans-unit id="5294742063044966238" datatype="html"> | 8716 | </trans-unit> |
8351 | <source>Follower page</source><target state="new">Follower page</target> | 8717 | <trans-unit id="5294742063044966238" datatype="html"> |
8718 | <source>Follower page</source> | ||
8719 | <target state="new">Follower page</target> | ||
8352 | <context-group purpose="location"> | 8720 | <context-group purpose="location"> |
8353 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> | 8721 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> |
8354 | <context context-type="linenumber">20</context> | 8722 | <context context-type="linenumber">20</context> |
8355 | </context-group> | 8723 | </context-group> |
8356 | </trans-unit><trans-unit id="797409137967291468" datatype="html"> | 8724 | </trans-unit> |
8357 | <source>Is following all your channels</source><target state="new">Is following all your channels</target> | 8725 | <trans-unit id="797409137967291468" datatype="html"> |
8726 | <source>Is following all your channels</source> | ||
8727 | <target state="new">Is following all your channels</target> | ||
8358 | <context-group purpose="location"> | 8728 | <context-group purpose="location"> |
8359 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> | 8729 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> |
8360 | <context context-type="linenumber">26</context> | 8730 | <context context-type="linenumber">26</context> |
8361 | </context-group> | 8731 | </context-group> |
8362 | </trans-unit><trans-unit id="7940720844854710428" datatype="html"> | 8732 | </trans-unit> |
8363 | <source>Is following your channel <x id="INTERPOLATION" equiv-text="{{ follow.following.name }}"/></source><target state="new">Is following your channel <x id="INTERPOLATION" equiv-text="{{ follow.following.name }}"/></target> | 8733 | <trans-unit id="7940720844854710428" datatype="html"> |
8734 | <source>Is following your channel <x id="INTERPOLATION" equiv-text="{{ follow.following.name }}"/></source> | ||
8735 | <target state="new">Is following your channel <x id="INTERPOLATION" equiv-text="{{ follow.following.name }}"/></target> | ||
8364 | <context-group purpose="location"> | 8736 | <context-group purpose="location"> |
8365 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> | 8737 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.html</context> |
8366 | <context context-type="linenumber">27</context> | 8738 | <context context-type="linenumber">27</context> |
8367 | </context-group> | 8739 | </context-group> |
8368 | </trans-unit><trans-unit id="1716062177529601456" datatype="html"> | 8740 | </trans-unit> |
8369 | <source>Channel filters</source><target state="new">Channel filters</target> | 8741 | <trans-unit id="1716062177529601456" datatype="html"> |
8742 | <source>Channel filters</source> | ||
8743 | <target state="new">Channel filters</target> | ||
8370 | <context-group purpose="location"> | 8744 | <context-group purpose="location"> |
8371 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.ts</context> | 8745 | <context context-type="sourcefile">src/app/+my-library/my-follows/my-followers.component.ts</context> |
8372 | <context context-type="linenumber">49</context> | 8746 | <context context-type="linenumber">49</context> |
@@ -8379,8 +8753,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8379 | <trans-unit id="6059091237492573541" datatype="html"> | 8753 | <trans-unit id="6059091237492573541" datatype="html"> |
8380 | <source>Update video channel</source> | 8754 | <source>Update video channel</source> |
8381 | <target state="new">Update video channel</target> | 8755 | <target state="new">Update video channel</target> |
8382 | 8756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">21</context></context-group> | |
8383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8757 | </trans-unit> |
8384 | <trans-unit id="6595008830732269870" datatype="html"> | 8758 | <trans-unit id="6595008830732269870" datatype="html"> |
8385 | <source>Not found</source> | 8759 | <source>Not found</source> |
8386 | <target state="new">Not found</target> | 8760 | <target state="new">Not found</target> |
@@ -8401,8 +8775,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8401 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 8775 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
8402 | <context context-type="linenumber">48</context> | 8776 | <context context-type="linenumber">48</context> |
8403 | </context-group> | 8777 | </context-group> |
8404 | </trans-unit><trans-unit id="1636934520301910285" datatype="html"> | 8778 | </trans-unit> |
8405 | <source>Reset password</source><target state="new">Reset password</target> | 8779 | <trans-unit id="1636934520301910285" datatype="html"> |
8780 | <source>Reset password</source> | ||
8781 | <target state="new">Reset password</target> | ||
8406 | <context-group purpose="location"> | 8782 | <context-group purpose="location"> |
8407 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> | 8783 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> |
8408 | <context context-type="linenumber">11</context> | 8784 | <context context-type="linenumber">11</context> |
@@ -8421,32 +8797,40 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8421 | <target state="new">Playlist | 8797 | <target state="new">Playlist |
8422 | <x id="PH"/> created. | 8798 | <x id="PH"/> created. |
8423 | </target> | 8799 | </target> |
8424 | 8800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
8425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8801 | </trans-unit> |
8426 | <trans-unit id="5674286808255988565" datatype="html"> | 8802 | <trans-unit id="5674286808255988565" datatype="html"> |
8427 | <source>Create</source> | 8803 | <source>Create</source> |
8428 | <target state="new">Create</target> | 8804 | <target state="new">Create</target> |
8429 | 8805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
8430 | 8806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
8431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group> |
8808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">92</context></context-group> | ||
8809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group> | ||
8810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group> | ||
8811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group> | ||
8812 | </trans-unit> | ||
8432 | <trans-unit id="8869957234869568361" datatype="html"> | 8813 | <trans-unit id="8869957234869568361" datatype="html"> |
8433 | <source>Update playlist</source> | 8814 | <source>Update playlist</source> |
8434 | <target state="new">Update playlist</target> | 8815 | <target state="new">Update playlist</target> |
8435 | 8816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">67</context></context-group> | |
8436 | 8817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">47</context></context-group> | |
8437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8818 | </trans-unit> |
8438 | <trans-unit id="5851560788527570644" datatype="html"> | 8819 | <trans-unit id="5851560788527570644" datatype="html"> |
8439 | <source>Notifications</source> | 8820 | <source>Notifications</source> |
8440 | <target state="new">Notifications</target> | 8821 | <target state="new">Notifications</target> |
8441 | 8822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group> | |
8442 | 8823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">108</context></context-group> | |
8443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">108</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 8824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group> |
8825 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group> | ||
8826 | </trans-unit> | ||
8444 | <trans-unit id="6658000829978978023" datatype="html"> | 8827 | <trans-unit id="6658000829978978023" datatype="html"> |
8445 | <source>Applications</source> | 8828 | <source>Applications</source> |
8446 | <target state="new">Applications</target> | 8829 | <target state="new">Applications</target> |
8447 | 8830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">3</context></context-group> | |
8448 | 8831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">126</context></context-group> | |
8449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 8832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group> |
8833 | </trans-unit> | ||
8450 | <trans-unit id="104404386496394770" datatype="html"> | 8834 | <trans-unit id="104404386496394770" datatype="html"> |
8451 | <source>Delete playlist</source> | 8835 | <source>Delete playlist</source> |
8452 | <target state="new">Delete playlist</target> | 8836 | <target state="new">Delete playlist</target> |
@@ -8457,14 +8841,14 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8457 | <target state="new">Playlist | 8841 | <target state="new">Playlist |
8458 | <x id="PH"/> updated. | 8842 | <x id="PH"/> updated. |
8459 | </target> | 8843 | </target> |
8460 | 8844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">100</context></context-group> | |
8461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 8845 | </trans-unit> |
8462 | |||
8463 | <trans-unit id="4844578664427956129" datatype="html"> | 8846 | <trans-unit id="4844578664427956129" datatype="html"> |
8464 | <source>Change ownership</source> | 8847 | <source>Change ownership</source> |
8465 | <target state="new">Change ownership</target> | 8848 | <target state="new">Change ownership</target> |
8466 | 8849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
8467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 8850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">220</context></context-group> |
8851 | </trans-unit> | ||
8468 | <trans-unit id="3380608219513805292" datatype="html"> | 8852 | <trans-unit id="3380608219513805292" datatype="html"> |
8469 | <source>Playlist <x id="PH"/> deleted.</source> | 8853 | <source>Playlist <x id="PH"/> deleted.</source> |
8470 | <target state="new">Playlist | 8854 | <target state="new">Playlist |
@@ -8475,24 +8859,28 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8475 | <trans-unit id="3058024914967508975" datatype="html"> | 8859 | <trans-unit id="3058024914967508975" datatype="html"> |
8476 | <source>My videos</source> | 8860 | <source>My videos</source> |
8477 | <target state="new">My videos</target> | 8861 | <target state="new">My videos</target> |
8478 | 8862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group> | |
8479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group> |
8480 | 8864 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">67</context></context-group> | |
8865 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | ||
8866 | </trans-unit> | ||
8481 | <trans-unit id="8197117721861453263" datatype="html"> | 8867 | <trans-unit id="8197117721861453263" datatype="html"> |
8482 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8868 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
8483 | <target state="new">Do you really want to delete | 8869 | <target state="new">Do you really want to delete |
8484 | <x id="PH"/> videos? | 8870 | <x id="PH"/> videos? |
8485 | </target> | 8871 | </target> |
8486 | 8872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">150</context></context-group> | |
8487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 8873 | </trans-unit> |
8488 | <trans-unit id="2728855911908920537" datatype="html"> | 8874 | <trans-unit id="2728855911908920537" datatype="html"> |
8489 | <source><x id="PH"/> videos deleted. </source> | 8875 | <source><x id="PH"/> videos deleted. </source> |
8490 | <target state="new"> | 8876 | <target state="new"> |
8491 | <x id="PH"/> videos deleted. | 8877 | <x id="PH"/> videos deleted. |
8492 | </target> | 8878 | </target> |
8493 | 8879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">167</context></context-group> | |
8494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit><trans-unit id="2591467977473302125" datatype="html"> | 8880 | </trans-unit> |
8495 | <source>Videos list</source><target state="new">Videos list</target> | 8881 | <trans-unit id="2591467977473302125" datatype="html"> |
8882 | <source>Videos list</source> | ||
8883 | <target state="new">Videos list</target> | ||
8496 | <context-group purpose="location"> | 8884 | <context-group purpose="location"> |
8497 | <context context-type="sourcefile">src/app/+admin/overview/videos/video.routes.ts</context> | 8885 | <context context-type="sourcefile">src/app/+admin/overview/videos/video.routes.ts</context> |
8498 | <context context-type="linenumber">24</context> | 8886 | <context context-type="linenumber">24</context> |
@@ -8503,17 +8891,22 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8503 | <target state="new">Do you really want to delete | 8891 | <target state="new">Do you really want to delete |
8504 | <x id="PH"/>? | 8892 | <x id="PH"/>? |
8505 | </target> | 8893 | </target> |
8506 | 8894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 8895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group> |
8896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group> | ||
8897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | ||
8898 | </trans-unit> | ||
8508 | <trans-unit id="2767660806989176400" datatype="html"> | 8899 | <trans-unit id="2767660806989176400" datatype="html"> |
8509 | <source>Video <x id="PH"/> deleted.</source> | 8900 | <source>Video <x id="PH"/> deleted.</source> |
8510 | <target state="new">Video | 8901 | <target state="new">Video |
8511 | <x id="PH"/> deleted. | 8902 | <x id="PH"/> deleted. |
8512 | </target> | 8903 | </target> |
8513 | 8904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group> | |
8514 | 8905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group> | |
8515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group></trans-unit><trans-unit id="3742657416068781599" datatype="html"> | 8906 | </trans-unit> |
8516 | <source>Editor</source><target state="new">Editor</target> | 8907 | <trans-unit id="3742657416068781599" datatype="html"> |
8908 | <source>Editor</source> | ||
8909 | <target state="new">Editor</target> | ||
8517 | <context-group purpose="location"> | 8910 | <context-group purpose="location"> |
8518 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> | 8911 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> |
8519 | <context context-type="linenumber">208</context> | 8912 | <context context-type="linenumber">208</context> |
@@ -8526,9 +8919,11 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8526 | <trans-unit id="6810714890760227072" datatype="html"> | 8919 | <trans-unit id="6810714890760227072" datatype="html"> |
8527 | <source>Ownership change request sent.</source> | 8920 | <source>Ownership change request sent.</source> |
8528 | <target state="new">Ownership change request sent.</target> | 8921 | <target state="new">Ownership change request sent.</target> |
8529 | 8922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.ts</context><context context-type="linenumber">66</context></context-group> | |
8530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="7699622144571229146" datatype="html"> | 8923 | </trans-unit> |
8531 | <source>Sort by</source><target state="new">Sort by</target> | 8924 | <trans-unit id="7699622144571229146" datatype="html"> |
8925 | <source>Sort by</source> | ||
8926 | <target state="new">Sort by</target> | ||
8532 | <context-group purpose="location"> | 8927 | <context-group purpose="location"> |
8533 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8928 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
8534 | <context context-type="linenumber">26</context> | 8929 | <context context-type="linenumber">26</context> |
@@ -8537,325 +8932,386 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8537 | <trans-unit id="3245220240937722814" datatype="html"> | 8932 | <trans-unit id="3245220240937722814" datatype="html"> |
8538 | <source>My channels</source> | 8933 | <source>My channels</source> |
8539 | <target state="new">My channels</target> | 8934 | <target state="new">My channels</target> |
8540 | 8935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">3</context></context-group> | |
8541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 8936 | </trans-unit> |
8542 | |||
8543 | <trans-unit id="7545420287297803988" datatype="html"> | 8937 | <trans-unit id="7545420287297803988" datatype="html"> |
8544 | <source>My playlists</source> | 8938 | <source>My playlists</source> |
8545 | <target state="new">My playlists</target> | 8939 | <target state="new">My playlists</target> |
8546 | 8940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group> | |
8547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 8941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">3</context></context-group> |
8942 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">86</context></context-group> | ||
8943 | </trans-unit> | ||
8548 | <trans-unit id="2527931602940887636" datatype="html"> | 8944 | <trans-unit id="2527931602940887636" datatype="html"> |
8549 | <source>My subscriptions</source> | 8945 | <source>My subscriptions</source> |
8550 | <target state="new">My subscriptions</target> | 8946 | <target state="new">My subscriptions</target> |
8551 | 8947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> | |
8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 8948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group> |
8553 | 8949 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">92</context></context-group> | |
8950 | </trans-unit> | ||
8554 | <trans-unit id="5177154708872200221" datatype="html"> | 8951 | <trans-unit id="5177154708872200221" datatype="html"> |
8555 | <source>You don't have any subscription yet.</source> | 8952 | <source>You don't have any subscription yet.</source> |
8556 | <target state="new">You don't have any subscription yet.</target> | 8953 | <target state="new">You don't have any subscription yet.</target> |
8557 | 8954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">13</context></context-group> | |
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8955 | </trans-unit> |
8559 | <trans-unit id="1991904494976135035" datatype="html"> | 8956 | <trans-unit id="1991904494976135035" datatype="html"> |
8560 | <source>My abuse reports</source> | 8957 | <source>My abuse reports</source> |
8561 | <target state="new">My abuse reports</target> | 8958 | <target state="new">My abuse reports</target> |
8562 | 8959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">117</context></context-group> | |
8563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 8960 | </trans-unit> |
8564 | <trans-unit id="5752861278140673787" datatype="html"> | 8961 | <trans-unit id="5752861278140673787" datatype="html"> |
8565 | <source>Ownership changes</source> | 8962 | <source>Ownership changes</source> |
8566 | <target state="new">Ownership changes</target> | 8963 | <target state="new">Ownership changes</target> |
8567 | 8964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">117</context></context-group> | |
8568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group> |
8966 | </trans-unit> | ||
8569 | <trans-unit id="5983006734882925930" datatype="html"> | 8967 | <trans-unit id="5983006734882925930" datatype="html"> |
8570 | <source>My video history</source> | 8968 | <source>My video history</source> |
8571 | <target state="new">My video history</target> | 8969 | <target state="new">My video history</target> |
8572 | 8970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">127</context></context-group> | |
8573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8971 | </trans-unit> |
8574 | <trans-unit id="8181077408762380407" datatype="html"> | 8972 | <trans-unit id="8181077408762380407" datatype="html"> |
8575 | <source>Channels</source> | 8973 | <source>Channels</source> |
8576 | <target state="new">Channels</target> | 8974 | <target state="new">Channels</target> |
8577 | 8975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">45</context></context-group> | |
8578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit> | 8976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">200</context></context-group> |
8977 | </trans-unit> | ||
8579 | <trans-unit id="8936704404804793618" datatype="html"> | 8978 | <trans-unit id="8936704404804793618" datatype="html"> |
8580 | <source>Videos</source> | 8979 | <source>Videos</source> |
8581 | <target state="new">Videos</target> | 8980 | <target state="new">Videos</target> |
8582 | 8981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">17</context></context-group> | |
8583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">195</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 8982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">49</context></context-group> |
8983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">3</context></context-group> | ||
8984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">52</context></context-group> | ||
8985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">195</context></context-group> | ||
8986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">17</context></context-group> | ||
8987 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
8988 | </trans-unit> | ||
8584 | <trans-unit id="1823843876735462104" datatype="html"> | 8989 | <trans-unit id="1823843876735462104" datatype="html"> |
8585 | <source>Playlists</source> | 8990 | <source>Playlists</source> |
8586 | <target state="new">Playlists</target> | 8991 | <target state="new">Playlists</target> |
8587 | 8992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">59</context></context-group> | |
8588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 8993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group> |
8994 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group> | ||
8995 | </trans-unit> | ||
8589 | <trans-unit id="7916647920967632052" datatype="html"> | 8996 | <trans-unit id="7916647920967632052" datatype="html"> |
8590 | <source>max size</source> | 8997 | <source>max size</source> |
8591 | <target state="new">max size</target> | 8998 | <target state="new">max size</target> |
8592 | 8999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts</context><context context-type="linenumber">46</context></context-group> | |
8593 | 9000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/preview-upload.component.ts</context><context context-type="linenumber">38</context></context-group> | |
8594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.ts</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/preview-upload.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 9001 | </trans-unit> |
8595 | <trans-unit id="6489275254908395777" datatype="html"> | 9002 | <trans-unit id="6489275254908395777" datatype="html"> |
8596 | <source>Maximize editor</source> | 9003 | <source>Maximize editor</source> |
8597 | <target state="new">Maximize editor</target> | 9004 | <target state="new">Maximize editor</target> |
8598 | 9005 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">50</context></context-group> | |
8599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 9006 | </trans-unit> |
8600 | <trans-unit id="4243591013849340688" datatype="html"> | 9007 | <trans-unit id="4243591013849340688" datatype="html"> |
8601 | <source>Exit maximized editor</source> | 9008 | <source>Exit maximized editor</source> |
8602 | <target state="new">Exit maximized editor</target> | 9009 | <target state="new">Exit maximized editor</target> |
8603 | 9010 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">51</context></context-group> | |
8604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 9011 | </trans-unit> |
8605 | <trans-unit id="6537885755702623401" datatype="html"> | 9012 | <trans-unit id="6537885755702623401" datatype="html"> |
8606 | <source>Now please check your emails to verify your account and complete signup.</source> | 9013 | <source>Now please check your emails to verify your account and complete signup.</source> |
8607 | <target state="new">Now please check your emails to verify your account and complete signup.</target> | 9014 | <target state="new">Now please check your emails to verify your account and complete signup.</target> |
8608 | 9015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 9016 | </trans-unit> |
8610 | <trans-unit id="2847376451647729886" datatype="html"> | 9017 | <trans-unit id="2847376451647729886" datatype="html"> |
8611 | <source>You are now logged in as <x id="PH"/>!</source> | 9018 | <source>You are now logged in as <x id="PH"/>!</source> |
8612 | <target state="new">You are now logged in as | 9019 | <target state="new">You are now logged in as |
8613 | <x id="PH"/>! | 9020 | <x id="PH"/>! |
8614 | </target> | 9021 | </target> |
8615 | 9022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">145</context></context-group> | |
8616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 9023 | </trans-unit> |
8617 | <trans-unit id="2687679787442328897" datatype="html"> | 9024 | <trans-unit id="2687679787442328897" datatype="html"> |
8618 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 9025 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
8619 | <target state="new">An email with verification link will be sent to | 9026 | <target state="new">An email with verification link will be sent to |
8620 | <x id="PH"/>. | 9027 | <x id="PH"/>. |
8621 | </target> | 9028 | </target> |
8622 | 9029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">40</context></context-group> | |
8623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 9030 | </trans-unit> |
8624 | <trans-unit id="4180693983967989981" datatype="html"> | 9031 | <trans-unit id="4180693983967989981" datatype="html"> |
8625 | <source>Unable to find user id or verification string.</source> | 9032 | <source>Unable to find user id or verification string.</source> |
8626 | <target state="new">Unable to find user id or verification string.</target> | 9033 | <target state="new">Unable to find user id or verification string.</target> |
8627 | 9034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group> | |
8628 | 9035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">34</context></context-group> | |
8629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 9036 | </trans-unit> |
8630 | |||
8631 | |||
8632 | <trans-unit id="1783173774503340906" datatype="html"> | 9037 | <trans-unit id="1783173774503340906" datatype="html"> |
8633 | <source>Subscribe to the account</source> | 9038 | <source>Subscribe to the account</source> |
8634 | <target state="new">Subscribe to the account</target> | 9039 | <target state="new">Subscribe to the account</target> |
8635 | 9040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">76</context></context-group> | |
8636 | 9041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">747</context></context-group> | |
8637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">747</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html"> | 9042 | </trans-unit> |
8638 | <source>PLAYLISTS</source><target state="new">PLAYLISTS</target> | 9043 | <trans-unit id="3131904093925601441" datatype="html"> |
8639 | 9044 | <source>PLAYLISTS</source> | |
8640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3862497674553063473" datatype="html"> | 9045 | <target state="new">PLAYLISTS</target> |
8641 | <source>Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></source><target state="new">Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></target> | 9046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group> |
9047 | </trans-unit> | ||
9048 | <trans-unit id="3862497674553063473" datatype="html"> | ||
9049 | <source>Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></source> | ||
9050 | <target state="new">Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></target> | ||
8642 | <context-group purpose="location"> | 9051 | <context-group purpose="location"> |
8643 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9052 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8644 | <context context-type="linenumber">2</context> | 9053 | <context context-type="linenumber">2</context> |
8645 | </context-group> | 9054 | </context-group> |
8646 | </trans-unit><trans-unit id="5470809226184152498" datatype="html"> | 9055 | </trans-unit> |
8647 | <source>CUT VIDEO</source><target state="new">CUT VIDEO</target> | 9056 | <trans-unit id="5470809226184152498" datatype="html"> |
9057 | <source>CUT VIDEO</source> | ||
9058 | <target state="new">CUT VIDEO</target> | ||
8648 | <context-group purpose="location"> | 9059 | <context-group purpose="location"> |
8649 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9060 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8650 | <context context-type="linenumber">8</context> | 9061 | <context context-type="linenumber">8</context> |
8651 | </context-group> | 9062 | </context-group> |
8652 | </trans-unit><trans-unit id="5639348768609905535" datatype="html"> | 9063 | </trans-unit> |
8653 | <source>Set a new start/end.</source><target state="new">Set a new start/end.</target> | 9064 | <trans-unit id="5639348768609905535" datatype="html"> |
9065 | <source>Set a new start/end.</source> | ||
9066 | <target state="new">Set a new start/end.</target> | ||
8654 | <context-group purpose="location"> | 9067 | <context-group purpose="location"> |
8655 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9068 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8656 | <context context-type="linenumber">10</context> | 9069 | <context context-type="linenumber">10</context> |
8657 | </context-group> | 9070 | </context-group> |
8658 | </trans-unit><trans-unit id="783359429228696335" datatype="html"> | 9071 | </trans-unit> |
8659 | <source>New start</source><target state="new">New start</target> | 9072 | <trans-unit id="783359429228696335" datatype="html"> |
9073 | <source>New start</source> | ||
9074 | <target state="new">New start</target> | ||
8660 | <context-group purpose="location"> | 9075 | <context-group purpose="location"> |
8661 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9076 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8662 | <context context-type="linenumber">13</context> | 9077 | <context context-type="linenumber">13</context> |
8663 | </context-group> | 9078 | </context-group> |
8664 | </trans-unit><trans-unit id="8910806821370505981" datatype="html"> | 9079 | </trans-unit> |
8665 | <source>New end</source><target state="new">New end</target> | 9080 | <trans-unit id="8910806821370505981" datatype="html"> |
9081 | <source>New end</source> | ||
9082 | <target state="new">New end</target> | ||
8666 | <context-group purpose="location"> | 9083 | <context-group purpose="location"> |
8667 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9084 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8668 | <context context-type="linenumber">18</context> | 9085 | <context context-type="linenumber">18</context> |
8669 | </context-group> | 9086 | </context-group> |
8670 | </trans-unit><trans-unit id="2502254344085150809" datatype="html"> | 9087 | </trans-unit> |
8671 | <source>ADD INTRO</source><target state="new">ADD INTRO</target> | 9088 | <trans-unit id="2502254344085150809" datatype="html"> |
9089 | <source>ADD INTRO</source> | ||
9090 | <target state="new">ADD INTRO</target> | ||
8672 | <context-group purpose="location"> | 9091 | <context-group purpose="location"> |
8673 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9092 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8674 | <context context-type="linenumber">24</context> | 9093 | <context context-type="linenumber">24</context> |
8675 | </context-group> | 9094 | </context-group> |
8676 | </trans-unit><trans-unit id="5030063045826839645" datatype="html"> | 9095 | </trans-unit> |
8677 | <source>Concatenate a file at the beginning of the video.</source><target state="new">Concatenate a file at the beginning of the video.</target> | 9096 | <trans-unit id="5030063045826839645" datatype="html"> |
9097 | <source>Concatenate a file at the beginning of the video.</source> | ||
9098 | <target state="new">Concatenate a file at the beginning of the video.</target> | ||
8678 | <context-group purpose="location"> | 9099 | <context-group purpose="location"> |
8679 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9100 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8680 | <context context-type="linenumber">26</context> | 9101 | <context context-type="linenumber">26</context> |
8681 | </context-group> | 9102 | </context-group> |
8682 | </trans-unit><trans-unit id="4798642303989337390" datatype="html"> | 9103 | </trans-unit> |
8683 | <source>Select the intro video file</source><target state="new">Select the intro video file</target> | 9104 | <trans-unit id="4798642303989337390" datatype="html"> |
9105 | <source>Select the intro video file</source> | ||
9106 | <target state="new">Select the intro video file</target> | ||
8684 | <context-group purpose="location"> | 9107 | <context-group purpose="location"> |
8685 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9108 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8686 | <context context-type="linenumber">30</context> | 9109 | <context context-type="linenumber">30</context> |
8687 | </context-group> | 9110 | </context-group> |
8688 | </trans-unit><trans-unit id="7698413240170540435" datatype="html"> | 9111 | </trans-unit> |
8689 | <source>ADD OUTRO</source><target state="new">ADD OUTRO</target> | 9112 | <trans-unit id="7698413240170540435" datatype="html"> |
9113 | <source>ADD OUTRO</source> | ||
9114 | <target state="new">ADD OUTRO</target> | ||
8690 | <context-group purpose="location"> | 9115 | <context-group purpose="location"> |
8691 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9116 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8692 | <context context-type="linenumber">38</context> | 9117 | <context context-type="linenumber">38</context> |
8693 | </context-group> | 9118 | </context-group> |
8694 | </trans-unit><trans-unit id="2832051749922509643" datatype="html"> | 9119 | </trans-unit> |
8695 | <source>Concatenate a file at the end of the video.</source><target state="new">Concatenate a file at the end of the video.</target> | 9120 | <trans-unit id="2832051749922509643" datatype="html"> |
9121 | <source>Concatenate a file at the end of the video.</source> | ||
9122 | <target state="new">Concatenate a file at the end of the video.</target> | ||
8696 | <context-group purpose="location"> | 9123 | <context-group purpose="location"> |
8697 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9124 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8698 | <context context-type="linenumber">40</context> | 9125 | <context context-type="linenumber">40</context> |
8699 | </context-group> | 9126 | </context-group> |
8700 | </trans-unit><trans-unit id="4368653199478595315" datatype="html"> | 9127 | </trans-unit> |
8701 | <source>Select the outro video file</source><target state="new">Select the outro video file</target> | 9128 | <trans-unit id="4368653199478595315" datatype="html"> |
9129 | <source>Select the outro video file</source> | ||
9130 | <target state="new">Select the outro video file</target> | ||
8702 | <context-group purpose="location"> | 9131 | <context-group purpose="location"> |
8703 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9132 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8704 | <context context-type="linenumber">44</context> | 9133 | <context context-type="linenumber">44</context> |
8705 | </context-group> | 9134 | </context-group> |
8706 | </trans-unit><trans-unit id="3463158361655332380" datatype="html"> | 9135 | </trans-unit> |
8707 | <source>ADD WATERMARK</source><target state="new">ADD WATERMARK</target> | 9136 | <trans-unit id="3463158361655332380" datatype="html"> |
9137 | <source>ADD WATERMARK</source> | ||
9138 | <target state="new">ADD WATERMARK</target> | ||
8708 | <context-group purpose="location"> | 9139 | <context-group purpose="location"> |
8709 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9140 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8710 | <context context-type="linenumber">52</context> | 9141 | <context context-type="linenumber">52</context> |
8711 | </context-group> | 9142 | </context-group> |
8712 | </trans-unit><trans-unit id="4472450670859114703" datatype="html"> | 9143 | </trans-unit> |
8713 | <source>Add a watermark image to the video.</source><target state="new">Add a watermark image to the video.</target> | 9144 | <trans-unit id="4472450670859114703" datatype="html"> |
9145 | <source>Add a watermark image to the video.</source> | ||
9146 | <target state="new">Add a watermark image to the video.</target> | ||
8714 | <context-group purpose="location"> | 9147 | <context-group purpose="location"> |
8715 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9148 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8716 | <context context-type="linenumber">54</context> | 9149 | <context context-type="linenumber">54</context> |
8717 | </context-group> | 9150 | </context-group> |
8718 | </trans-unit><trans-unit id="155510305759087510" datatype="html"> | 9151 | </trans-unit> |
8719 | <source>Select watermark image file</source><target state="new">Select watermark image file</target> | 9152 | <trans-unit id="155510305759087510" datatype="html"> |
9153 | <source>Select watermark image file</source> | ||
9154 | <target state="new">Select watermark image file</target> | ||
8720 | <context-group purpose="location"> | 9155 | <context-group purpose="location"> |
8721 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9156 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8722 | <context context-type="linenumber">58</context> | 9157 | <context context-type="linenumber">58</context> |
8723 | </context-group> | 9158 | </context-group> |
8724 | </trans-unit><trans-unit id="3926035808219061063" datatype="html"> | 9159 | </trans-unit> |
8725 | <source>Run video edition</source><target state="new">Run video edition</target> | 9160 | <trans-unit id="3926035808219061063" datatype="html"> |
9161 | <source>Run video edition</source> | ||
9162 | <target state="new">Run video edition</target> | ||
8726 | <context-group purpose="location"> | 9163 | <context-group purpose="location"> |
8727 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9164 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8728 | <context context-type="linenumber">66</context> | 9165 | <context context-type="linenumber">66</context> |
8729 | </context-group> | 9166 | </context-group> |
8730 | </trans-unit><trans-unit id="1514792472513458403" datatype="html"> | 9167 | </trans-unit> |
8731 | <source>Video before edition</source><target state="new">Video before edition</target> | 9168 | <trans-unit id="1514792472513458403" datatype="html"> |
9169 | <source>Video before edition</source> | ||
9170 | <target state="new">Video before edition</target> | ||
8732 | <context-group purpose="location"> | 9171 | <context-group purpose="location"> |
8733 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9172 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8734 | <context context-type="linenumber">75</context> | 9173 | <context context-type="linenumber">75</context> |
8735 | </context-group> | 9174 | </context-group> |
8736 | </trans-unit><trans-unit id="1109043661443571733" datatype="html"> | 9175 | </trans-unit> |
8737 | <source>Edition tasks:</source><target state="new">Edition tasks:</target> | 9176 | <trans-unit id="1109043661443571733" datatype="html"> |
9177 | <source>Edition tasks:</source> | ||
9178 | <target state="new">Edition tasks:</target> | ||
8738 | <context-group purpose="location"> | 9179 | <context-group purpose="location"> |
8739 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 9180 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8740 | <context context-type="linenumber">80</context> | 9181 | <context context-type="linenumber">80</context> |
8741 | </context-group> | 9182 | </context-group> |
8742 | </trans-unit><trans-unit id="3541115907775840269" datatype="html"> | 9183 | </trans-unit> |
8743 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source><target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | 9184 | <trans-unit id="3541115907775840269" datatype="html"> |
9185 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source> | ||
9186 | <target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | ||
8744 | <context-group purpose="location"> | 9187 | <context-group purpose="location"> |
8745 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 9188 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8746 | <context context-type="linenumber">72</context> | 9189 | <context context-type="linenumber">72</context> |
8747 | </context-group> | 9190 | </context-group> |
8748 | </trans-unit><trans-unit id="3858880927114551513" datatype="html"> | 9191 | </trans-unit> |
8749 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source><target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | 9192 | <trans-unit id="3858880927114551513" datatype="html"> |
9193 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source> | ||
9194 | <target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | ||
8750 | <context-group purpose="location"> | 9195 | <context-group purpose="location"> |
8751 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 9196 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8752 | <context context-type="linenumber">76</context> | 9197 | <context context-type="linenumber">76</context> |
8753 | </context-group> | 9198 | </context-group> |
8754 | </trans-unit><trans-unit id="4876327655498234453" datatype="html"> | 9199 | </trans-unit> |
8755 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source><target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | 9200 | <trans-unit id="4876327655498234453" datatype="html"> |
9201 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source> | ||
9202 | <target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | ||
8756 | <context-group purpose="location"> | 9203 | <context-group purpose="location"> |
8757 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 9204 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8758 | <context context-type="linenumber">77</context> | 9205 | <context context-type="linenumber">77</context> |
8759 | </context-group> | 9206 | </context-group> |
8760 | </trans-unit> | 9207 | </trans-unit> |
8761 | |||
8762 | <trans-unit id="7709367721354853232" datatype="html"> | 9208 | <trans-unit id="7709367721354853232" datatype="html"> |
8763 | <source>Focus the search bar</source> | 9209 | <source>Focus the search bar</source> |
8764 | <target state="new">Focus the search bar</target> | 9210 | <target state="new">Focus the search bar</target> |
8765 | 9211 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">274</context></context-group> | |
8766 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit> | 9212 | </trans-unit> |
8767 | <trans-unit id="4049262826107502276" datatype="html"> | 9213 | <trans-unit id="4049262826107502276" datatype="html"> |
8768 | <source>Toggle the left menu</source> | 9214 | <source>Toggle the left menu</source> |
8769 | <target state="new">Toggle the left menu</target> | 9215 | <target state="new">Toggle the left menu</target> |
8770 | 9216 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">279</context></context-group> | |
8771 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">279</context></context-group></trans-unit> | 9217 | </trans-unit> |
8772 | <trans-unit id="5409372033656550095" datatype="html"> | 9218 | <trans-unit id="5409372033656550095" datatype="html"> |
8773 | <source>Go to the discover videos page</source> | 9219 | <source>Go to the discover videos page</source> |
8774 | <target state="new">Go to the discover videos page</target> | 9220 | <target state="new">Go to the discover videos page</target> |
8775 | 9221 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">284</context></context-group> | |
8776 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">284</context></context-group></trans-unit> | 9222 | </trans-unit> |
8777 | <trans-unit id="4278050445961255445" datatype="html"> | 9223 | <trans-unit id="4278050445961255445" datatype="html"> |
8778 | <source>Go to the trending videos page</source> | 9224 | <source>Go to the trending videos page</source> |
8779 | <target state="new">Go to the trending videos page</target> | 9225 | <target state="new">Go to the trending videos page</target> |
8780 | 9226 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">289</context></context-group> | |
8781 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 9227 | </trans-unit> |
8782 | <trans-unit id="3242234958443825475" datatype="html"> | 9228 | <trans-unit id="3242234958443825475" datatype="html"> |
8783 | <source>Go to the recently added videos page</source> | 9229 | <source>Go to the recently added videos page</source> |
8784 | <target state="new">Go to the recently added videos page</target> | 9230 | <target state="new">Go to the recently added videos page</target> |
8785 | 9231 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">294</context></context-group> | |
8786 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">294</context></context-group></trans-unit> | 9232 | </trans-unit> |
8787 | <trans-unit id="2887122197778293919" datatype="html"> | 9233 | <trans-unit id="2887122197778293919" datatype="html"> |
8788 | <source>Go to the local videos page</source> | 9234 | <source>Go to the local videos page</source> |
8789 | <target state="new">Go to the local videos page</target> | 9235 | <target state="new">Go to the local videos page</target> |
8790 | 9236 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">299</context></context-group> | |
8791 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">299</context></context-group></trans-unit> | 9237 | </trans-unit> |
8792 | <trans-unit id="8009065619559214982" datatype="html"> | 9238 | <trans-unit id="8009065619559214982" datatype="html"> |
8793 | <source>Go to the videos upload page</source> | 9239 | <source>Go to the videos upload page</source> |
8794 | <target state="new">Go to the videos upload page</target> | 9240 | <target state="new">Go to the videos upload page</target> |
8795 | 9241 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">304</context></context-group> | |
8796 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit> | 9242 | </trans-unit> |
8797 | <trans-unit id="3779524668013120370" datatype="html"> | 9243 | <trans-unit id="3779524668013120370" datatype="html"> |
8798 | <source>Go to my subscriptions</source> | 9244 | <source>Go to my subscriptions</source> |
8799 | <target state="new">Go to my subscriptions</target> | 9245 | <target state="new">Go to my subscriptions</target> |
8800 | 9246 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">61</context></context-group> | |
8801 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 9247 | </trans-unit> |
8802 | <trans-unit id="1136469849928650779" datatype="html"> | 9248 | <trans-unit id="1136469849928650779" datatype="html"> |
8803 | <source>Go to my videos</source> | 9249 | <source>Go to my videos</source> |
8804 | <target state="new">Go to my videos</target> | 9250 | <target state="new">Go to my videos</target> |
8805 | 9251 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">65</context></context-group> | |
8806 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9252 | </trans-unit> |
8807 | <trans-unit id="7836683738999600376" datatype="html"> | 9253 | <trans-unit id="7836683738999600376" datatype="html"> |
8808 | <source>Go to my imports</source> | 9254 | <source>Go to my imports</source> |
8809 | <target state="new">Go to my imports</target> | 9255 | <target state="new">Go to my imports</target> |
8810 | 9256 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">69</context></context-group> | |
8811 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 9257 | </trans-unit> |
8812 | <trans-unit id="7511292153332773503" datatype="html"> | 9258 | <trans-unit id="7511292153332773503" datatype="html"> |
8813 | <source>Go to my channels</source> | 9259 | <source>Go to my channels</source> |
8814 | <target state="new">Go to my channels</target> | 9260 | <target state="new">Go to my channels</target> |
8815 | 9261 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> | |
8816 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> | 9262 | </trans-unit> |
8817 | <trans-unit id="2013324644839511073" datatype="html"> | 9263 | <trans-unit id="2013324644839511073" datatype="html"> |
8818 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 9264 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8819 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
8820 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 9265 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. |
8821 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | 9266 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
8822 | 9267 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> | |
8823 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 9268 | </trans-unit> |
8824 | <trans-unit id="375263728166936544" datatype="html"> | 9269 | <trans-unit id="375263728166936544" datatype="html"> |
8825 | <source>You need to reconnect.</source> | 9270 | <source>You need to reconnect.</source> |
8826 | <target state="new">You need to reconnect.</target> | 9271 | <target state="new">You need to reconnect.</target> |
8827 | 9272 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group> | |
8828 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group></trans-unit> | 9273 | </trans-unit> |
8829 | <trans-unit id="2206638022166154361" datatype="html"> | 9274 | <trans-unit id="2206638022166154361" datatype="html"> |
8830 | <source>Keyboard Shortcuts:</source> | 9275 | <source>Keyboard Shortcuts:</source> |
8831 | <target state="new">Keyboard Shortcuts:</target> | 9276 | <target state="new">Keyboard Shortcuts:</target> |
8832 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> | 9277 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> |
8833 | </trans-unit><trans-unit id="3608407683173066091" datatype="html"> | 9278 | </trans-unit> |
8834 | <source>My history</source><target state="new">My history</target> | 9279 | <trans-unit id="3608407683173066091" datatype="html"> |
9280 | <source>My history</source> | ||
9281 | <target state="new">My history</target> | ||
8835 | <context-group purpose="location"> | 9282 | <context-group purpose="location"> |
8836 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 9283 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8837 | <context context-type="linenumber">98</context> | 9284 | <context context-type="linenumber">98</context> |
8838 | </context-group> | 9285 | </context-group> |
8839 | </trans-unit><trans-unit id="4024404994702813072" datatype="html"> | 9286 | </trans-unit> |
8840 | <source>In my library</source><target state="new">In my library</target> | 9287 | <trans-unit id="4024404994702813072" datatype="html"> |
9288 | <source>In my library</source> | ||
9289 | <target state="new">In my library</target> | ||
8841 | <context-group purpose="location"> | 9290 | <context-group purpose="location"> |
8842 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 9291 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8843 | <context context-type="linenumber">104</context> | 9292 | <context context-type="linenumber">104</context> |
8844 | </context-group> | 9293 | </context-group> |
8845 | </trans-unit><trans-unit id="232050922346936574" datatype="html"> | 9294 | </trans-unit> |
8846 | <source>Trending</source><target state="new">Trending</target> | 9295 | <trans-unit id="232050922346936574" datatype="html"> |
8847 | 9296 | <source>Trending</source> | |
8848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">201</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group></trans-unit><trans-unit id="6470888608149621404" datatype="html"> | 9297 | <target state="new">Trending</target> |
8849 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source><target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | 9298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">201</context></context-group> |
9299 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> | ||
9300 | </trans-unit> | ||
9301 | <trans-unit id="6470888608149621404" datatype="html"> | ||
9302 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | ||
9303 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | ||
8850 | <context-group purpose="location"> | 9304 | <context-group purpose="location"> |
8851 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 9305 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8852 | <context context-type="linenumber">150</context> | 9306 | <context context-type="linenumber">150</context> |
8853 | </context-group> | 9307 | </context-group> |
8854 | </trans-unit><trans-unit id="2821179408673282599" datatype="html"> | 9308 | </trans-unit> |
8855 | <source>Home</source><target state="new">Home</target> | 9309 | <trans-unit id="2821179408673282599" datatype="html"> |
8856 | 9310 | <source>Home</source> | |
8857 | 9311 | <target state="new">Home</target> | |
8858 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 9312 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">115</context></context-group> |
9313 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">116</context></context-group> | ||
9314 | </trans-unit> | ||
8859 | <trans-unit id="4648900870671159218" datatype="html"> | 9315 | <trans-unit id="4648900870671159218" datatype="html"> |
8860 | <source>Success</source> | 9316 | <source>Success</source> |
8861 | <target state="new">Success</target> | 9317 | <target state="new">Success</target> |
@@ -8864,162 +9320,177 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8864 | <trans-unit id="1266887509445371246" datatype="html"> | 9320 | <trans-unit id="1266887509445371246" datatype="html"> |
8865 | <source>Incorrect username or password.</source> | 9321 | <source>Incorrect username or password.</source> |
8866 | <target state="new">Incorrect username or password.</target> | 9322 | <target state="new">Incorrect username or password.</target> |
8867 | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 9324 | </trans-unit> |
8869 | <trans-unit id="6974874606619467663" datatype="html"> | 9325 | <trans-unit id="6974874606619467663" datatype="html"> |
8870 | <source>Your account is blocked.</source> | 9326 | <source>Your account is blocked.</source> |
8871 | <target state="new">Your account is blocked.</target> | 9327 | <target state="new">Your account is blocked.</target> |
8872 | 9328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group> | |
8873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9329 | </trans-unit> |
8874 | <trans-unit id="7939914198003891823" datatype="html"> | 9330 | <trans-unit id="7939914198003891823" datatype="html"> |
8875 | <source>any language</source> | 9331 | <source>any language</source> |
8876 | <target state="new">any language</target> | 9332 | <target state="new">any language</target> |
8877 | 9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">276</context></context-group> | |
8878 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">276</context></context-group></trans-unit> | 9334 | </trans-unit> |
8879 | |||
8880 | <trans-unit id="5633144232269377096" datatype="html"> | 9335 | <trans-unit id="5633144232269377096" datatype="html"> |
8881 | <source>hide</source> | 9336 | <source>hide</source> |
8882 | <target state="new">hide</target> | 9337 | <target state="new">hide</target> |
8883 | 9338 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">311</context></context-group> | |
8884 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">311</context></context-group></trans-unit> | 9339 | </trans-unit> |
8885 | <trans-unit id="8603861867909474404" datatype="html"> | 9340 | <trans-unit id="8603861867909474404" datatype="html"> |
8886 | <source>blur</source> | 9341 | <source>blur</source> |
8887 | <target state="new">blur</target> | 9342 | <target state="new">blur</target> |
8888 | 9343 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">315</context></context-group> | |
8889 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">315</context></context-group></trans-unit> | 9344 | </trans-unit> |
8890 | <trans-unit id="4534458451100881847" datatype="html"> | 9345 | <trans-unit id="4534458451100881847" datatype="html"> |
8891 | <source>display</source> | 9346 | <source>display</source> |
8892 | <target state="new">display</target> | 9347 | <target state="new">display</target> |
8893 | 9348 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">319</context></context-group> | |
8894 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">319</context></context-group></trans-unit> | 9349 | </trans-unit> |
8895 | <trans-unit id="4467323362722952678" datatype="html"> | 9350 | <trans-unit id="4467323362722952678" datatype="html"> |
8896 | <source>Unknown</source> | 9351 | <source>Unknown</source> |
8897 | <target state="new">Unknown</target> | 9352 | <target state="new">Unknown</target> |
8898 | 9353 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">206</context></context-group> | |
8899 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">206</context></context-group></trans-unit> | 9354 | </trans-unit> |
8900 | <trans-unit id="8781423666414310853" datatype="html"> | 9355 | <trans-unit id="8781423666414310853" datatype="html"> |
8901 | <source>Your password has been successfully reset!</source> | 9356 | <source>Your password has been successfully reset!</source> |
8902 | <target state="new">Your password has been successfully reset!</target> | 9357 | <target state="new">Your password has been successfully reset!</target> |
8903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group> | 9358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group> |
8904 | </trans-unit> | 9359 | </trans-unit> |
8905 | |||
8906 | <trans-unit id="6048892649018070225" datatype="html"> | 9360 | <trans-unit id="6048892649018070225" datatype="html"> |
8907 | <source>Today</source> | 9361 | <source>Today</source> |
8908 | <target state="new">Today</target> | 9362 | <target state="new">Today</target> |
8909 | 9363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group> | |
8910 | 9364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group> | |
8911 | 9365 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group> | |
8912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 9366 | </trans-unit> |
8913 | <trans-unit id="4498682414491138092" datatype="html"> | 9367 | <trans-unit id="4498682414491138092" datatype="html"> |
8914 | <source>Yesterday</source> | 9368 | <source>Yesterday</source> |
8915 | <target state="new">Yesterday</target> | 9369 | <target state="new">Yesterday</target> |
8916 | 9370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group> | |
8917 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 9371 | </trans-unit> |
8918 | <trans-unit id="5073473933031004097" datatype="html"> | 9372 | <trans-unit id="5073473933031004097" datatype="html"> |
8919 | <source>This week</source> | 9373 | <source>This week</source> |
8920 | <target state="new">This week</target> | 9374 | <target state="new">This week</target> |
8921 | 9375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group> | |
8922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 9376 | </trans-unit> |
8923 | <trans-unit id="842657237693374355" datatype="html"> | 9377 | <trans-unit id="842657237693374355" datatype="html"> |
8924 | <source>This month</source> | 9378 | <source>This month</source> |
8925 | <target state="new">This month</target> | 9379 | <target state="new">This month</target> |
8926 | 9380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 9381 | </trans-unit> |
8928 | <trans-unit id="4463380307954693363" datatype="html"> | 9382 | <trans-unit id="4463380307954693363" datatype="html"> |
8929 | <source>Last month</source> | 9383 | <source>Last month</source> |
8930 | <target state="new">Last month</target> | 9384 | <target state="new">Last month</target> |
8931 | 9385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group> | |
8932 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group></trans-unit> | 9386 | </trans-unit> |
8933 | <trans-unit id="7473676707373218484" datatype="html"> | 9387 | <trans-unit id="7473676707373218484" datatype="html"> |
8934 | <source>Older</source> | 9388 | <source>Older</source> |
8935 | <target state="new">Older</target> | 9389 | <target state="new">Older</target> |
8936 | 9390 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
8937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9391 | </trans-unit> |
8938 | <trans-unit id="5036991421517255667" datatype="html"> | 9392 | <trans-unit id="5036991421517255667" datatype="html"> |
8939 | <source>Cannot load more videos. Try again later.</source> | 9393 | <source>Cannot load more videos. Try again later.</source> |
8940 | <target state="new">Cannot load more videos. Try again later.</target> | 9394 | <target state="new">Cannot load more videos. Try again later.</target> |
8941 | 9395 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group> | |
8942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 9396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group> |
8943 | 9397 | </trans-unit> | |
8944 | <trans-unit id="4873149362496451858" datatype="html"> | 9398 | <trans-unit id="4873149362496451858" datatype="html"> |
8945 | <source>Last 7 days</source> | 9399 | <source>Last 7 days</source> |
8946 | <target state="new">Last 7 days</target> | 9400 | <target state="new">Last 7 days</target> |
8947 | 9401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">44</context></context-group> | |
8948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 9402 | </trans-unit> |
8949 | <trans-unit id="2949150997160654358" datatype="html"> | 9403 | <trans-unit id="2949150997160654358" datatype="html"> |
8950 | <source>Last 30 days</source> | 9404 | <source>Last 30 days</source> |
8951 | <target state="new">Last 30 days</target> | 9405 | <target state="new">Last 30 days</target> |
8952 | 9406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">48</context></context-group> | |
8953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 9407 | </trans-unit> |
8954 | <trans-unit id="5328600704510694984" datatype="html"> | 9408 | <trans-unit id="5328600704510694984" datatype="html"> |
8955 | <source>Last 365 days</source> | 9409 | <source>Last 365 days</source> |
8956 | <target state="new">Last 365 days</target> | 9410 | <target state="new">Last 365 days</target> |
8957 | 9411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">52</context></context-group> | |
8958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="2392481201920342009" datatype="html"> | 9412 | </trans-unit> |
8959 | <source>VOD videos</source><target state="new">VOD videos</target> | 9413 | <trans-unit id="2392481201920342009" datatype="html"> |
8960 | 9414 | <source>VOD videos</source> | |
8961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">165</context></context-group></trans-unit><trans-unit id="2180217594100853008" datatype="html"> | 9415 | <target state="new">VOD videos</target> |
8962 | <source>Live videos</source><target state="new">Live videos</target> | 9416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> |
8963 | 9417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">109</context></context-group> | |
8964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">159</context></context-group></trans-unit> | 9418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">165</context></context-group> |
9419 | </trans-unit> | ||
9420 | <trans-unit id="2180217594100853008" datatype="html"> | ||
9421 | <source>Live videos</source> | ||
9422 | <target state="new">Live videos</target> | ||
9423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | ||
9424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">104</context></context-group> | ||
9425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">159</context></context-group> | ||
9426 | </trans-unit> | ||
8965 | <trans-unit id="8487565500496466433" datatype="html"> | 9427 | <trans-unit id="8487565500496466433" datatype="html"> |
8966 | <source>Short (< 4 min)</source> | 9428 | <source>Short (< 4 min)</source> |
8967 | <target state="new">Short (< 4 min)</target> | 9429 | <target state="new">Short (< 4 min)</target> |
8968 | 9430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">59</context></context-group> | |
8969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 9431 | </trans-unit> |
8970 | <trans-unit id="3642535017283477339" datatype="html"> | 9432 | <trans-unit id="3642535017283477339" datatype="html"> |
8971 | <source>Medium (4-10 min)</source> | 9433 | <source>Medium (4-10 min)</source> |
8972 | <target state="new">Medium (4-10 min)</target> | 9434 | <target state="new">Medium (4-10 min)</target> |
8973 | 9435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> | |
8974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 9436 | </trans-unit> |
8975 | <trans-unit id="6613870447286561244" datatype="html"> | 9437 | <trans-unit id="6613870447286561244" datatype="html"> |
8976 | <source>Long (> 10 min)</source> | 9438 | <source>Long (> 10 min)</source> |
8977 | <target state="new">Long (> 10 min)</target> | 9439 | <target state="new">Long (> 10 min)</target> |
8978 | 9440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> | |
8979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 9441 | </trans-unit> |
8980 | <trans-unit id="1787083504545967" datatype="html"> | 9442 | <trans-unit id="1787083504545967" datatype="html"> |
8981 | <source>Relevance</source> | 9443 | <source>Relevance</source> |
8982 | <target state="new">Relevance</target> | 9444 | <target state="new">Relevance</target> |
8983 | 9445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">74</context></context-group> | |
8984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 9446 | </trans-unit> |
8985 | <trans-unit id="7944277186358179990" datatype="html"> | 9447 | <trans-unit id="7944277186358179990" datatype="html"> |
8986 | <source>Publish date</source> | 9448 | <source>Publish date</source> |
8987 | <target state="new">Publish date</target> | 9449 | <target state="new">Publish date</target> |
8988 | 9450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">78</context></context-group> | |
8989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 9451 | </trans-unit> |
8990 | <trans-unit id="2123659921722214537" datatype="html"> | 9452 | <trans-unit id="2123659921722214537" datatype="html"> |
8991 | <source>Views</source> | 9453 | <source>Views</source> |
8992 | <target state="new">Views</target> | 9454 | <target state="new">Views</target> |
8993 | 9455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">82</context></context-group> | |
8994 | 9456 | </trans-unit> | |
8995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | ||
8996 | <trans-unit id="3208627574396957172" datatype="html"> | 9457 | <trans-unit id="3208627574396957172" datatype="html"> |
8997 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 9458 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8998 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> | 9459 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> |
8999 | 9460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">159</context></context-group> | |
9000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">159</context></context-group></trans-unit> | 9461 | </trans-unit> |
9001 | <trans-unit id="307702206382241469" datatype="html"> | 9462 | <trans-unit id="307702206382241469" datatype="html"> |
9002 | <source>Search error</source> | 9463 | <source>Search error</source> |
9003 | <target state="new">Search error</target> | 9464 | <target state="new">Search error</target> |
9004 | 9465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">160</context></context-group> | |
9005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit><trans-unit id="8491751845906232809" datatype="html"> | 9466 | </trans-unit> |
9006 | <source>PeerTube instance host filter is invalid</source><target state="new">PeerTube instance host filter is invalid</target> | 9467 | <trans-unit id="8491751845906232809" datatype="html"> |
9007 | 9468 | <source>PeerTube instance host filter is invalid</source> | |
9008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 9469 | <target state="new">PeerTube instance host filter is invalid</target> |
9470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">327</context></context-group> | ||
9471 | </trans-unit> | ||
9009 | <trans-unit id="4580988005648117665" datatype="html"> | 9472 | <trans-unit id="4580988005648117665" datatype="html"> |
9010 | <source>Search</source> | 9473 | <source>Search</source> |
9011 | <target state="new">Search</target> | 9474 | <target state="new">Search</target> |
9012 | 9475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">4</context></context-group> | |
9013 | 9476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
9014 | 9477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">255</context></context-group> | |
9015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">255</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="320689395528621696" datatype="html"> | 9478 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> |
9016 | <source>Navigate between plugins and themes</source><target state="new">Navigate between plugins and themes</target> | 9479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group> |
9480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">12</context></context-group> | ||
9481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">13</context></context-group> | ||
9482 | </trans-unit> | ||
9483 | <trans-unit id="320689395528621696" datatype="html"> | ||
9484 | <source>Navigate between plugins and themes</source> | ||
9485 | <target state="new">Navigate between plugins and themes</target> | ||
9017 | <context-group purpose="location"> | 9486 | <context-group purpose="location"> |
9018 | <context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context> | 9487 | <context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context> |
9019 | <context context-type="linenumber">7</context> | 9488 | <context context-type="linenumber">7</context> |
9020 | </context-group> | 9489 | </context-group> |
9021 | </trans-unit><trans-unit id="7804724824750282316" datatype="html"> | 9490 | </trans-unit> |
9022 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/></source><target state="new"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/></target> | 9491 | <trans-unit id="7804724824750282316" datatype="html"> |
9492 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/></source> | ||
9493 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/></target> | ||
9023 | <context-group purpose="location"> | 9494 | <context-group purpose="location"> |
9024 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 9495 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
9025 | <context context-type="linenumber">5</context> | 9496 | <context context-type="linenumber">5</context> |
@@ -9030,9 +9501,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9030 | <target state="new"> | 9501 | <target state="new"> |
9031 | <x id="PH"/> years ago | 9502 | <x id="PH"/> years ago |
9032 | </target> | 9503 | </target> |
9033 | 9504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">11</context></context-group> | |
9034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="8392321423487952834" datatype="html"> | 9505 | </trans-unit> |
9035 | <source>1 year ago</source><target state="new">1 year ago</target> | 9506 | <trans-unit id="8392321423487952834" datatype="html"> |
9507 | <source>1 year ago</source> | ||
9508 | <target state="new">1 year ago</target> | ||
9036 | <context-group purpose="location"> | 9509 | <context-group purpose="location"> |
9037 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 9510 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
9038 | <context context-type="linenumber">12</context> | 9511 | <context context-type="linenumber">12</context> |
@@ -9042,15 +9515,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9042 | <context context-type="linenumber">17</context> | 9515 | <context context-type="linenumber">17</context> |
9043 | </context-group> | 9516 | </context-group> |
9044 | </trans-unit> | 9517 | </trans-unit> |
9045 | |||
9046 | <trans-unit id="9022576335789205254" datatype="html"> | 9518 | <trans-unit id="9022576335789205254" datatype="html"> |
9047 | <source><x id="PH"/> months ago </source> | 9519 | <source><x id="PH"/> months ago </source> |
9048 | <target state="new"> | 9520 | <target state="new"> |
9049 | <x id="PH"/> months ago | 9521 | <x id="PH"/> months ago |
9050 | </target> | 9522 | </target> |
9051 | 9523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">18</context></context-group> | |
9052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="6874778750344205852" datatype="html"> | 9524 | </trans-unit> |
9053 | <source>1 month ago</source><target state="new">1 month ago</target> | 9525 | <trans-unit id="6874778750344205852" datatype="html"> |
9526 | <source>1 month ago</source> | ||
9527 | <target state="new">1 month ago</target> | ||
9054 | <context-group purpose="location"> | 9528 | <context-group purpose="location"> |
9055 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 9529 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
9056 | <context context-type="linenumber">19</context> | 9530 | <context context-type="linenumber">19</context> |
@@ -9060,61 +9534,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9060 | <context context-type="linenumber">24</context> | 9534 | <context context-type="linenumber">24</context> |
9061 | </context-group> | 9535 | </context-group> |
9062 | </trans-unit> | 9536 | </trans-unit> |
9063 | |||
9064 | <trans-unit id="6473426250245763193" datatype="html"> | 9537 | <trans-unit id="6473426250245763193" datatype="html"> |
9065 | <source><x id="PH"/> weeks ago </source> | 9538 | <source><x id="PH"/> weeks ago </source> |
9066 | <target state="new"> | 9539 | <target state="new"> |
9067 | <x id="PH"/> weeks ago | 9540 | <x id="PH"/> weeks ago |
9068 | </target> | 9541 | </target> |
9069 | 9542 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">25</context></context-group> | |
9070 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">25</context></context-group></trans-unit><trans-unit id="6538455390369999912" datatype="html"> | 9543 | </trans-unit> |
9071 | <source>1 week ago</source><target state="new">1 week ago</target> | 9544 | <trans-unit id="6538455390369999912" datatype="html"> |
9545 | <source>1 week ago</source> | ||
9546 | <target state="new">1 week ago</target> | ||
9072 | <context-group purpose="location"> | 9547 | <context-group purpose="location"> |
9073 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 9548 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
9074 | <context context-type="linenumber">26</context> | 9549 | <context context-type="linenumber">26</context> |
9075 | </context-group> | 9550 | </context-group> |
9076 | </trans-unit> | 9551 | </trans-unit> |
9077 | |||
9078 | <trans-unit id="5186107770140555014" datatype="html"> | 9552 | <trans-unit id="5186107770140555014" datatype="html"> |
9079 | <source><x id="PH"/> days ago </source> | 9553 | <source><x id="PH"/> days ago </source> |
9080 | <target state="new"> | 9554 | <target state="new"> |
9081 | <x id="PH"/> days ago | 9555 | <x id="PH"/> days ago |
9082 | </target> | 9556 | </target> |
9083 | 9557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">29</context></context-group> | |
9084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="3927517496763161987" datatype="html"> | 9558 | </trans-unit> |
9085 | <source>1 day ago</source><target state="new">1 day ago</target> | 9559 | <trans-unit id="3927517496763161987" datatype="html"> |
9560 | <source>1 day ago</source> | ||
9561 | <target state="new">1 day ago</target> | ||
9086 | <context-group purpose="location"> | 9562 | <context-group purpose="location"> |
9087 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 9563 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
9088 | <context context-type="linenumber">30</context> | 9564 | <context context-type="linenumber">30</context> |
9089 | </context-group> | 9565 | </context-group> |
9090 | </trans-unit> | 9566 | </trans-unit> |
9091 | |||
9092 | <trans-unit id="6522428509564266583" datatype="html"> | 9567 | <trans-unit id="6522428509564266583" datatype="html"> |
9093 | <source><x id="PH"/> hours ago </source> | 9568 | <source><x id="PH"/> hours ago </source> |
9094 | <target state="new"> | 9569 | <target state="new"> |
9095 | <x id="PH"/> hours ago | 9570 | <x id="PH"/> hours ago |
9096 | </target> | 9571 | </target> |
9097 | 9572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">33</context></context-group> | |
9098 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">33</context></context-group></trans-unit><trans-unit id="6285422673271535468" datatype="html"> | 9573 | </trans-unit> |
9099 | <source>1 hour ago</source><target state="new">1 hour ago</target> | 9574 | <trans-unit id="6285422673271535468" datatype="html"> |
9575 | <source>1 hour ago</source> | ||
9576 | <target state="new">1 hour ago</target> | ||
9100 | <context-group purpose="location"> | 9577 | <context-group purpose="location"> |
9101 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 9578 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
9102 | <context context-type="linenumber">34</context> | 9579 | <context context-type="linenumber">34</context> |
9103 | </context-group> | 9580 | </context-group> |
9104 | </trans-unit> | 9581 | </trans-unit> |
9105 | |||
9106 | <trans-unit id="8256466313580256940" datatype="html"> | 9582 | <trans-unit id="8256466313580256940" datatype="html"> |
9107 | <source><x id="PH"/> min ago </source> | 9583 | <source><x id="PH"/> min ago </source> |
9108 | <target state="new"> | 9584 | <target state="new"> |
9109 | <x id="PH"/> min ago | 9585 | <x id="PH"/> min ago |
9110 | </target> | 9586 | </target> |
9111 | 9587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">37</context></context-group> | |
9112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 9588 | </trans-unit> |
9113 | <trans-unit id="4733690367258997247" datatype="html"> | 9589 | <trans-unit id="4733690367258997247" datatype="html"> |
9114 | <source>just now</source> | 9590 | <source>just now</source> |
9115 | <target state="new">just now</target> | 9591 | <target state="new">just now</target> |
9116 | 9592 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">39</context></context-group> | |
9117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 9593 | </trans-unit> |
9118 | <trans-unit id="2222108104954671970" datatype="html"> | 9594 | <trans-unit id="2222108104954671970" datatype="html"> |
9119 | <source><x id="PH"/> sec </source> | 9595 | <source><x id="PH"/> sec </source> |
9120 | <target state="new"> | 9596 | <target state="new"> |
@@ -9130,13 +9606,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9130 | <trans-unit id="4930506384627295710" datatype="html"> | 9606 | <trans-unit id="4930506384627295710" datatype="html"> |
9131 | <source>Settings</source> | 9607 | <source>Settings</source> |
9132 | <target state="new">Settings</target> | 9608 | <target state="new">Settings</target> |
9133 | 9609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">12</context></context-group> | |
9134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 9610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">45</context></context-group> |
9611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group> | ||
9612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group> | ||
9613 | </trans-unit> | ||
9135 | <trans-unit id="9178182467454450952" datatype="html"> | 9614 | <trans-unit id="9178182467454450952" datatype="html"> |
9136 | <source>Confirm</source> | 9615 | <source>Confirm</source> |
9137 | <target state="new">Confirm</target> | 9616 | <target state="new">Confirm</target> |
9138 | 9617 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">40</context></context-group> | |
9139 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 9618 | </trans-unit> |
9140 | <trans-unit id="7784486624424057376" datatype="html"> | 9619 | <trans-unit id="7784486624424057376" datatype="html"> |
9141 | <source>Instance name is required.</source> | 9620 | <source>Instance name is required.</source> |
9142 | <target state="new">Instance name is required.</target> | 9621 | <target state="new">Instance name is required.</target> |
@@ -9186,32 +9665,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9186 | <source>Signup limit is required.</source> | 9665 | <source>Signup limit is required.</source> |
9187 | <target state="new">Signup limit is required.</target> | 9666 | <target state="new">Signup limit is required.</target> |
9188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">46</context></context-group> | 9667 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">46</context></context-group> |
9189 | </trans-unit><trans-unit id="5630311719329022718" datatype="html"> | 9668 | </trans-unit> |
9190 | <source>Signup limit must be greater than 1. Use -1 to disable it.</source><target state="new">Signup limit must be greater than 1. Use -1 to disable it.</target> | 9669 | <trans-unit id="5630311719329022718" datatype="html"> |
9670 | <source>Signup limit must be greater than 1. Use -1 to disable it.</source> | ||
9671 | <target state="new">Signup limit must be greater than 1. Use -1 to disable it.</target> | ||
9191 | <context-group purpose="location"> | 9672 | <context-group purpose="location"> |
9192 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9673 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9193 | <context context-type="linenumber">47</context> | 9674 | <context context-type="linenumber">47</context> |
9194 | </context-group> | 9675 | </context-group> |
9195 | </trans-unit> | 9676 | </trans-unit> |
9196 | |||
9197 | <trans-unit id="2555843408410000965" datatype="html"> | 9677 | <trans-unit id="2555843408410000965" datatype="html"> |
9198 | <source>Signup limit must be a number.</source> | 9678 | <source>Signup limit must be a number.</source> |
9199 | <target state="new">Signup limit must be a number.</target> | 9679 | <target state="new">Signup limit must be a number.</target> |
9200 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">48</context></context-group> | 9680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">48</context></context-group> |
9201 | </trans-unit><trans-unit id="346485141381099383" datatype="html"> | 9681 | </trans-unit> |
9202 | <source>Signup minimum age is required.</source><target state="new">Signup minimum age is required.</target> | 9682 | <trans-unit id="346485141381099383" datatype="html"> |
9683 | <source>Signup minimum age is required.</source> | ||
9684 | <target state="new">Signup minimum age is required.</target> | ||
9203 | <context-group purpose="location"> | 9685 | <context-group purpose="location"> |
9204 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9686 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9205 | <context context-type="linenumber">55</context> | 9687 | <context context-type="linenumber">55</context> |
9206 | </context-group> | 9688 | </context-group> |
9207 | </trans-unit><trans-unit id="4230672031132838318" datatype="html"> | 9689 | </trans-unit> |
9208 | <source>Signup minimum age must be greater than 1.</source><target state="new">Signup minimum age must be greater than 1.</target> | 9690 | <trans-unit id="4230672031132838318" datatype="html"> |
9691 | <source>Signup minimum age must be greater than 1.</source> | ||
9692 | <target state="new">Signup minimum age must be greater than 1.</target> | ||
9209 | <context-group purpose="location"> | 9693 | <context-group purpose="location"> |
9210 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9694 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9211 | <context context-type="linenumber">56</context> | 9695 | <context context-type="linenumber">56</context> |
9212 | </context-group> | 9696 | </context-group> |
9213 | </trans-unit><trans-unit id="5929230001329133993" datatype="html"> | 9697 | </trans-unit> |
9214 | <source>Signup minimum age must be a number.</source><target state="new">Signup minimum age must be a number.</target> | 9698 | <trans-unit id="5929230001329133993" datatype="html"> |
9699 | <source>Signup minimum age must be a number.</source> | ||
9700 | <target state="new">Signup minimum age must be a number.</target> | ||
9215 | <context-group purpose="location"> | 9701 | <context-group purpose="location"> |
9216 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9702 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9217 | <context context-type="linenumber">57</context> | 9703 | <context context-type="linenumber">57</context> |
@@ -9220,66 +9706,72 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9220 | <trans-unit id="240096858386658337" datatype="html"> | 9706 | <trans-unit id="240096858386658337" datatype="html"> |
9221 | <source>Admin email is required.</source> | 9707 | <source>Admin email is required.</source> |
9222 | <target state="new">Admin email is required.</target> | 9708 | <target state="new">Admin email is required.</target> |
9223 | 9709 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">64</context></context-group> | |
9224 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 9710 | </trans-unit> |
9225 | <trans-unit id="4392533896009432078" datatype="html"> | 9711 | <trans-unit id="4392533896009432078" datatype="html"> |
9226 | <source>Admin email must be valid.</source> | 9712 | <source>Admin email must be valid.</source> |
9227 | <target state="new">Admin email must be valid.</target> | 9713 | <target state="new">Admin email must be valid.</target> |
9228 | 9714 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">65</context></context-group> | |
9229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9715 | </trans-unit> |
9230 | <trans-unit id="6172217783476989430" datatype="html"> | 9716 | <trans-unit id="6172217783476989430" datatype="html"> |
9231 | <source>Transcoding threads is required.</source> | 9717 | <source>Transcoding threads is required.</source> |
9232 | <target state="new">Transcoding threads is required.</target> | 9718 | <target state="new">Transcoding threads is required.</target> |
9233 | 9719 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">72</context></context-group> | |
9234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9720 | </trans-unit> |
9235 | <trans-unit id="5320424292625586941" datatype="html"> | 9721 | <trans-unit id="5320424292625586941" datatype="html"> |
9236 | <source>Transcoding threads must be greater or equal to 0.</source> | 9722 | <source>Transcoding threads must be greater or equal to 0.</source> |
9237 | <target state="new">Transcoding threads must be greater or equal to 0.</target> | 9723 | <target state="new">Transcoding threads must be greater or equal to 0.</target> |
9238 | 9724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">73</context></context-group> | |
9239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> | 9725 | </trans-unit> |
9240 | <trans-unit id="8185661254949728718" datatype="html"> | 9726 | <trans-unit id="8185661254949728718" datatype="html"> |
9241 | <source>Max live duration is required.</source> | 9727 | <source>Max live duration is required.</source> |
9242 | <target state="new">Max live duration is required.</target> | 9728 | <target state="new">Max live duration is required.</target> |
9243 | 9729 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">80</context></context-group> | |
9244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 9730 | </trans-unit> |
9245 | <trans-unit id="8892863662898651766" datatype="html"> | 9731 | <trans-unit id="8892863662898651766" datatype="html"> |
9246 | <source>Max live duration should be greater or equal to -1.</source> | 9732 | <source>Max live duration should be greater or equal to -1.</source> |
9247 | <target state="new">Max live duration should be greater or equal to -1.</target> | 9733 | <target state="new">Max live duration should be greater or equal to -1.</target> |
9248 | 9734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">81</context></context-group> | |
9249 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 9735 | </trans-unit> |
9250 | <trans-unit id="8196240396863235661" datatype="html"> | 9736 | <trans-unit id="8196240396863235661" datatype="html"> |
9251 | <source>Max instance lives is required.</source> | 9737 | <source>Max instance lives is required.</source> |
9252 | <target state="new">Max instance lives is required.</target> | 9738 | <target state="new">Max instance lives is required.</target> |
9253 | 9739 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">88</context></context-group> | |
9254 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 9740 | </trans-unit> |
9255 | <trans-unit id="913683464711184925" datatype="html"> | 9741 | <trans-unit id="913683464711184925" datatype="html"> |
9256 | <source>Max instance lives should be greater or equal to -1.</source> | 9742 | <source>Max instance lives should be greater or equal to -1.</source> |
9257 | <target state="new">Max instance lives should be greater or equal to -1.</target> | 9743 | <target state="new">Max instance lives should be greater or equal to -1.</target> |
9258 | 9744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">89</context></context-group> | |
9259 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 9745 | </trans-unit> |
9260 | <trans-unit id="5614457087254770778" datatype="html"> | 9746 | <trans-unit id="5614457087254770778" datatype="html"> |
9261 | <source>Max user lives is required.</source> | 9747 | <source>Max user lives is required.</source> |
9262 | <target state="new">Max user lives is required.</target> | 9748 | <target state="new">Max user lives is required.</target> |
9263 | 9749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">96</context></context-group> | |
9264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 9750 | </trans-unit> |
9265 | <trans-unit id="2779726697233311712" datatype="html"> | 9751 | <trans-unit id="2779726697233311712" datatype="html"> |
9266 | <source>Max user lives should be greater or equal to -1.</source> | 9752 | <source>Max user lives should be greater or equal to -1.</source> |
9267 | <target state="new">Max user lives should be greater or equal to -1.</target> | 9753 | <target state="new">Max user lives should be greater or equal to -1.</target> |
9268 | 9754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">97</context></context-group> | |
9269 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">97</context></context-group></trans-unit><trans-unit id="351272950792130803" datatype="html"> | 9755 | </trans-unit> |
9270 | <source>Max video channels per user is required.</source><target state="new">Max video channels per user is required.</target> | 9756 | <trans-unit id="351272950792130803" datatype="html"> |
9757 | <source>Max video channels per user is required.</source> | ||
9758 | <target state="new">Max video channels per user is required.</target> | ||
9271 | <context-group purpose="location"> | 9759 | <context-group purpose="location"> |
9272 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9760 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9273 | <context context-type="linenumber">104</context> | 9761 | <context context-type="linenumber">104</context> |
9274 | </context-group> | 9762 | </context-group> |
9275 | </trans-unit><trans-unit id="5253683089104713724" datatype="html"> | 9763 | </trans-unit> |
9276 | <source>Max video channels per user must be greater or equal to 1.</source><target state="new">Max video channels per user must be greater or equal to 1.</target> | 9764 | <trans-unit id="5253683089104713724" datatype="html"> |
9765 | <source>Max video channels per user must be greater or equal to 1.</source> | ||
9766 | <target state="new">Max video channels per user must be greater or equal to 1.</target> | ||
9277 | <context-group purpose="location"> | 9767 | <context-group purpose="location"> |
9278 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9768 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9279 | <context context-type="linenumber">105</context> | 9769 | <context context-type="linenumber">105</context> |
9280 | </context-group> | 9770 | </context-group> |
9281 | </trans-unit><trans-unit id="8354695459880751923" datatype="html"> | 9771 | </trans-unit> |
9282 | <source>Max video channels per user must be a number.</source><target state="new">Max video channels per user must be a number.</target> | 9772 | <trans-unit id="8354695459880751923" datatype="html"> |
9773 | <source>Max video channels per user must be a number.</source> | ||
9774 | <target state="new">Max video channels per user must be a number.</target> | ||
9283 | <context-group purpose="location"> | 9775 | <context-group purpose="location"> |
9284 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 9776 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
9285 | <context context-type="linenumber">106</context> | 9777 | <context context-type="linenumber">106</context> |
@@ -9288,44 +9780,45 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9288 | <trans-unit id="5832601947705094130" datatype="html"> | 9780 | <trans-unit id="5832601947705094130" datatype="html"> |
9289 | <source>Concurrency is required.</source> | 9781 | <source>Concurrency is required.</source> |
9290 | <target state="new">Concurrency is required.</target> | 9782 | <target state="new">Concurrency is required.</target> |
9291 | 9783 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">113</context></context-group> | |
9292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 9784 | </trans-unit> |
9293 | <trans-unit id="4751566092251132371" datatype="html"> | 9785 | <trans-unit id="4751566092251132371" datatype="html"> |
9294 | <source>Concurrency should be greater or equal to 1.</source> | 9786 | <source>Concurrency should be greater or equal to 1.</source> |
9295 | <target state="new">Concurrency should be greater or equal to 1.</target> | 9787 | <target state="new">Concurrency should be greater or equal to 1.</target> |
9296 | 9788 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">114</context></context-group> | |
9297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 9789 | </trans-unit> |
9298 | <trans-unit id="75589896034107743" datatype="html"> | 9790 | <trans-unit id="75589896034107743" datatype="html"> |
9299 | <source>Index URL should be a URL</source> | 9791 | <source>Index URL should be a URL</source> |
9300 | <target state="new">Index URL should be a URL</target> | 9792 | <target state="new">Index URL should be a URL</target> |
9301 | 9793 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">121</context></context-group> | |
9302 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 9794 | </trans-unit> |
9303 | <trans-unit id="3964961007325702684" datatype="html"> | 9795 | <trans-unit id="3964961007325702684" datatype="html"> |
9304 | <source>Search index URL should be a URL</source> | 9796 | <source>Search index URL should be a URL</source> |
9305 | <target state="new">Search index URL should be a URL</target> | 9797 | <target state="new">Search index URL should be a URL</target> |
9306 | 9798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">128</context></context-group> | |
9307 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 9799 | </trans-unit> |
9308 | <trans-unit id="8602814243662345124" datatype="html"> | 9800 | <trans-unit id="8602814243662345124" datatype="html"> |
9309 | <source>Email is required.</source> | 9801 | <source>Email is required.</source> |
9310 | <target state="new">Email is required.</target> | 9802 | <target state="new">Email is required.</target> |
9311 | 9803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
9312 | 9804 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">39</context></context-group> | |
9313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 9805 | </trans-unit> |
9314 | <trans-unit id="4591482207344282590" datatype="html"> | 9806 | <trans-unit id="4591482207344282590" datatype="html"> |
9315 | <source>Email must be valid.</source> | 9807 | <source>Email must be valid.</source> |
9316 | <target state="new">Email must be valid.</target> | 9808 | <target state="new">Email must be valid.</target> |
9317 | 9809 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
9318 | 9810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">40</context></context-group> | |
9319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 9811 | </trans-unit> |
9320 | <trans-unit id="544279804045883862" datatype="html"> | 9812 | <trans-unit id="544279804045883862" datatype="html"> |
9321 | <source>Handle is required.</source> | 9813 | <source>Handle is required.</source> |
9322 | <target state="new">Handle is required.</target> | 9814 | <target state="new">Handle is required.</target> |
9323 | 9815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">50</context></context-group> | |
9324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="2805037637775107078" datatype="html"> | 9816 | </trans-unit> |
9325 | <source>Handle must be valid (eg. chocobozzz@example.com).</source><target state="new">Handle must be valid (eg. chocobozzz@example.com).</target> | 9817 | <trans-unit id="2805037637775107078" datatype="html"> |
9326 | 9818 | <source>Handle must be valid (eg. chocobozzz@example.com).</source> | |
9327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 9819 | <target state="new">Handle must be valid (eg. chocobozzz@example.com).</target> |
9328 | 9820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">51</context></context-group> | |
9821 | </trans-unit> | ||
9329 | <trans-unit id="4968369344159400023" datatype="html"> | 9822 | <trans-unit id="4968369344159400023" datatype="html"> |
9330 | <source>Your name is required.</source> | 9823 | <source>Your name is required.</source> |
9331 | <target state="new">Your name is required.</target> | 9824 | <target state="new">Your name is required.</target> |
@@ -9374,16 +9867,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9374 | <trans-unit id="3868123820758341861" datatype="html"> | 9867 | <trans-unit id="3868123820758341861" datatype="html"> |
9375 | <source>Username is required.</source> | 9868 | <source>Username is required.</source> |
9376 | <target state="new">Username is required.</target> | 9869 | <target state="new">Username is required.</target> |
9377 | 9870 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
9378 | 9871 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
9379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 9872 | </trans-unit> |
9380 | <trans-unit id="3577237269587081090" datatype="html"> | 9873 | <trans-unit id="3577237269587081090" datatype="html"> |
9381 | <source>Password is required.</source> | 9874 | <source>Password is required.</source> |
9382 | <target state="new">Password is required.</target> | 9875 | <target state="new">Password is required.</target> |
9383 | 9876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group> | |
9384 | 9877 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">60</context></context-group> | |
9385 | 9878 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group> | |
9386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 9879 | </trans-unit> |
9387 | <trans-unit id="3152303769378345477" datatype="html"> | 9880 | <trans-unit id="3152303769378345477" datatype="html"> |
9388 | <source>Confirmation of the password is required.</source> | 9881 | <source>Confirmation of the password is required.</source> |
9389 | <target state="new">Confirmation of the password is required.</target> | 9882 | <target state="new">Confirmation of the password is required.</target> |
@@ -9392,129 +9885,129 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9392 | <trans-unit id="4786141633412279939" datatype="html"> | 9885 | <trans-unit id="4786141633412279939" datatype="html"> |
9393 | <source>Username must be at least 1 character long.</source> | 9886 | <source>Username must be at least 1 character long.</source> |
9394 | <target state="new">Username must be at least 1 character long.</target> | 9887 | <target state="new">Username must be at least 1 character long.</target> |
9395 | 9888 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
9396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 9889 | </trans-unit> |
9397 | <trans-unit id="1019755749203839300" datatype="html"> | 9890 | <trans-unit id="1019755749203839300" datatype="html"> |
9398 | <source>Username cannot be more than 50 characters long.</source> | 9891 | <source>Username cannot be more than 50 characters long.</source> |
9399 | <target state="new">Username cannot be more than 50 characters long.</target> | 9892 | <target state="new">Username cannot be more than 50 characters long.</target> |
9400 | 9893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">16</context></context-group> | |
9401 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 9894 | </trans-unit> |
9402 | <trans-unit id="5621067256208426608" datatype="html"> | 9895 | <trans-unit id="5621067256208426608" datatype="html"> |
9403 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9896 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> |
9404 | <target state="new">Username should be lowercase alphanumeric; dots and underscores are allowed.</target> | 9897 | <target state="new">Username should be lowercase alphanumeric; dots and underscores are allowed.</target> |
9405 | 9898 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">17</context></context-group> | |
9406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 9899 | </trans-unit> |
9407 | <trans-unit id="6288154707582132676" datatype="html"> | 9900 | <trans-unit id="6288154707582132676" datatype="html"> |
9408 | <source>Channel name is required.</source> | 9901 | <source>Channel name is required.</source> |
9409 | <target state="new">Channel name is required.</target> | 9902 | <target state="new">Channel name is required.</target> |
9410 | 9903 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">29</context></context-group> | |
9411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 9904 | </trans-unit> |
9412 | <trans-unit id="8178814467139959283" datatype="html"> | 9905 | <trans-unit id="8178814467139959283" datatype="html"> |
9413 | <source>Channel name must be at least 1 character long.</source> | 9906 | <source>Channel name must be at least 1 character long.</source> |
9414 | <target state="new">Channel name must be at least 1 character long.</target> | 9907 | <target state="new">Channel name must be at least 1 character long.</target> |
9415 | 9908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">30</context></context-group> | |
9416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 9909 | </trans-unit> |
9417 | <trans-unit id="8602785819772117007" datatype="html"> | 9910 | <trans-unit id="8602785819772117007" datatype="html"> |
9418 | <source>Channel name cannot be more than 50 characters long.</source> | 9911 | <source>Channel name cannot be more than 50 characters long.</source> |
9419 | <target state="new">Channel name cannot be more than 50 characters long.</target> | 9912 | <target state="new">Channel name cannot be more than 50 characters long.</target> |
9420 | 9913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">31</context></context-group> | |
9421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 9914 | </trans-unit> |
9422 | <trans-unit id="3419415520566928243" datatype="html"> | 9915 | <trans-unit id="3419415520566928243" datatype="html"> |
9423 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> | 9916 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> |
9424 | <target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> | 9917 | <target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> |
9425 | 9918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">32</context></context-group> | |
9426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 9919 | </trans-unit> |
9427 | <trans-unit id="525871656034789056" datatype="html"> | 9920 | <trans-unit id="525871656034789056" datatype="html"> |
9428 | <source>Password must be at least 6 characters long.</source> | 9921 | <source>Password must be at least 6 characters long.</source> |
9429 | <target state="new">Password must be at least 6 characters long.</target> | 9922 | <target state="new">Password must be at least 6 characters long.</target> |
9430 | 9923 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">72</context></context-group> | |
9431 | 9924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">83</context></context-group> | |
9432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">72</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 9925 | </trans-unit> |
9433 | <trans-unit id="1099684476181448167" datatype="html"> | 9926 | <trans-unit id="1099684476181448167" datatype="html"> |
9434 | <source>Password cannot be more than 255 characters long.</source> | 9927 | <source>Password cannot be more than 255 characters long.</source> |
9435 | <target state="new">Password cannot be more than 255 characters long.</target> | 9928 | <target state="new">Password cannot be more than 255 characters long.</target> |
9436 | 9929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">73</context></context-group> | |
9437 | 9930 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">84</context></context-group> | |
9438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 9931 | </trans-unit> |
9439 | <trans-unit id="3392630942539073768" datatype="html"> | 9932 | <trans-unit id="3392630942539073768" datatype="html"> |
9440 | <source>The new password and the confirmed password do not correspond.</source> | 9933 | <source>The new password and the confirmed password do not correspond.</source> |
9441 | <target state="new">The new password and the confirmed password do not correspond.</target> | 9934 | <target state="new">The new password and the confirmed password do not correspond.</target> |
9442 | 9935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">91</context></context-group> | |
9443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 9936 | </trans-unit> |
9444 | <trans-unit id="2027337371129904473" datatype="html"> | 9937 | <trans-unit id="2027337371129904473" datatype="html"> |
9445 | <source>Video quota is required.</source> | 9938 | <source>Video quota is required.</source> |
9446 | <target state="new">Video quota is required.</target> | 9939 | <target state="new">Video quota is required.</target> |
9447 | 9940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">98</context></context-group> | |
9448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 9941 | </trans-unit> |
9449 | <trans-unit id="267386529333143660" datatype="html"> | 9942 | <trans-unit id="267386529333143660" datatype="html"> |
9450 | <source>Quota must be greater than -1.</source> | 9943 | <source>Quota must be greater than -1.</source> |
9451 | <target state="new">Quota must be greater than -1.</target> | 9944 | <target state="new">Quota must be greater than -1.</target> |
9452 | 9945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">99</context></context-group> | |
9453 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 9946 | </trans-unit> |
9454 | <trans-unit id="1220179061234048936" datatype="html"> | 9947 | <trans-unit id="1220179061234048936" datatype="html"> |
9455 | <source>Daily upload limit is required.</source> | 9948 | <source>Daily upload limit is required.</source> |
9456 | <target state="new">Daily upload limit is required.</target> | 9949 | <target state="new">Daily upload limit is required.</target> |
9457 | 9950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">105</context></context-group> | |
9458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 9951 | </trans-unit> |
9459 | <trans-unit id="8959404382357999234" datatype="html"> | 9952 | <trans-unit id="8959404382357999234" datatype="html"> |
9460 | <source>Daily upload limit must be greater than -1.</source> | 9953 | <source>Daily upload limit must be greater than -1.</source> |
9461 | <target state="new">Daily upload limit must be greater than -1.</target> | 9954 | <target state="new">Daily upload limit must be greater than -1.</target> |
9462 | 9955 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">106</context></context-group> | |
9463 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 9956 | </trans-unit> |
9464 | <trans-unit id="4796798537475457493" datatype="html"> | 9957 | <trans-unit id="4796798537475457493" datatype="html"> |
9465 | <source>User role is required.</source> | 9958 | <source>User role is required.</source> |
9466 | <target state="new">User role is required.</target> | 9959 | <target state="new">User role is required.</target> |
9467 | 9960 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">113</context></context-group> | |
9468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 9961 | </trans-unit> |
9469 | <trans-unit id="2761226139624435788" datatype="html"> | 9962 | <trans-unit id="2761226139624435788" datatype="html"> |
9470 | <source>Description must be at least 3 characters long.</source> | 9963 | <source>Description must be at least 3 characters long.</source> |
9471 | <target state="new">Description must be at least 3 characters long.</target> | 9964 | <target state="new">Description must be at least 3 characters long.</target> |
9472 | 9965 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">125</context></context-group> | |
9473 | 9966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">36</context></context-group> | |
9474 | 9967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group> | |
9475 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 9968 | </trans-unit> |
9476 | <trans-unit id="4717982586356605243" datatype="html"> | 9969 | <trans-unit id="4717982586356605243" datatype="html"> |
9477 | <source>Description cannot be more than 1000 characters long.</source> | 9970 | <source>Description cannot be more than 1000 characters long.</source> |
9478 | <target state="new">Description cannot be more than 1000 characters long.</target> | 9971 | <target state="new">Description cannot be more than 1000 characters long.</target> |
9479 | 9972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">126</context></context-group> | |
9480 | 9973 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">37</context></context-group> | |
9481 | 9974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group> | |
9482 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 9975 | </trans-unit> |
9483 | <trans-unit id="1814372869868173571" datatype="html"> | 9976 | <trans-unit id="1814372869868173571" datatype="html"> |
9484 | <source>You must agree with the instance terms in order to register on it.</source> | 9977 | <source>You must agree with the instance terms in order to register on it.</source> |
9485 | <target state="new">You must agree with the instance terms in order to register on it.</target> | 9978 | <target state="new">You must agree with the instance terms in order to register on it.</target> |
9486 | 9979 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">133</context></context-group> | |
9487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9980 | </trans-unit> |
9488 | <trans-unit id="7803960725351649605" datatype="html"> | 9981 | <trans-unit id="7803960725351649605" datatype="html"> |
9489 | <source>Ban reason must be at least 3 characters long.</source> | 9982 | <source>Ban reason must be at least 3 characters long.</source> |
9490 | <target state="new">Ban reason must be at least 3 characters long.</target> | 9983 | <target state="new">Ban reason must be at least 3 characters long.</target> |
9491 | 9984 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">143</context></context-group> | |
9492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 9985 | </trans-unit> |
9493 | <trans-unit id="3851609012243698179" datatype="html"> | 9986 | <trans-unit id="3851609012243698179" datatype="html"> |
9494 | <source>Ban reason cannot be more than 250 characters long.</source> | 9987 | <source>Ban reason cannot be more than 250 characters long.</source> |
9495 | <target state="new">Ban reason cannot be more than 250 characters long.</target> | 9988 | <target state="new">Ban reason cannot be more than 250 characters long.</target> |
9496 | 9989 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">144</context></context-group> | |
9497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 9990 | </trans-unit> |
9498 | <trans-unit id="6632896893630378443" datatype="html"> | 9991 | <trans-unit id="6632896893630378443" datatype="html"> |
9499 | <source>Display name is required.</source> | 9992 | <source>Display name is required.</source> |
9500 | <target state="new">Display name is required.</target> | 9993 | <target state="new">Display name is required.</target> |
9501 | 9994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group> | |
9502 | 9995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">24</context></context-group> | |
9503 | 9996 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
9504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 9997 | </trans-unit> |
9505 | <trans-unit id="1303578752658966736" datatype="html"> | 9998 | <trans-unit id="1303578752658966736" datatype="html"> |
9506 | <source>Display name must be at least 1 character long.</source> | 9999 | <source>Display name must be at least 1 character long.</source> |
9507 | <target state="new">Display name must be at least 1 character long.</target> | 10000 | <target state="new">Display name must be at least 1 character long.</target> |
9508 | 10001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">156</context></context-group> | |
9509 | 10002 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">25</context></context-group> | |
9510 | 10003 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
9511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">156</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 10004 | </trans-unit> |
9512 | <trans-unit id="4613240543124934954" datatype="html"> | 10005 | <trans-unit id="4613240543124934954" datatype="html"> |
9513 | <source>Display name cannot be more than 50 characters long.</source> | 10006 | <source>Display name cannot be more than 50 characters long.</source> |
9514 | <target state="new">Display name cannot be more than 50 characters long.</target> | 10007 | <target state="new">Display name cannot be more than 50 characters long.</target> |
9515 | 10008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">157</context></context-group> | |
9516 | 10009 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group> | |
9517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 10010 | </trans-unit> |
9518 | <trans-unit id="1000468652492651683" datatype="html"> | 10011 | <trans-unit id="1000468652492651683" datatype="html"> |
9519 | <source>Report reason is required.</source> | 10012 | <source>Report reason is required.</source> |
9520 | <target state="new">Report reason is required.</target> | 10013 | <target state="new">Report reason is required.</target> |
@@ -9584,8 +10077,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9584 | <source>Video caption file is required.</source> | 10077 | <source>Video caption file is required.</source> |
9585 | <target state="new">Video caption file is required.</target> | 10078 | <target state="new">Video caption file is required.</target> |
9586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> | 10079 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> |
9587 | </trans-unit><trans-unit id="9145435275110757909" datatype="html"> | 10080 | </trans-unit> |
9588 | <source>Caption content is required.</source><target state="new">Caption content is required.</target> | 10081 | <trans-unit id="9145435275110757909" datatype="html"> |
10082 | <source>Caption content is required.</source> | ||
10083 | <target state="new">Caption content is required.</target> | ||
9589 | <context-group purpose="location"> | 10084 | <context-group purpose="location"> |
9590 | <context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context> | 10085 | <context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context> |
9591 | <context context-type="linenumber">21</context> | 10086 | <context context-type="linenumber">21</context> |
@@ -9604,39 +10099,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9604 | <trans-unit id="4444753420973870540" datatype="html"> | 10099 | <trans-unit id="4444753420973870540" datatype="html"> |
9605 | <source>Name is required.</source> | 10100 | <source>Name is required.</source> |
9606 | <target state="new">Name is required.</target> | 10101 | <target state="new">Name is required.</target> |
9607 | 10102 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">10</context></context-group> | |
9608 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">10</context></context-group></trans-unit> | 10103 | </trans-unit> |
9609 | <trans-unit id="4006797705713167676" datatype="html"> | 10104 | <trans-unit id="4006797705713167676" datatype="html"> |
9610 | <source>Name must be at least 1 character long.</source> | 10105 | <source>Name must be at least 1 character long.</source> |
9611 | <target state="new">Name must be at least 1 character long.</target> | 10106 | <target state="new">Name must be at least 1 character long.</target> |
9612 | 10107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">11</context></context-group> | |
9613 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 10108 | </trans-unit> |
9614 | <trans-unit id="2233809696503670883" datatype="html"> | 10109 | <trans-unit id="2233809696503670883" datatype="html"> |
9615 | <source>Name cannot be more than 50 characters long.</source> | 10110 | <source>Name cannot be more than 50 characters long.</source> |
9616 | <target state="new">Name cannot be more than 50 characters long.</target> | 10111 | <target state="new">Name cannot be more than 50 characters long.</target> |
9617 | 10112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
9618 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 10113 | </trans-unit> |
9619 | <trans-unit id="7915656854942800659" datatype="html"> | 10114 | <trans-unit id="7915656854942800659" datatype="html"> |
9620 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 10115 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
9621 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> | 10116 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> |
9622 | 10117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
9623 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 10118 | </trans-unit> |
9624 | <trans-unit id="6880459830525364741" datatype="html"> | 10119 | <trans-unit id="6880459830525364741" datatype="html"> |
9625 | <source>Support text must be at least 3 characters long.</source> | 10120 | <source>Support text must be at least 3 characters long.</source> |
9626 | <target state="new">Support text must be at least 3 characters long.</target> | 10121 | <target state="new">Support text must be at least 3 characters long.</target> |
9627 | 10122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">47</context></context-group> | |
9628 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 10123 | </trans-unit> |
9629 | <trans-unit id="6461548560008228165" datatype="html"> | 10124 | <trans-unit id="6461548560008228165" datatype="html"> |
9630 | <source>Support text cannot be more than 1000 characters long</source> | 10125 | <source>Support text cannot be more than 1000 characters long</source> |
9631 | <target state="new">Support text cannot be more than 1000 characters long</target> | 10126 | <target state="new">Support text cannot be more than 1000 characters long</target> |
9632 | 10127 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> | |
9633 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 10128 | </trans-unit> |
9634 | <trans-unit id="5637879201055173642" datatype="html"> | 10129 | <trans-unit id="5637879201055173642" datatype="html"> |
9635 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> | 10130 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
9636 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. | 10131 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. |
9637 | </target> | 10132 | </target> |
9638 | 10133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> | |
9639 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 10134 | </trans-unit> |
9640 | <trans-unit id="4267638333776227701" datatype="html"> | 10135 | <trans-unit id="4267638333776227701" datatype="html"> |
9641 | <source>Comment is required.</source> | 10136 | <source>Comment is required.</source> |
9642 | <target state="new">Comment is required.</target> | 10137 | <target state="new">Comment is required.</target> |
@@ -9671,8 +10166,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9671 | <source>Live information</source> | 10166 | <source>Live information</source> |
9672 | <target state="new">Live information</target> | 10167 | <target state="new">Live information</target> |
9673 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">3</context></context-group> | 10168 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">3</context></context-group> |
9674 | </trans-unit><trans-unit id="5078078160576986217" datatype="html"> | 10169 | </trans-unit> |
9675 | <source>Permanent/Recurring live</source><target state="new">Permanent/Recurring live</target> | 10170 | <trans-unit id="5078078160576986217" datatype="html"> |
10171 | <source>Permanent/Recurring live</source> | ||
10172 | <target state="new">Permanent/Recurring live</target> | ||
9676 | <context-group purpose="location"> | 10173 | <context-group purpose="location"> |
9677 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | 10174 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
9678 | <context context-type="linenumber">10</context> | 10175 | <context context-type="linenumber">10</context> |
@@ -9681,38 +10178,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9681 | <trans-unit id="7220386604464537651" datatype="html"> | 10178 | <trans-unit id="7220386604464537651" datatype="html"> |
9682 | <source>Live RTMP Url</source> | 10179 | <source>Live RTMP Url</source> |
9683 | <target state="new">Live RTMP Url</target> | 10180 | <target state="new">Live RTMP Url</target> |
9684 | 10181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">245</context></context-group> | |
9685 | 10182 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group> | |
9686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">245</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="4956017863340142734" datatype="html"> | 10183 | </trans-unit> |
9687 | <source>Live RTMPS Url</source><target state="new">Live RTMPS Url</target> | 10184 | <trans-unit id="4956017863340142734" datatype="html"> |
9688 | 10185 | <source>Live RTMPS Url</source> | |
9689 | 10186 | <target state="new">Live RTMPS Url</target> | |
9690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 10187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group> |
10188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group> | ||
10189 | </trans-unit> | ||
9691 | <trans-unit id="1225050607125362052" datatype="html"> | 10190 | <trans-unit id="1225050607125362052" datatype="html"> |
9692 | <source>Live stream key</source> | 10191 | <source>Live stream key</source> |
9693 | <target state="new">Live stream key</target> | 10192 | <target state="new">Live stream key</target> |
9694 | 10193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">255</context></context-group> | |
9695 | 10194 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group> | |
9696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">255</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 10195 | </trans-unit> |
9697 | <trans-unit id="5058286083557987083" datatype="html"> | 10196 | <trans-unit id="5058286083557987083" datatype="html"> |
9698 | <source>âš ï¸ Never share your stream key with anyone.</source> | 10197 | <source>âš ï¸ Never share your stream key with anyone.</source> |
9699 | <target state="new">âš ï¸ Never share your stream key with anyone.</target> | 10198 | <target state="new">âš ï¸ Never share your stream key with anyone.</target> |
9700 | 10199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">258</context></context-group> | |
9701 | 10200 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group> | |
9702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">258</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="5941639683192662500" datatype="html"> | 10201 | </trans-unit> |
9703 | <source>This is a normal live</source><target state="new">This is a normal live</target> | 10202 | <trans-unit id="5941639683192662500" datatype="html"> |
9704 | 10203 | <source>This is a normal live</source> | |
9705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">264</context></context-group></trans-unit><trans-unit id="7263323611663811322" datatype="html"> | 10204 | <target state="new">This is a normal live</target> |
9706 | <source> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </source><target state="new"> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </target> | 10205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">264</context></context-group> |
9707 | 10206 | </trans-unit> | |
9708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">266</context></context-group></trans-unit><trans-unit id="2261925229535541622" datatype="html"> | 10207 | <trans-unit id="7263323611663811322" datatype="html"> |
9709 | <source>This is a permanent/recurring live</source><target state="new">This is a permanent/recurring live</target> | 10208 | <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source> |
9710 | 10209 | <target state="new"> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </target> | |
9711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">273</context></context-group></trans-unit><trans-unit id="6791299537270100091" datatype="html"> | 10210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">266</context></context-group> |
9712 | <source> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </source><target state="new"> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </target> | 10211 | </trans-unit> |
9713 | 10212 | <trans-unit id="2261925229535541622" datatype="html"> | |
9714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">275</context></context-group></trans-unit> | 10213 | <source>This is a permanent/recurring live</source> |
9715 | 10214 | <target state="new">This is a permanent/recurring live</target> | |
10215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">273</context></context-group> | ||
10216 | </trans-unit> | ||
10217 | <trans-unit id="6791299537270100091" datatype="html"> | ||
10218 | <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source> | ||
10219 | <target state="new"> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </target> | ||
10220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">275</context></context-group> | ||
10221 | </trans-unit> | ||
9716 | <trans-unit id="3112273530390098557" datatype="html"> | 10222 | <trans-unit id="3112273530390098557" datatype="html"> |
9717 | <source>Replay will be saved</source> | 10223 | <source>Replay will be saved</source> |
9718 | <target state="new">Replay will be saved</target> | 10224 | <target state="new">Replay will be saved</target> |
@@ -9724,19 +10230,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9724 | <trans-unit id="5437132245714159662" datatype="html"> | 10230 | <trans-unit id="5437132245714159662" datatype="html"> |
9725 | <source>Video name is required.</source> | 10231 | <source>Video name is required.</source> |
9726 | <target state="new">Video name is required.</target> | 10232 | <target state="new">Video name is required.</target> |
9727 | 10233 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
9728 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 10234 | </trans-unit> |
9729 | <trans-unit id="2807676084745266104" datatype="html"> | 10235 | <trans-unit id="2807676084745266104" datatype="html"> |
9730 | <source>Video name must be at least 3 characters long.</source> | 10236 | <source>Video name must be at least 3 characters long.</source> |
9731 | <target state="new">Video name must be at least 3 characters long.</target> | 10237 | <target state="new">Video name must be at least 3 characters long.</target> |
9732 | 10238 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">16</context></context-group> | |
9733 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 10239 | </trans-unit> |
9734 | <trans-unit id="2155414141025589556" datatype="html"> | 10240 | <trans-unit id="2155414141025589556" datatype="html"> |
9735 | <source>Video name cannot be more than 120 characters long.</source> | 10241 | <source>Video name cannot be more than 120 characters long.</source> |
9736 | <target state="new">Video name cannot be more than 120 characters long.</target> | 10242 | <target state="new">Video name cannot be more than 120 characters long.</target> |
9737 | 10243 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">17</context></context-group> | |
9738 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">17</context></context-group></trans-unit><trans-unit id="1074634769552897790" datatype="html"> | 10244 | </trans-unit> |
9739 | <source>Video name has leading or trailing whitespace.</source><target state="new">Video name has leading or trailing whitespace.</target> | 10245 | <trans-unit id="1074634769552897790" datatype="html"> |
10246 | <source>Video name has leading or trailing whitespace.</source> | ||
10247 | <target state="new">Video name has leading or trailing whitespace.</target> | ||
9740 | <context-group purpose="location"> | 10248 | <context-group purpose="location"> |
9741 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> | 10249 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> |
9742 | <context context-type="linenumber">18</context> | 10250 | <context context-type="linenumber">18</context> |
@@ -9745,58 +10253,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9745 | <trans-unit id="9115337161597088460" datatype="html"> | 10253 | <trans-unit id="9115337161597088460" datatype="html"> |
9746 | <source>Video privacy is required.</source> | 10254 | <source>Video privacy is required.</source> |
9747 | <target state="new">Video privacy is required.</target> | 10255 | <target state="new">Video privacy is required.</target> |
9748 | 10256 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">25</context></context-group> | |
9749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 10257 | </trans-unit> |
9750 | <trans-unit id="7309902991450450996" datatype="html"> | 10258 | <trans-unit id="7309902991450450996" datatype="html"> |
9751 | <source>Video channel is required.</source> | 10259 | <source>Video channel is required.</source> |
9752 | <target state="new">Video channel is required.</target> | 10260 | <target state="new">Video channel is required.</target> |
9753 | 10261 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">52</context></context-group> | |
9754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 10262 | </trans-unit> |
9755 | <trans-unit id="3959376623771116873" datatype="html"> | 10263 | <trans-unit id="3959376623771116873" datatype="html"> |
9756 | <source>Video description must be at least 3 characters long.</source> | 10264 | <source>Video description must be at least 3 characters long.</source> |
9757 | <target state="new">Video description must be at least 3 characters long.</target> | 10265 | <target state="new">Video description must be at least 3 characters long.</target> |
9758 | 10266 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">59</context></context-group> | |
9759 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 10267 | </trans-unit> |
9760 | <trans-unit id="725195891739570830" datatype="html"> | 10268 | <trans-unit id="725195891739570830" datatype="html"> |
9761 | <source>Video description cannot be more than 10000 characters long.</source> | 10269 | <source>Video description cannot be more than 10000 characters long.</source> |
9762 | <target state="new">Video description cannot be more than 10000 characters long.</target> | 10270 | <target state="new">Video description cannot be more than 10000 characters long.</target> |
9763 | 10271 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">60</context></context-group> | |
9764 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 10272 | </trans-unit> |
9765 | <trans-unit id="142488285332434408" datatype="html"> | 10273 | <trans-unit id="142488285332434408" datatype="html"> |
9766 | <source>A tag should be more than 2 characters long.</source> | 10274 | <source>A tag should be more than 2 characters long.</source> |
9767 | <target state="new">A tag should be more than 2 characters long.</target> | 10275 | <target state="new">A tag should be more than 2 characters long.</target> |
9768 | 10276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">67</context></context-group> | |
9769 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 10277 | </trans-unit> |
9770 | <trans-unit id="691846635236293620" datatype="html"> | 10278 | <trans-unit id="691846635236293620" datatype="html"> |
9771 | <source>A tag should be less than 30 characters long.</source> | 10279 | <source>A tag should be less than 30 characters long.</source> |
9772 | <target state="new">A tag should be less than 30 characters long.</target> | 10280 | <target state="new">A tag should be less than 30 characters long.</target> |
9773 | 10281 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">68</context></context-group> | |
9774 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | 10282 | </trans-unit> |
9775 | <trans-unit id="4146790476782316573" datatype="html"> | 10283 | <trans-unit id="4146790476782316573" datatype="html"> |
9776 | <source>A maximum of 5 tags can be used on a video.</source> | 10284 | <source>A maximum of 5 tags can be used on a video.</source> |
9777 | <target state="new">A maximum of 5 tags can be used on a video.</target> | 10285 | <target state="new">A maximum of 5 tags can be used on a video.</target> |
9778 | 10286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">75</context></context-group> | |
9779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 10287 | </trans-unit> |
9780 | <trans-unit id="2389667090302909529" datatype="html"> | 10288 | <trans-unit id="2389667090302909529" datatype="html"> |
9781 | <source>A tag should be more than 1 and less than 30 characters long.</source> | 10289 | <source>A tag should be more than 1 and less than 30 characters long.</source> |
9782 | <target state="new">A tag should be more than 1 and less than 30 characters long.</target> | 10290 | <target state="new">A tag should be more than 1 and less than 30 characters long.</target> |
9783 | 10291 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">76</context></context-group> | |
9784 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 10292 | </trans-unit> |
9785 | <trans-unit id="4806300480558315727" datatype="html"> | 10293 | <trans-unit id="4806300480558315727" datatype="html"> |
9786 | <source>Video support must be at least 3 characters long.</source> | 10294 | <source>Video support must be at least 3 characters long.</source> |
9787 | <target state="new">Video support must be at least 3 characters long.</target> | 10295 | <target state="new">Video support must be at least 3 characters long.</target> |
9788 | 10296 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">83</context></context-group> | |
9789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 10297 | </trans-unit> |
9790 | <trans-unit id="6655773021893755977" datatype="html"> | 10298 | <trans-unit id="6655773021893755977" datatype="html"> |
9791 | <source>Video support cannot be more than 1000 characters long.</source> | 10299 | <source>Video support cannot be more than 1000 characters long.</source> |
9792 | <target state="new">Video support cannot be more than 1000 characters long.</target> | 10300 | <target state="new">Video support cannot be more than 1000 characters long.</target> |
9793 | 10301 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">84</context></context-group> | |
9794 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 10302 | </trans-unit> |
9795 | <trans-unit id="4246579596585402255" datatype="html"> | 10303 | <trans-unit id="4246579596585402255" datatype="html"> |
9796 | <source>A date is required to schedule video update.</source> | 10304 | <source>A date is required to schedule video update.</source> |
9797 | <target state="new">A date is required to schedule video update.</target> | 10305 | <target state="new">A date is required to schedule video update.</target> |
9798 | 10306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">91</context></context-group> | |
9799 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 10307 | </trans-unit> |
9800 | <trans-unit id="8728283516316752593" datatype="html"> | 10308 | <trans-unit id="8728283516316752593" datatype="html"> |
9801 | <source>This file is too large.</source> | 10309 | <source>This file is too large.</source> |
9802 | <target state="new">This file is too large.</target> | 10310 | <target state="new">This file is too large.</target> |
@@ -9806,14 +10314,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9806 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 10314 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9807 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> | 10315 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> |
9808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">56</context></context-group> | 10316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">56</context></context-group> |
9809 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 10317 | </trans-unit> |
9810 | <source>All categories</source><target state="new">All categories</target> | 10318 | <trans-unit id="3393133458004181121" datatype="html"> |
10319 | <source>All categories</source> | ||
10320 | <target state="new">All categories</target> | ||
9811 | <context-group purpose="location"> | 10321 | <context-group purpose="location"> |
9812 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 10322 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9813 | <context context-type="linenumber">24</context> | 10323 | <context context-type="linenumber">24</context> |
9814 | </context-group> | 10324 | </context-group> |
9815 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 10325 | </trans-unit> |
9816 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source><target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | 10326 | <trans-unit id="3999967345340145904" datatype="html"> |
10327 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
10328 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | ||
9817 | <context-group purpose="location"> | 10329 | <context-group purpose="location"> |
9818 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 10330 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9819 | <context context-type="linenumber">81</context> | 10331 | <context context-type="linenumber">81</context> |
@@ -9822,13 +10334,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9822 | <trans-unit id="6708273825233539746" datatype="html"> | 10334 | <trans-unit id="6708273825233539746" datatype="html"> |
9823 | <source>Add a new option</source> | 10335 | <source>Add a new option</source> |
9824 | <target state="new">Add a new option</target> | 10336 | <target state="new">Add a new option</target> |
9825 | 10337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">29</context></context-group> | |
9826 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 10338 | </trans-unit> |
9827 | <trans-unit id="4076995379551303829" datatype="html"> | 10339 | <trans-unit id="4076995379551303829" datatype="html"> |
9828 | <source>Custom value...</source> | 10340 | <source>Custom value...</source> |
9829 | <target state="new">Custom value...</target> | 10341 | <target state="new">Custom value...</target> |
9830 | 10342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-custom-value.component.ts</context><context context-type="linenumber">70</context></context-group> | |
9831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-custom-value.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 10343 | </trans-unit> |
9832 | <trans-unit id="4670312387769733978" datatype="html"> | 10344 | <trans-unit id="4670312387769733978" datatype="html"> |
9833 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> | 10345 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> |
9834 | <target state="new">All unsaved data will be lost, are you sure you want to leave this page?</target> | 10346 | <target state="new">All unsaved data will be lost, are you sure you want to leave this page?</target> |
@@ -9837,143 +10349,171 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9837 | <trans-unit id="6950140976689343775" datatype="html"> | 10349 | <trans-unit id="6950140976689343775" datatype="html"> |
9838 | <source>Sunday</source> | 10350 | <source>Sunday</source> |
9839 | <target state="new">Sunday</target> | 10351 | <target state="new">Sunday</target> |
9840 | 10352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">10</context></context-group> | |
9841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">10</context></context-group></trans-unit> | 10353 | </trans-unit> |
9842 | <trans-unit id="8739442281958563044" datatype="html"> | 10354 | <trans-unit id="8739442281958563044" datatype="html"> |
9843 | <source>Monday</source> | 10355 | <source>Monday</source> |
9844 | <target state="new">Monday</target> | 10356 | <target state="new">Monday</target> |
9845 | 10357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">11</context></context-group> | |
9846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 10358 | </trans-unit> |
9847 | <trans-unit id="9176037901730521018" datatype="html"> | 10359 | <trans-unit id="9176037901730521018" datatype="html"> |
9848 | <source>Tuesday</source> | 10360 | <source>Tuesday</source> |
9849 | <target state="new">Tuesday</target> | 10361 | <target state="new">Tuesday</target> |
9850 | 10362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">12</context></context-group> | |
9851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 10363 | </trans-unit> |
9852 | <trans-unit id="8798932904948432529" datatype="html"> | 10364 | <trans-unit id="8798932904948432529" datatype="html"> |
9853 | <source>Wednesday</source> | 10365 | <source>Wednesday</source> |
9854 | <target state="new">Wednesday</target> | 10366 | <target state="new">Wednesday</target> |
9855 | 10367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">13</context></context-group> | |
9856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 10368 | </trans-unit> |
9857 | <trans-unit id="1433683192825895947" datatype="html"> | 10369 | <trans-unit id="1433683192825895947" datatype="html"> |
9858 | <source>Thursday</source> | 10370 | <source>Thursday</source> |
9859 | <target state="new">Thursday</target> | 10371 | <target state="new">Thursday</target> |
9860 | 10372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">14</context></context-group> | |
9861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 10373 | </trans-unit> |
9862 | <trans-unit id="3730139500618908668" datatype="html"> | 10374 | <trans-unit id="3730139500618908668" datatype="html"> |
9863 | <source>Friday</source> | 10375 | <source>Friday</source> |
9864 | <target state="new">Friday</target> | 10376 | <target state="new">Friday</target> |
9865 | 10377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">15</context></context-group> | |
9866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 10378 | </trans-unit> |
9867 | <trans-unit id="1830554030016307335" datatype="html"> | 10379 | <trans-unit id="1830554030016307335" datatype="html"> |
9868 | <source>Saturday</source> | 10380 | <source>Saturday</source> |
9869 | <target state="new">Saturday</target> | 10381 | <target state="new">Saturday</target> |
9870 | 10382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">16</context></context-group> | |
9871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="1391351050292665308" datatype="html"> | 10383 | </trans-unit> |
9872 | <source>Sun</source><target state="new">Sun</target> | 10384 | <trans-unit id="1391351050292665308" datatype="html"> |
10385 | <source>Sun</source> | ||
10386 | <target state="new">Sun</target> | ||
9873 | <context-group purpose="location"> | 10387 | <context-group purpose="location"> |
9874 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10388 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9875 | <context context-type="linenumber">20</context> | 10389 | <context context-type="linenumber">20</context> |
9876 | </context-group> | 10390 | </context-group> |
9877 | <note priority="1" from="description">Day name short</note> | 10391 | <note priority="1" from="description">Day name short</note> |
9878 | <note priority="1" from="meaning">Sunday short name</note> | 10392 | <note priority="1" from="meaning">Sunday short name</note> |
9879 | </trans-unit><trans-unit id="7037142944838911104" datatype="html"> | 10393 | </trans-unit> |
9880 | <source>Mon</source><target state="new">Mon</target> | 10394 | <trans-unit id="7037142944838911104" datatype="html"> |
10395 | <source>Mon</source> | ||
10396 | <target state="new">Mon</target> | ||
9881 | <context-group purpose="location"> | 10397 | <context-group purpose="location"> |
9882 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10398 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9883 | <context context-type="linenumber">21</context> | 10399 | <context context-type="linenumber">21</context> |
9884 | </context-group> | 10400 | </context-group> |
9885 | <note priority="1" from="description">Day name short</note> | 10401 | <note priority="1" from="description">Day name short</note> |
9886 | <note priority="1" from="meaning">Monday short name</note> | 10402 | <note priority="1" from="meaning">Monday short name</note> |
9887 | </trans-unit><trans-unit id="4051951828654963549" datatype="html"> | 10403 | </trans-unit> |
9888 | <source>Tue</source><target state="new">Tue</target> | 10404 | <trans-unit id="4051951828654963549" datatype="html"> |
10405 | <source>Tue</source> | ||
10406 | <target state="new">Tue</target> | ||
9889 | <context-group purpose="location"> | 10407 | <context-group purpose="location"> |
9890 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10408 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9891 | <context context-type="linenumber">22</context> | 10409 | <context context-type="linenumber">22</context> |
9892 | </context-group> | 10410 | </context-group> |
9893 | <note priority="1" from="description">Day name short</note> | 10411 | <note priority="1" from="description">Day name short</note> |
9894 | <note priority="1" from="meaning">Tuesday short name</note> | 10412 | <note priority="1" from="meaning">Tuesday short name</note> |
9895 | </trans-unit><trans-unit id="5265738215297391426" datatype="html"> | 10413 | </trans-unit> |
9896 | <source>Wed</source><target state="new">Wed</target> | 10414 | <trans-unit id="5265738215297391426" datatype="html"> |
10415 | <source>Wed</source> | ||
10416 | <target state="new">Wed</target> | ||
9897 | <context-group purpose="location"> | 10417 | <context-group purpose="location"> |
9898 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10418 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9899 | <context context-type="linenumber">23</context> | 10419 | <context context-type="linenumber">23</context> |
9900 | </context-group> | 10420 | </context-group> |
9901 | <note priority="1" from="description">Day name short</note> | 10421 | <note priority="1" from="description">Day name short</note> |
9902 | <note priority="1" from="meaning">Wednesday short name</note> | 10422 | <note priority="1" from="meaning">Wednesday short name</note> |
9903 | </trans-unit><trans-unit id="1370330981433231150" datatype="html"> | 10423 | </trans-unit> |
9904 | <source>Thu</source><target state="new">Thu</target> | 10424 | <trans-unit id="1370330981433231150" datatype="html"> |
10425 | <source>Thu</source> | ||
10426 | <target state="new">Thu</target> | ||
9905 | <context-group purpose="location"> | 10427 | <context-group purpose="location"> |
9906 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10428 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9907 | <context context-type="linenumber">24</context> | 10429 | <context context-type="linenumber">24</context> |
9908 | </context-group> | 10430 | </context-group> |
9909 | <note priority="1" from="description">Day name short</note> | 10431 | <note priority="1" from="description">Day name short</note> |
9910 | <note priority="1" from="meaning">Thursday short name</note> | 10432 | <note priority="1" from="meaning">Thursday short name</note> |
9911 | </trans-unit><trans-unit id="8713535243933137493" datatype="html"> | 10433 | </trans-unit> |
9912 | <source>Fri</source><target state="new">Fri</target> | 10434 | <trans-unit id="8713535243933137493" datatype="html"> |
10435 | <source>Fri</source> | ||
10436 | <target state="new">Fri</target> | ||
9913 | <context-group purpose="location"> | 10437 | <context-group purpose="location"> |
9914 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10438 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9915 | <context context-type="linenumber">25</context> | 10439 | <context context-type="linenumber">25</context> |
9916 | </context-group> | 10440 | </context-group> |
9917 | <note priority="1" from="description">Day name short</note> | 10441 | <note priority="1" from="description">Day name short</note> |
9918 | <note priority="1" from="meaning">Friday short name</note> | 10442 | <note priority="1" from="meaning">Friday short name</note> |
9919 | </trans-unit><trans-unit id="3547824477629753314" datatype="html"> | 10443 | </trans-unit> |
9920 | <source>Sat</source><target state="new">Sat</target> | 10444 | <trans-unit id="3547824477629753314" datatype="html"> |
10445 | <source>Sat</source> | ||
10446 | <target state="new">Sat</target> | ||
9921 | <context-group purpose="location"> | 10447 | <context-group purpose="location"> |
9922 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10448 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9923 | <context context-type="linenumber">26</context> | 10449 | <context context-type="linenumber">26</context> |
9924 | </context-group> | 10450 | </context-group> |
9925 | <note priority="1" from="description">Day name short</note> | 10451 | <note priority="1" from="description">Day name short</note> |
9926 | <note priority="1" from="meaning">Saturday short name</note> | 10452 | <note priority="1" from="meaning">Saturday short name</note> |
9927 | </trans-unit><trans-unit id="6115403217651453591" datatype="html"> | 10453 | </trans-unit> |
9928 | <source>Su</source><target state="new">Su</target> | 10454 | <trans-unit id="6115403217651453591" datatype="html"> |
10455 | <source>Su</source> | ||
10456 | <target state="new">Su</target> | ||
9929 | <context-group purpose="location"> | 10457 | <context-group purpose="location"> |
9930 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10458 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9931 | <context context-type="linenumber">30</context> | 10459 | <context context-type="linenumber">30</context> |
9932 | </context-group> | 10460 | </context-group> |
9933 | <note priority="1" from="description">Day name min</note> | 10461 | <note priority="1" from="description">Day name min</note> |
9934 | <note priority="1" from="meaning">Sunday min name</note> | 10462 | <note priority="1" from="meaning">Sunday min name</note> |
9935 | </trans-unit><trans-unit id="3797918310510782582" datatype="html"> | 10463 | </trans-unit> |
9936 | <source>Mo</source><target state="new">Mo</target> | 10464 | <trans-unit id="3797918310510782582" datatype="html"> |
10465 | <source>Mo</source> | ||
10466 | <target state="new">Mo</target> | ||
9937 | <context-group purpose="location"> | 10467 | <context-group purpose="location"> |
9938 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10468 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9939 | <context context-type="linenumber">31</context> | 10469 | <context context-type="linenumber">31</context> |
9940 | </context-group> | 10470 | </context-group> |
9941 | <note priority="1" from="description">Day name min</note> | 10471 | <note priority="1" from="description">Day name min</note> |
9942 | <note priority="1" from="meaning">Monday min name</note> | 10472 | <note priority="1" from="meaning">Monday min name</note> |
9943 | </trans-unit><trans-unit id="8011371911136291436" datatype="html"> | 10473 | </trans-unit> |
9944 | <source>Tu</source><target state="new">Tu</target> | 10474 | <trans-unit id="8011371911136291436" datatype="html"> |
10475 | <source>Tu</source> | ||
10476 | <target state="new">Tu</target> | ||
9945 | <context-group purpose="location"> | 10477 | <context-group purpose="location"> |
9946 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10478 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9947 | <context context-type="linenumber">32</context> | 10479 | <context context-type="linenumber">32</context> |
9948 | </context-group> | 10480 | </context-group> |
9949 | <note priority="1" from="description">Day name min</note> | 10481 | <note priority="1" from="description">Day name min</note> |
9950 | <note priority="1" from="meaning">Tuesday min name</note> | 10482 | <note priority="1" from="meaning">Tuesday min name</note> |
9951 | </trans-unit><trans-unit id="1673380870543456256" datatype="html"> | 10483 | </trans-unit> |
9952 | <source>We</source><target state="new">We</target> | 10484 | <trans-unit id="1673380870543456256" datatype="html"> |
10485 | <source>We</source> | ||
10486 | <target state="new">We</target> | ||
9953 | <context-group purpose="location"> | 10487 | <context-group purpose="location"> |
9954 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10488 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9955 | <context context-type="linenumber">33</context> | 10489 | <context context-type="linenumber">33</context> |
9956 | </context-group> | 10490 | </context-group> |
9957 | <note priority="1" from="description">Day name min</note> | 10491 | <note priority="1" from="description">Day name min</note> |
9958 | <note priority="1" from="meaning">Wednesday min name</note> | 10492 | <note priority="1" from="meaning">Wednesday min name</note> |
9959 | </trans-unit><trans-unit id="8502005439670299526" datatype="html"> | 10493 | </trans-unit> |
9960 | <source>Th</source><target state="new">Th</target> | 10494 | <trans-unit id="8502005439670299526" datatype="html"> |
10495 | <source>Th</source> | ||
10496 | <target state="new">Th</target> | ||
9961 | <context-group purpose="location"> | 10497 | <context-group purpose="location"> |
9962 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10498 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9963 | <context context-type="linenumber">34</context> | 10499 | <context context-type="linenumber">34</context> |
9964 | </context-group> | 10500 | </context-group> |
9965 | <note priority="1" from="description">Day name min</note> | 10501 | <note priority="1" from="description">Day name min</note> |
9966 | <note priority="1" from="meaning">Thursday min name</note> | 10502 | <note priority="1" from="meaning">Thursday min name</note> |
9967 | </trans-unit><trans-unit id="2800261787799336637" datatype="html"> | 10503 | </trans-unit> |
9968 | <source>Fr</source><target state="new">Fr</target> | 10504 | <trans-unit id="2800261787799336637" datatype="html"> |
10505 | <source>Fr</source> | ||
10506 | <target state="new">Fr</target> | ||
9969 | <context-group purpose="location"> | 10507 | <context-group purpose="location"> |
9970 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10508 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9971 | <context context-type="linenumber">35</context> | 10509 | <context context-type="linenumber">35</context> |
9972 | </context-group> | 10510 | </context-group> |
9973 | <note priority="1" from="description">Day name min</note> | 10511 | <note priority="1" from="description">Day name min</note> |
9974 | <note priority="1" from="meaning">Friday min name</note> | 10512 | <note priority="1" from="meaning">Friday min name</note> |
9975 | </trans-unit><trans-unit id="2045915324506422459" datatype="html"> | 10513 | </trans-unit> |
9976 | <source>Sa</source><target state="new">Sa</target> | 10514 | <trans-unit id="2045915324506422459" datatype="html"> |
10515 | <source>Sa</source> | ||
10516 | <target state="new">Sa</target> | ||
9977 | <context-group purpose="location"> | 10517 | <context-group purpose="location"> |
9978 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10518 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
9979 | <context context-type="linenumber">36</context> | 10519 | <context context-type="linenumber">36</context> |
@@ -9981,170 +10521,179 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9981 | <note priority="1" from="description">Day name min</note> | 10521 | <note priority="1" from="description">Day name min</note> |
9982 | <note priority="1" from="meaning">Saturday min name</note> | 10522 | <note priority="1" from="meaning">Saturday min name</note> |
9983 | </trans-unit> | 10523 | </trans-unit> |
9984 | |||
9985 | |||
9986 | |||
9987 | |||
9988 | |||
9989 | |||
9990 | |||
9991 | |||
9992 | |||
9993 | |||
9994 | |||
9995 | |||
9996 | |||
9997 | |||
9998 | <trans-unit id="3913843642962116845" datatype="html"> | 10524 | <trans-unit id="3913843642962116845" datatype="html"> |
9999 | <source>January</source> | 10525 | <source>January</source> |
10000 | <target state="new">January</target> | 10526 | <target state="new">January</target> |
10001 | 10527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">40</context></context-group> | |
10002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 10528 | </trans-unit> |
10003 | <trans-unit id="6642324138857419870" datatype="html"> | 10529 | <trans-unit id="6642324138857419870" datatype="html"> |
10004 | <source>February</source> | 10530 | <source>February</source> |
10005 | <target state="new">February</target> | 10531 | <target state="new">February</target> |
10006 | 10532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">41</context></context-group> | |
10007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 10533 | </trans-unit> |
10008 | <trans-unit id="7918954644624211958" datatype="html"> | 10534 | <trans-unit id="7918954644624211958" datatype="html"> |
10009 | <source>March</source> | 10535 | <source>March</source> |
10010 | <target state="new">March</target> | 10536 | <target state="new">March</target> |
10011 | 10537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">42</context></context-group> | |
10012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 10538 | </trans-unit> |
10013 | <trans-unit id="1809521303476565743" datatype="html"> | 10539 | <trans-unit id="1809521303476565743" datatype="html"> |
10014 | <source>April</source> | 10540 | <source>April</source> |
10015 | <target state="new">April</target> | 10541 | <target state="new">April</target> |
10016 | 10542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">43</context></context-group> | |
10017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 10543 | </trans-unit> |
10018 | <trans-unit id="8469692700277617405" datatype="html"> | 10544 | <trans-unit id="8469692700277617405" datatype="html"> |
10019 | <source>May</source> | 10545 | <source>May</source> |
10020 | <target state="new">May</target> | 10546 | <target state="new">May</target> |
10021 | 10547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group> | |
10022 | 10548 | </trans-unit> | |
10023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | ||
10024 | <trans-unit id="9055297580745330415" datatype="html"> | 10549 | <trans-unit id="9055297580745330415" datatype="html"> |
10025 | <source>June</source> | 10550 | <source>June</source> |
10026 | <target state="new">June</target> | 10551 | <target state="new">June</target> |
10027 | 10552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">45</context></context-group> | |
10028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 10553 | </trans-unit> |
10029 | <trans-unit id="9087113544612471348" datatype="html"> | 10554 | <trans-unit id="9087113544612471348" datatype="html"> |
10030 | <source>July</source> | 10555 | <source>July</source> |
10031 | <target state="new">July</target> | 10556 | <target state="new">July</target> |
10032 | 10557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">46</context></context-group> | |
10033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10558 | </trans-unit> |
10034 | <trans-unit id="3984618989093293779" datatype="html"> | 10559 | <trans-unit id="3984618989093293779" datatype="html"> |
10035 | <source>August</source> | 10560 | <source>August</source> |
10036 | <target state="new">August</target> | 10561 | <target state="new">August</target> |
10037 | 10562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">47</context></context-group> | |
10038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 10563 | </trans-unit> |
10039 | <trans-unit id="5872622085239011307" datatype="html"> | 10564 | <trans-unit id="5872622085239011307" datatype="html"> |
10040 | <source>September</source> | 10565 | <source>September</source> |
10041 | <target state="new">September</target> | 10566 | <target state="new">September</target> |
10042 | 10567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">48</context></context-group> | |
10043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 10568 | </trans-unit> |
10044 | <trans-unit id="1491482705364427867" datatype="html"> | 10569 | <trans-unit id="1491482705364427867" datatype="html"> |
10045 | <source>October</source> | 10570 | <source>October</source> |
10046 | <target state="new">October</target> | 10571 | <target state="new">October</target> |
10047 | 10572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">49</context></context-group> | |
10048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 10573 | </trans-unit> |
10049 | <trans-unit id="1109977718843277527" datatype="html"> | 10574 | <trans-unit id="1109977718843277527" datatype="html"> |
10050 | <source>November</source> | 10575 | <source>November</source> |
10051 | <target state="new">November</target> | 10576 | <target state="new">November</target> |
10052 | 10577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">50</context></context-group> | |
10053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 10578 | </trans-unit> |
10054 | <trans-unit id="124191049522509365" datatype="html"> | 10579 | <trans-unit id="124191049522509365" datatype="html"> |
10055 | <source>December</source> | 10580 | <source>December</source> |
10056 | <target state="new">December</target> | 10581 | <target state="new">December</target> |
10057 | 10582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">51</context></context-group> | |
10058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">51</context></context-group></trans-unit><trans-unit id="1799348348510504995" datatype="html"> | 10583 | </trans-unit> |
10059 | <source>Jan</source><target state="new">Jan</target> | 10584 | <trans-unit id="1799348348510504995" datatype="html"> |
10585 | <source>Jan</source> | ||
10586 | <target state="new">Jan</target> | ||
10060 | <context-group purpose="location"> | 10587 | <context-group purpose="location"> |
10061 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10588 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10062 | <context context-type="linenumber">55</context> | 10589 | <context context-type="linenumber">55</context> |
10063 | </context-group> | 10590 | </context-group> |
10064 | <note priority="1" from="description">Month name short</note> | 10591 | <note priority="1" from="description">Month name short</note> |
10065 | <note priority="1" from="meaning">January short name</note> | 10592 | <note priority="1" from="meaning">January short name</note> |
10066 | </trans-unit><trans-unit id="2980544278361296608" datatype="html"> | 10593 | </trans-unit> |
10067 | <source>Feb</source><target state="new">Feb</target> | 10594 | <trans-unit id="2980544278361296608" datatype="html"> |
10595 | <source>Feb</source> | ||
10596 | <target state="new">Feb</target> | ||
10068 | <context-group purpose="location"> | 10597 | <context-group purpose="location"> |
10069 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10598 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10070 | <context context-type="linenumber">56</context> | 10599 | <context context-type="linenumber">56</context> |
10071 | </context-group> | 10600 | </context-group> |
10072 | <note priority="1" from="description">Month name short</note> | 10601 | <note priority="1" from="description">Month name short</note> |
10073 | <note priority="1" from="meaning">February short name</note> | 10602 | <note priority="1" from="meaning">February short name</note> |
10074 | </trans-unit><trans-unit id="3124926955462217092" datatype="html"> | 10603 | </trans-unit> |
10075 | <source>Mar</source><target state="new">Mar</target> | 10604 | <trans-unit id="3124926955462217092" datatype="html"> |
10605 | <source>Mar</source> | ||
10606 | <target state="new">Mar</target> | ||
10076 | <context-group purpose="location"> | 10607 | <context-group purpose="location"> |
10077 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10608 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10078 | <context context-type="linenumber">57</context> | 10609 | <context context-type="linenumber">57</context> |
10079 | </context-group> | 10610 | </context-group> |
10080 | <note priority="1" from="description">Month name short</note> | 10611 | <note priority="1" from="description">Month name short</note> |
10081 | <note priority="1" from="meaning">March short name</note> | 10612 | <note priority="1" from="meaning">March short name</note> |
10082 | </trans-unit><trans-unit id="9658641661863772" datatype="html"> | 10613 | </trans-unit> |
10083 | <source>Apr</source><target state="new">Apr</target> | 10614 | <trans-unit id="9658641661863772" datatype="html"> |
10615 | <source>Apr</source> | ||
10616 | <target state="new">Apr</target> | ||
10084 | <context-group purpose="location"> | 10617 | <context-group purpose="location"> |
10085 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10618 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10086 | <context context-type="linenumber">58</context> | 10619 | <context context-type="linenumber">58</context> |
10087 | </context-group> | 10620 | </context-group> |
10088 | <note priority="1" from="description">Month name short</note> | 10621 | <note priority="1" from="description">Month name short</note> |
10089 | <note priority="1" from="meaning">April short name</note> | 10622 | <note priority="1" from="meaning">April short name</note> |
10090 | </trans-unit><trans-unit id="502512326533496869" datatype="html"> | 10623 | </trans-unit> |
10091 | <source>May</source><target state="new">May</target> | 10624 | <trans-unit id="502512326533496869" datatype="html"> |
10625 | <source>May</source> | ||
10626 | <target state="new">May</target> | ||
10092 | <context-group purpose="location"> | 10627 | <context-group purpose="location"> |
10093 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10628 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10094 | <context context-type="linenumber">59</context> | 10629 | <context context-type="linenumber">59</context> |
10095 | </context-group> | 10630 | </context-group> |
10096 | <note priority="1" from="description">Month name short</note> | 10631 | <note priority="1" from="description">Month name short</note> |
10097 | <note priority="1" from="meaning">May short name</note> | 10632 | <note priority="1" from="meaning">May short name</note> |
10098 | </trans-unit><trans-unit id="3044090977322782161" datatype="html"> | 10633 | </trans-unit> |
10099 | <source>Jun</source><target state="new">Jun</target> | 10634 | <trans-unit id="3044090977322782161" datatype="html"> |
10635 | <source>Jun</source> | ||
10636 | <target state="new">Jun</target> | ||
10100 | <context-group purpose="location"> | 10637 | <context-group purpose="location"> |
10101 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10638 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10102 | <context context-type="linenumber">60</context> | 10639 | <context context-type="linenumber">60</context> |
10103 | </context-group> | 10640 | </context-group> |
10104 | <note priority="1" from="description">Month name short</note> | 10641 | <note priority="1" from="description">Month name short</note> |
10105 | <note priority="1" from="meaning">June short name</note> | 10642 | <note priority="1" from="meaning">June short name</note> |
10106 | </trans-unit><trans-unit id="8066434078267346927" datatype="html"> | 10643 | </trans-unit> |
10107 | <source>Jul</source><target state="new">Jul</target> | 10644 | <trans-unit id="8066434078267346927" datatype="html"> |
10645 | <source>Jul</source> | ||
10646 | <target state="new">Jul</target> | ||
10108 | <context-group purpose="location"> | 10647 | <context-group purpose="location"> |
10109 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10648 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10110 | <context context-type="linenumber">61</context> | 10649 | <context context-type="linenumber">61</context> |
10111 | </context-group> | 10650 | </context-group> |
10112 | <note priority="1" from="description">Month name short</note> | 10651 | <note priority="1" from="description">Month name short</note> |
10113 | <note priority="1" from="meaning">July short name</note> | 10652 | <note priority="1" from="meaning">July short name</note> |
10114 | </trans-unit><trans-unit id="1796563865253467834" datatype="html"> | 10653 | </trans-unit> |
10115 | <source>Aug</source><target state="new">Aug</target> | 10654 | <trans-unit id="1796563865253467834" datatype="html"> |
10655 | <source>Aug</source> | ||
10656 | <target state="new">Aug</target> | ||
10116 | <context-group purpose="location"> | 10657 | <context-group purpose="location"> |
10117 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10658 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10118 | <context context-type="linenumber">62</context> | 10659 | <context context-type="linenumber">62</context> |
10119 | </context-group> | 10660 | </context-group> |
10120 | <note priority="1" from="description">Month name short</note> | 10661 | <note priority="1" from="description">Month name short</note> |
10121 | <note priority="1" from="meaning">August short name</note> | 10662 | <note priority="1" from="meaning">August short name</note> |
10122 | </trans-unit><trans-unit id="5865190625753625986" datatype="html"> | 10663 | </trans-unit> |
10123 | <source>Sep</source><target state="new">Sep</target> | 10664 | <trans-unit id="5865190625753625986" datatype="html"> |
10665 | <source>Sep</source> | ||
10666 | <target state="new">Sep</target> | ||
10124 | <context-group purpose="location"> | 10667 | <context-group purpose="location"> |
10125 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10668 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10126 | <context context-type="linenumber">63</context> | 10669 | <context context-type="linenumber">63</context> |
10127 | </context-group> | 10670 | </context-group> |
10128 | <note priority="1" from="description">Month name short</note> | 10671 | <note priority="1" from="description">Month name short</note> |
10129 | <note priority="1" from="meaning">September short name</note> | 10672 | <note priority="1" from="meaning">September short name</note> |
10130 | </trans-unit><trans-unit id="4011114601374284323" datatype="html"> | 10673 | </trans-unit> |
10131 | <source>Oct</source><target state="new">Oct</target> | 10674 | <trans-unit id="4011114601374284323" datatype="html"> |
10675 | <source>Oct</source> | ||
10676 | <target state="new">Oct</target> | ||
10132 | <context-group purpose="location"> | 10677 | <context-group purpose="location"> |
10133 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10678 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10134 | <context context-type="linenumber">64</context> | 10679 | <context context-type="linenumber">64</context> |
10135 | </context-group> | 10680 | </context-group> |
10136 | <note priority="1" from="description">Month name short</note> | 10681 | <note priority="1" from="description">Month name short</note> |
10137 | <note priority="1" from="meaning">October short name</note> | 10682 | <note priority="1" from="meaning">October short name</note> |
10138 | </trans-unit><trans-unit id="5063734982204786445" datatype="html"> | 10683 | </trans-unit> |
10139 | <source>Nov</source><target state="new">Nov</target> | 10684 | <trans-unit id="5063734982204786445" datatype="html"> |
10685 | <source>Nov</source> | ||
10686 | <target state="new">Nov</target> | ||
10140 | <context-group purpose="location"> | 10687 | <context-group purpose="location"> |
10141 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10688 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10142 | <context context-type="linenumber">65</context> | 10689 | <context context-type="linenumber">65</context> |
10143 | </context-group> | 10690 | </context-group> |
10144 | <note priority="1" from="description">Month name short</note> | 10691 | <note priority="1" from="description">Month name short</note> |
10145 | <note priority="1" from="meaning">November short name</note> | 10692 | <note priority="1" from="meaning">November short name</note> |
10146 | </trans-unit><trans-unit id="4789897150069082503" datatype="html"> | 10693 | </trans-unit> |
10147 | <source>Dec</source><target state="new">Dec</target> | 10694 | <trans-unit id="4789897150069082503" datatype="html"> |
10695 | <source>Dec</source> | ||
10696 | <target state="new">Dec</target> | ||
10148 | <context-group purpose="location"> | 10697 | <context-group purpose="location"> |
10149 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> | 10698 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context> |
10150 | <context context-type="linenumber">66</context> | 10699 | <context context-type="linenumber">66</context> |
@@ -10152,105 +10701,98 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10152 | <note priority="1" from="description">Month name short</note> | 10701 | <note priority="1" from="description">Month name short</note> |
10153 | <note priority="1" from="meaning">December short name</note> | 10702 | <note priority="1" from="meaning">December short name</note> |
10154 | </trans-unit> | 10703 | </trans-unit> |
10155 | |||
10156 | |||
10157 | |||
10158 | |||
10159 | |||
10160 | |||
10161 | |||
10162 | |||
10163 | |||
10164 | |||
10165 | |||
10166 | <trans-unit id="8700121026680200191" datatype="html"> | 10704 | <trans-unit id="8700121026680200191" datatype="html"> |
10167 | <source>Clear</source> | 10705 | <source>Clear</source> |
10168 | <target state="new">Clear</target> | 10706 | <target state="new">Clear</target> |
10169 | 10707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">71</context></context-group> | |
10170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 10708 | </trans-unit> |
10171 | <trans-unit id="5922757127987546008" datatype="html"> | 10709 | <trans-unit id="5922757127987546008" datatype="html"> |
10172 | <source>yy-mm-dd</source> | 10710 | <source>yy-mm-dd</source> |
10173 | <target state="new">yy-mm-dd </target> | 10711 | <target state="new">yy-mm-dd </target> |
10174 | <note priority="1" from="description">Date format in this locale.</note> | 10712 | <note priority="1" from="description">Date format in this locale.</note> |
10175 | 10713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">83</context></context-group> | |
10176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 10714 | </trans-unit> |
10177 | <trans-unit id="2830831449226931729" datatype="html"> | 10715 | <trans-unit id="2830831449226931729" datatype="html"> |
10178 | <source>Instance languages</source> | 10716 | <source>Instance languages</source> |
10179 | <target state="new">Instance languages</target> | 10717 | <target state="new">Instance languages</target> |
10180 | 10718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">193</context></context-group> | |
10181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> | 10719 | </trans-unit> |
10182 | <trans-unit id="40119547597591062" datatype="html"> | 10720 | <trans-unit id="40119547597591062" datatype="html"> |
10183 | <source>All languages</source> | 10721 | <source>All languages</source> |
10184 | <target state="new">All languages</target> | 10722 | <target state="new">All languages</target> |
10185 | 10723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">194</context></context-group> | |
10186 | 10724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group> | |
10187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">194</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 10725 | </trans-unit> |
10188 | <trans-unit id="996392855508119363" datatype="html"> | 10726 | <trans-unit id="996392855508119363" datatype="html"> |
10189 | <source>Hidden</source> | 10727 | <source>Hidden</source> |
10190 | <target state="new">Hidden</target> | 10728 | <target state="new">Hidden</target> |
10191 | 10729 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">53</context></context-group> | |
10192 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 10730 | </trans-unit> |
10193 | <trans-unit id="2173989454916398137" datatype="html"> | 10731 | <trans-unit id="2173989454916398137" datatype="html"> |
10194 | <source>Blurred with confirmation request</source> | 10732 | <source>Blurred with confirmation request</source> |
10195 | <target state="new">Blurred with confirmation request</target> | 10733 | <target state="new">Blurred with confirmation request</target> |
10196 | 10734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">54</context></context-group> | |
10197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | 10735 | </trans-unit> |
10198 | <trans-unit id="8929218224642530466" datatype="html"> | 10736 | <trans-unit id="8929218224642530466" datatype="html"> |
10199 | <source>Displayed</source> | 10737 | <source>Displayed</source> |
10200 | <target state="new">Displayed</target> | 10738 | <target state="new">Displayed</target> |
10201 | 10739 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">55</context></context-group> | |
10202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 10740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">233</context></context-group> |
10741 | </trans-unit> | ||
10203 | <trans-unit id="6291055174438137560" datatype="html"> | 10742 | <trans-unit id="6291055174438137560" datatype="html"> |
10204 | <source>~ 1 minute</source> | 10743 | <source>~ 1 minute</source> |
10205 | <target state="new">~ 1 minute</target> | 10744 | <target state="new">~ 1 minute</target> |
10206 | 10745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">74</context></context-group> | |
10207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 10746 | </trans-unit> |
10208 | <trans-unit id="189524047518780716" datatype="html"> | 10747 | <trans-unit id="189524047518780716" datatype="html"> |
10209 | <source>~ <x id="PH"/> minutes</source> | 10748 | <source>~ <x id="PH"/> minutes</source> |
10210 | <target state="new">~ <x id="PH"/> minutes</target> | 10749 | <target state="new">~ <x id="PH"/> minutes</target> |
10211 | 10750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">76</context></context-group> | |
10212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 10751 | </trans-unit> |
10213 | <trans-unit id="6028521920505655348" datatype="html"> | 10752 | <trans-unit id="6028521920505655348" datatype="html"> |
10214 | <source><x id="PH"/> of full HD videos </source> | 10753 | <source><x id="PH"/> of full HD videos </source> |
10215 | <target state="new"> | 10754 | <target state="new"> |
10216 | <x id="PH"/> of full HD videos | 10755 | <x id="PH"/> of full HD videos |
10217 | </target> | 10756 | </target> |
10218 | 10757 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">92</context></context-group> | |
10219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10758 | </trans-unit> |
10220 | <trans-unit id="117588083391484998" datatype="html"> | 10759 | <trans-unit id="117588083391484998" datatype="html"> |
10221 | <source><x id="PH"/> of HD videos </source> | 10760 | <source><x id="PH"/> of HD videos </source> |
10222 | <target state="new"> | 10761 | <target state="new"> |
10223 | <x id="PH"/> of HD videos | 10762 | <x id="PH"/> of HD videos |
10224 | </target> | 10763 | </target> |
10225 | 10764 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">93</context></context-group> | |
10226 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 10765 | </trans-unit> |
10227 | <trans-unit id="6636555695556123073" datatype="html"> | 10766 | <trans-unit id="6636555695556123073" datatype="html"> |
10228 | <source><x id="PH"/> of average quality videos </source> | 10767 | <source><x id="PH"/> of average quality videos </source> |
10229 | <target state="new"> | 10768 | <target state="new"> |
10230 | <x id="PH"/> of average quality videos | 10769 | <x id="PH"/> of average quality videos |
10231 | </target> | 10770 | </target> |
10232 | 10771 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10233 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 10772 | </trans-unit> |
10234 | <trans-unit id="6952960992592445535" datatype="html"> | 10773 | <trans-unit id="6952960992592445535" datatype="html"> |
10235 | <source><x id="PH"/> (channel page) </source> | 10774 | <source><x id="PH"/> (channel page) </source> |
10236 | <target state="new"> | 10775 | <target state="new"> |
10237 | <x id="PH"/> (channel page) | 10776 | <x id="PH"/> (channel page) |
10238 | </target> | 10777 | </target> |
10239 | 10778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts</context><context context-type="linenumber">20</context></context-group> | |
10240 | 10779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">40</context></context-group> | |
10241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 10780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">125</context></context-group> |
10781 | </trans-unit> | ||
10242 | <trans-unit id="1209500590333005801" datatype="html"> | 10782 | <trans-unit id="1209500590333005801" datatype="html"> |
10243 | <source><x id="PH"/> (account page) </source> | 10783 | <source><x id="PH"/> (account page) </source> |
10244 | <target state="new"> | 10784 | <target state="new"> |
10245 | <x id="PH"/> (account page) | 10785 | <x id="PH"/> (account page) |
10246 | </target> | 10786 | </target> |
10247 | 10787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts</context><context context-type="linenumber">21</context></context-group> | |
10248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.ts</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 10788 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">39</context></context-group> |
10789 | </trans-unit> | ||
10249 | <trans-unit id="2516633974298697807" datatype="html"> | 10790 | <trans-unit id="2516633974298697807" datatype="html"> |
10250 | <source>Emphasis</source> | 10791 | <source>Emphasis</source> |
10251 | <target state="new">Emphasis</target> | 10792 | <target state="new">Emphasis</target> |
10252 | 10793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group> | |
10253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 10794 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group> |
10795 | </trans-unit> | ||
10254 | <trans-unit id="7565716024468232322" datatype="html"> | 10796 | <trans-unit id="7565716024468232322" datatype="html"> |
10255 | <source>Links</source> | 10797 | <source>Links</source> |
10256 | <target state="new">Links</target> | 10798 | <target state="new">Links</target> |
@@ -10264,37 +10806,44 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10264 | <trans-unit id="8756167649220050929" datatype="html"> | 10806 | <trans-unit id="8756167649220050929" datatype="html"> |
10265 | <source>Lists</source> | 10807 | <source>Lists</source> |
10266 | <target state="new">Lists</target> | 10808 | <target state="new">Lists</target> |
10267 | 10809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group> | |
10268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 10810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group> |
10811 | </trans-unit> | ||
10269 | <trans-unit id="414887388288176527" datatype="html"> | 10812 | <trans-unit id="414887388288176527" datatype="html"> |
10270 | <source>Images</source> | 10813 | <source>Images</source> |
10271 | <target state="new">Images</target> | 10814 | <target state="new">Images</target> |
10272 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group> | 10815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group> |
10273 | </trans-unit><trans-unit id="6853170548960328665" datatype="html"> | 10816 | </trans-unit> |
10274 | <source>Close search</source><target state="new">Close search</target> | 10817 | <trans-unit id="6853170548960328665" datatype="html"> |
10275 | 10818 | <source>Close search</source> | |
10276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 10819 | <target state="new">Close search</target> |
10820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.html</context><context context-type="linenumber">19</context></context-group> | ||
10821 | </trans-unit> | ||
10277 | <trans-unit id="5708680277917691451" datatype="html"> | 10822 | <trans-unit id="5708680277917691451" datatype="html"> |
10278 | <source><x id="PH"/> users banned. </source> | 10823 | <source><x id="PH"/> users banned. </source> |
10279 | <target state="new"> | 10824 | <target state="new"> |
10280 | <x id="PH"/> users banned. | 10825 | <x id="PH"/> users banned. |
10281 | </target> | 10826 | </target> |
10282 | 10827 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">67</context></context-group> | |
10283 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 10828 | </trans-unit> |
10284 | <trans-unit id="2448281151916042849" datatype="html"> | 10829 | <trans-unit id="2448281151916042849" datatype="html"> |
10285 | <source>User <x id="PH"/> banned.</source> | 10830 | <source>User <x id="PH"/> banned.</source> |
10286 | <target state="new">User | 10831 | <target state="new">User |
10287 | <x id="PH"/> banned. | 10832 | <x id="PH"/> banned. |
10288 | </target> | 10833 | </target> |
10289 | 10834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group> | |
10290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group></trans-unit><trans-unit id="3160979325245958752" datatype="html"> | 10835 | </trans-unit> |
10291 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source><target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | 10836 | <trans-unit id="3160979325245958752" datatype="html"> |
10837 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source> | ||
10838 | <target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | ||
10292 | <context-group purpose="location"> | 10839 | <context-group purpose="location"> |
10293 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10840 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10294 | <context context-type="linenumber">82</context> | 10841 | <context context-type="linenumber">82</context> |
10295 | </context-group> | 10842 | </context-group> |
10296 | </trans-unit><trans-unit id="8088707210191809175" datatype="html"> | 10843 | </trans-unit> |
10297 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source><target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | 10844 | <trans-unit id="8088707210191809175" datatype="html"> |
10845 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source> | ||
10846 | <target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | ||
10298 | <context-group purpose="location"> | 10847 | <context-group purpose="location"> |
10299 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10848 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10300 | <context context-type="linenumber">84</context> | 10849 | <context context-type="linenumber">84</context> |
@@ -10305,72 +10854,76 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10305 | <target state="new">Do you really want to unban | 10854 | <target state="new">Do you really want to unban |
10306 | <x id="PH"/>? | 10855 | <x id="PH"/>? |
10307 | </target> | 10856 | </target> |
10308 | 10857 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | |
10309 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 10858 | </trans-unit> |
10310 | <trans-unit id="1794219875546376069" datatype="html"> | 10859 | <trans-unit id="1794219875546376069" datatype="html"> |
10311 | <source>User <x id="PH"/> unbanned.</source> | 10860 | <source>User <x id="PH"/> unbanned.</source> |
10312 | <target state="new">User | 10861 | <target state="new">User |
10313 | <x id="PH"/> unbanned. | 10862 | <x id="PH"/> unbanned. |
10314 | </target> | 10863 | </target> |
10315 | 10864 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group> | |
10316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit><trans-unit id="9208009623124569456" datatype="html"> | 10865 | </trans-unit> |
10317 | <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source><target state="new">If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</target> | 10866 | <trans-unit id="9208009623124569456" datatype="html"> |
10318 | 10867 | <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source> | |
10319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="6307826440781941134" datatype="html"> | 10868 | <target state="new">If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</target> |
10320 | <source>Delete <x id="PH" equiv-text="user.username"/></source><target state="new">Delete <x id="PH" equiv-text="user.username"/></target> | 10869 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">103</context></context-group> |
10321 | 10870 | </trans-unit> | |
10322 | 10871 | <trans-unit id="6307826440781941134" datatype="html"> | |
10323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> | 10872 | <source>Delete <x id="PH" equiv-text="user.username"/></source> |
10324 | 10873 | <target state="new">Delete <x id="PH" equiv-text="user.username"/></target> | |
10874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group> | ||
10875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group> | ||
10876 | </trans-unit> | ||
10325 | <trans-unit id="6301381219225831298" datatype="html"> | 10877 | <trans-unit id="6301381219225831298" datatype="html"> |
10326 | <source>User <x id="PH"/> deleted.</source> | 10878 | <source>User <x id="PH"/> deleted.</source> |
10327 | <target state="new">User | 10879 | <target state="new">User |
10328 | <x id="PH"/> deleted. | 10880 | <x id="PH"/> deleted. |
10329 | </target> | 10881 | </target> |
10330 | 10882 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group> | |
10331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 10883 | </trans-unit> |
10332 | <trans-unit id="3896582359861826661" datatype="html"> | 10884 | <trans-unit id="3896582359861826661" datatype="html"> |
10333 | <source>User <x id="PH"/> email set as verified</source> | 10885 | <source>User <x id="PH"/> email set as verified</source> |
10334 | <target state="new">User | 10886 | <target state="new">User |
10335 | <x id="PH"/> email set as verified | 10887 | <x id="PH"/> email set as verified |
10336 | </target> | 10888 | </target> |
10337 | 10889 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group> | |
10338 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 10890 | </trans-unit> |
10339 | <trans-unit id="8150022485860412528" datatype="html"> | 10891 | <trans-unit id="8150022485860412528" datatype="html"> |
10340 | <source>Account <x id="PH"/> muted.</source> | 10892 | <source>Account <x id="PH"/> muted.</source> |
10341 | <target state="new">Account | 10893 | <target state="new">Account |
10342 | <x id="PH"/> muted. | 10894 | <x id="PH"/> muted. |
10343 | </target> | 10895 | </target> |
10344 | 10896 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group> | |
10345 | 10897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> | |
10346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group></trans-unit> | 10898 | </trans-unit> |
10347 | <trans-unit id="1598375456114200087" datatype="html"> | 10899 | <trans-unit id="1598375456114200087" datatype="html"> |
10348 | <source>Instance <x id="PH"/> muted. </source> | 10900 | <source>Instance <x id="PH"/> muted. </source> |
10349 | <target state="new">Instance | 10901 | <target state="new">Instance |
10350 | <x id="PH"/> muted. | 10902 | <x id="PH"/> muted. |
10351 | </target> | 10903 | </target> |
10352 | 10904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> | |
10353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group></trans-unit> | 10905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group> |
10906 | </trans-unit> | ||
10354 | <trans-unit id="2558977494773636050" datatype="html"> | 10907 | <trans-unit id="2558977494773636050" datatype="html"> |
10355 | <source>Account <x id="PH"/> muted by the instance.</source> | 10908 | <source>Account <x id="PH"/> muted by the instance.</source> |
10356 | <target state="new">Account | 10909 | <target state="new">Account |
10357 | <x id="PH"/> muted by the instance. | 10910 | <x id="PH"/> muted by the instance. |
10358 | </target> | 10911 | </target> |
10359 | 10912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group> | |
10360 | 10913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group> | |
10361 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 10914 | </trans-unit> |
10362 | <trans-unit id="1595779426198793580" datatype="html"> | 10915 | <trans-unit id="1595779426198793580" datatype="html"> |
10363 | <source>Mute server</source> | 10916 | <source>Mute server</source> |
10364 | <target state="new">Mute server</target> | 10917 | <target state="new">Mute server</target> |
10365 | 10918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">322</context></context-group> | |
10366 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">322</context></context-group></trans-unit> | 10919 | </trans-unit> |
10367 | <trans-unit id="8014491157078444256" datatype="html"> | 10920 | <trans-unit id="8014491157078444256" datatype="html"> |
10368 | <source>Server <x id="PH"/> muted by the instance.</source> | 10921 | <source>Server <x id="PH"/> muted by the instance.</source> |
10369 | <target state="new">Server | 10922 | <target state="new">Server |
10370 | <x id="PH"/> muted by the instance. | 10923 | <x id="PH"/> muted by the instance. |
10371 | </target> | 10924 | </target> |
10372 | 10925 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">446</context></context-group> | |
10373 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">446</context></context-group></trans-unit> | 10926 | </trans-unit> |
10374 | <trans-unit id="2044813052587776285" datatype="html"> | 10927 | <trans-unit id="2044813052587776285" datatype="html"> |
10375 | <source>Add a message to communicate with the reporter</source> | 10928 | <source>Add a message to communicate with the reporter</source> |
10376 | <target state="new">Add a message to communicate with the reporter</target> | 10929 | <target state="new">Add a message to communicate with the reporter</target> |
@@ -10386,157 +10939,163 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10386 | <target state="new">Account | 10939 | <target state="new">Account |
10387 | <x id="PH"/> unmuted by the instance. | 10940 | <x id="PH"/> unmuted by the instance. |
10388 | </target> | 10941 | </target> |
10389 | 10942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group> | |
10390 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group></trans-unit> | 10943 | </trans-unit> |
10391 | <trans-unit id="4991892477258601737" datatype="html"> | 10944 | <trans-unit id="4991892477258601737" datatype="html"> |
10392 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10945 | <source>Instance <x id="PH"/> muted by the instance.</source> |
10393 | <target state="new">Instance | 10946 | <target state="new">Instance |
10394 | <x id="PH"/> muted by the instance. | 10947 | <x id="PH"/> muted by the instance. |
10395 | </target> | 10948 | </target> |
10396 | 10949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group> | |
10397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group></trans-unit> | 10950 | </trans-unit> |
10398 | <trans-unit id="4379430340167561220" datatype="html"> | 10951 | <trans-unit id="4379430340167561220" datatype="html"> |
10399 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10952 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
10400 | <target state="new">Instance | 10953 | <target state="new">Instance |
10401 | <x id="PH"/> unmuted by the instance. | 10954 | <x id="PH"/> unmuted by the instance. |
10402 | </target> | 10955 | </target> |
10403 | 10956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group> | |
10404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10957 | </trans-unit> |
10405 | <trans-unit id="8173437618471379044" datatype="html"> | 10958 | <trans-unit id="8173437618471379044" datatype="html"> |
10406 | <source>Are you sure you want to remove all the comments of this account?</source> | 10959 | <source>Are you sure you want to remove all the comments of this account?</source> |
10407 | <target state="new">Are you sure you want to remove all the comments of this account?</target> | 10960 | <target state="new">Are you sure you want to remove all the comments of this account?</target> |
10408 | 10961 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">243</context></context-group> | |
10409 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">243</context></context-group></trans-unit> | 10962 | </trans-unit> |
10410 | <trans-unit id="6315346579373254461" datatype="html"> | 10963 | <trans-unit id="6315346579373254461" datatype="html"> |
10411 | <source>Delete account comments</source> | 10964 | <source>Delete account comments</source> |
10412 | <target state="new">Delete account comments</target> | 10965 | <target state="new">Delete account comments</target> |
10413 | 10966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">244</context></context-group> | |
10414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> | 10967 | </trans-unit> |
10415 | <trans-unit id="8559170154828316298" datatype="html"> | 10968 | <trans-unit id="8559170154828316298" datatype="html"> |
10416 | <source>Will remove comments of this account (may take several minutes).</source> | 10969 | <source>Will remove comments of this account (may take several minutes).</source> |
10417 | <target state="new">Will remove comments of this account (may take several minutes).</target> | 10970 | <target state="new">Will remove comments of this account (may take several minutes).</target> |
10418 | 10971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">250</context></context-group> | |
10419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit><trans-unit id="4268530178786707817" datatype="html"> | 10972 | </trans-unit> |
10420 | <source>My account moderation</source><target state="new">My account moderation</target> | 10973 | <trans-unit id="4268530178786707817" datatype="html"> |
10421 | 10974 | <source>My account moderation</source> | |
10422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 10975 | <target state="new">My account moderation</target> |
10976 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> | ||
10977 | </trans-unit> | ||
10423 | <trans-unit id="7187838764371214919" datatype="html"> | 10978 | <trans-unit id="7187838764371214919" datatype="html"> |
10424 | <source>Edit user</source> | 10979 | <source>Edit user</source> |
10425 | <target state="new">Edit user</target> | 10980 | <target state="new">Edit user</target> |
10426 | 10981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group> | |
10427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit> | 10982 | </trans-unit> |
10428 | <trans-unit id="4728427543536046034" datatype="html"> | 10983 | <trans-unit id="4728427543536046034" datatype="html"> |
10429 | <source>Change quota, role, and more.</source> | 10984 | <source>Change quota, role, and more.</source> |
10430 | <target state="new">Change quota, role, and more.</target> | 10985 | <target state="new">Change quota, role, and more.</target> |
10431 | 10986 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group> | |
10432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 10987 | </trans-unit> |
10433 | <trans-unit id="7913022656086109932" datatype="html"> | 10988 | <trans-unit id="7913022656086109932" datatype="html"> |
10434 | <source>Delete user</source> | 10989 | <source>Delete user</source> |
10435 | <target state="new">Delete user</target> | 10990 | <target state="new">Delete user</target> |
10436 | 10991 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">344</context></context-group> | |
10437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 10992 | </trans-unit> |
10438 | <trans-unit id="7577876364431026966" datatype="html"> | 10993 | <trans-unit id="7577876364431026966" datatype="html"> |
10439 | <source>Unban user</source> | 10994 | <source>Unban user</source> |
10440 | <target state="new">Unban user</target> | 10995 | <target state="new">Unban user</target> |
10441 | 10996 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">356</context></context-group> | |
10442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">356</context></context-group></trans-unit> | 10997 | </trans-unit> |
10443 | <trans-unit id="3508163549683020253" datatype="html"> | 10998 | <trans-unit id="3508163549683020253" datatype="html"> |
10444 | <source>Allow the user to login and create videos/comments again</source> | 10999 | <source>Allow the user to login and create videos/comments again</source> |
10445 | <target state="new">Allow the user to login and create videos/comments again</target> | 11000 | <target state="new">Allow the user to login and create videos/comments again</target> |
10446 | 11001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group> | |
10447 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> | 11002 | </trans-unit> |
10448 | <trans-unit id="1888272455383898478" datatype="html"> | 11003 | <trans-unit id="1888272455383898478" datatype="html"> |
10449 | <source>Mute this account</source> | 11004 | <source>Mute this account</source> |
10450 | <target state="new">Mute this account</target> | 11005 | <target state="new">Mute this account</target> |
10451 | 11006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group> | |
10452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 11007 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group> |
11008 | </trans-unit> | ||
10453 | <trans-unit id="2365286519320230773" datatype="html"> | 11009 | <trans-unit id="2365286519320230773" datatype="html"> |
10454 | <source>Hide any content from that user from you.</source> | 11010 | <source>Hide any content from that user from you.</source> |
10455 | <target state="new">Hide any content from that user from you.</target> | 11011 | <target state="new">Hide any content from that user from you.</target> |
10456 | 11012 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
10457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 11013 | </trans-unit> |
10458 | <trans-unit id="4043508901590508211" datatype="html"> | 11014 | <trans-unit id="4043508901590508211" datatype="html"> |
10459 | <source>Unmute this account</source> | 11015 | <source>Unmute this account</source> |
10460 | <target state="new">Unmute this account</target> | 11016 | <target state="new">Unmute this account</target> |
10461 | 11017 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">301</context></context-group> | |
10462 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">301</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 11018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">379</context></context-group> |
11019 | </trans-unit> | ||
10463 | <trans-unit id="2843593344827160627" datatype="html"> | 11020 | <trans-unit id="2843593344827160627" datatype="html"> |
10464 | <source>Show back content from that user for you.</source> | 11021 | <source>Show back content from that user for you.</source> |
10465 | <target state="new">Show back content from that user for you.</target> | 11022 | <target state="new">Show back content from that user for you.</target> |
10466 | 11023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | |
10467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit> | 11024 | </trans-unit> |
10468 | <trans-unit id="6198109035280957164" datatype="html"> | 11025 | <trans-unit id="6198109035280957164" datatype="html"> |
10469 | <source>Mute the instance</source> | 11026 | <source>Mute the instance</source> |
10470 | <target state="new">Mute the instance</target> | 11027 | <target state="new">Mute the instance</target> |
10471 | 11028 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">307</context></context-group> | |
10472 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">307</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group></trans-unit> | 11029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group> |
11030 | </trans-unit> | ||
10473 | <trans-unit id="4537735378779630558" datatype="html"> | 11031 | <trans-unit id="4537735378779630558" datatype="html"> |
10474 | <source>Hide any content from that instance for you.</source> | 11032 | <source>Hide any content from that instance for you.</source> |
10475 | <target state="new">Hide any content from that instance for you.</target> | 11033 | <target state="new">Hide any content from that instance for you.</target> |
10476 | 11034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
10477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group></trans-unit> | 11035 | </trans-unit> |
10478 | <trans-unit id="6247487021683085858" datatype="html"> | 11036 | <trans-unit id="6247487021683085858" datatype="html"> |
10479 | <source>Unmute the instance</source> | 11037 | <source>Unmute the instance</source> |
10480 | <target state="new">Unmute the instance</target> | 11038 | <target state="new">Unmute the instance</target> |
10481 | 11039 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">313</context></context-group> | |
10482 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">313</context></context-group></trans-unit> | 11040 | </trans-unit> |
10483 | <trans-unit id="4024846984475742259" datatype="html"> | 11041 | <trans-unit id="4024846984475742259" datatype="html"> |
10484 | <source>Show back content from that instance for you.</source> | 11042 | <source>Show back content from that instance for you.</source> |
10485 | <target state="new">Show back content from that instance for you.</target> | 11043 | <target state="new">Show back content from that instance for you.</target> |
10486 | 11044 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> | |
10487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group></trans-unit> | 11045 | </trans-unit> |
10488 | <trans-unit id="3108200185023875257" datatype="html"> | 11046 | <trans-unit id="3108200185023875257" datatype="html"> |
10489 | <source>Remove comments from your videos</source> | 11047 | <source>Remove comments from your videos</source> |
10490 | <target state="new">Remove comments from your videos</target> | 11048 | <target state="new">Remove comments from your videos</target> |
10491 | 11049 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">319</context></context-group> | |
10492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">319</context></context-group></trans-unit> | 11050 | </trans-unit> |
10493 | <trans-unit id="4810478487244286994" datatype="html"> | 11051 | <trans-unit id="4810478487244286994" datatype="html"> |
10494 | <source>Remove comments made by this account on your videos.</source> | 11052 | <source>Remove comments made by this account on your videos.</source> |
10495 | <target state="new">Remove comments made by this account on your videos.</target> | 11053 | <target state="new">Remove comments made by this account on your videos.</target> |
10496 | 11054 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">320</context></context-group> | |
10497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">320</context></context-group></trans-unit> | 11055 | </trans-unit> |
10498 | |||
10499 | <trans-unit id="2077144178298031252" datatype="html"> | 11056 | <trans-unit id="2077144178298031252" datatype="html"> |
10500 | <source>Hide any content from that user from you, your instance and its users.</source> | 11057 | <source>Hide any content from that user from you, your instance and its users.</source> |
10501 | <target state="new">Hide any content from that user from you, your instance and its users.</target> | 11058 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
10502 | 11059 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">374</context></context-group> | |
10503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">374</context></context-group></trans-unit> | 11060 | </trans-unit> |
10504 | |||
10505 | <trans-unit id="7675070596643104983" datatype="html"> | 11061 | <trans-unit id="7675070596643104983" datatype="html"> |
10506 | <source>Show this user's content to the users of this instance again.</source> | 11062 | <source>Show this user's content to the users of this instance again.</source> |
10507 | <target state="new">Show this user's content to the users of this instance again.</target> | 11063 | <target state="new">Show this user's content to the users of this instance again.</target> |
10508 | 11064 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 11065 | </trans-unit> |
10510 | |||
10511 | <trans-unit id="525915681688649453" datatype="html"> | 11066 | <trans-unit id="525915681688649453" datatype="html"> |
10512 | <source>Hide any content from that instance from you, your instance and its users.</source> | 11067 | <source>Hide any content from that instance from you, your instance and its users.</source> |
10513 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> | 11068 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
10514 | 11069 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | |
10515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 11070 | </trans-unit> |
10516 | <trans-unit id="5325628963747139770" datatype="html"> | 11071 | <trans-unit id="5325628963747139770" datatype="html"> |
10517 | <source>Unmute the instance by your instance</source> | 11072 | <source>Unmute the instance by your instance</source> |
10518 | <target state="new">Unmute the instance by your instance</target> | 11073 | <target state="new">Unmute the instance by your instance</target> |
10519 | 11074 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">397</context></context-group> | |
10520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">397</context></context-group></trans-unit> | 11075 | </trans-unit> |
10521 | <trans-unit id="758471033841077314" datatype="html"> | 11076 | <trans-unit id="758471033841077314" datatype="html"> |
10522 | <source>Show back content from that instance for you, your instance and its users.</source> | 11077 | <source>Show back content from that instance for you, your instance and its users.</source> |
10523 | <target state="new">Show back content from that instance for you, your instance and its users.</target> | 11078 | <target state="new">Show back content from that instance for you, your instance and its users.</target> |
10524 | 11079 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | |
10525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group></trans-unit> | 11080 | </trans-unit> |
10526 | <trans-unit id="3785095284194008197" datatype="html"> | 11081 | <trans-unit id="3785095284194008197" datatype="html"> |
10527 | <source>Remove comments from your instance</source> | 11082 | <source>Remove comments from your instance</source> |
10528 | <target state="new">Remove comments from your instance</target> | 11083 | <target state="new">Remove comments from your instance</target> |
10529 | 11084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">408</context></context-group> | |
10530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">408</context></context-group></trans-unit> | 11085 | </trans-unit> |
10531 | <trans-unit id="4809327075591089709" datatype="html"> | 11086 | <trans-unit id="4809327075591089709" datatype="html"> |
10532 | <source>Remove comments made by this account from your instance.</source> | 11087 | <source>Remove comments made by this account from your instance.</source> |
10533 | <target state="new">Remove comments made by this account from your instance.</target> | 11088 | <target state="new">Remove comments made by this account from your instance.</target> |
10534 | 11089 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">409</context></context-group> | |
10535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">409</context></context-group></trans-unit><trans-unit id="6504240011224861621" datatype="html"> | 11090 | </trans-unit> |
10536 | <source>Instance moderation</source><target state="new">Instance moderation</target> | 11091 | <trans-unit id="6504240011224861621" datatype="html"> |
10537 | 11092 | <source>Instance moderation</source> | |
10538 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">418</context></context-group></trans-unit><trans-unit id="8546847443058492245" datatype="html"> | 11093 | <target state="new">Instance moderation</target> |
10539 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source><target state="new">Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</target> | 11094 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">418</context></context-group> |
11095 | </trans-unit> | ||
11096 | <trans-unit id="8546847443058492245" datatype="html"> | ||
11097 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> | ||
11098 | <target state="new">Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</target> | ||
10540 | <context-group purpose="location"> | 11099 | <context-group purpose="location"> |
10541 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> | 11100 | <context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context> |
10542 | <context context-type="linenumber">4</context> | 11101 | <context context-type="linenumber">4</context> |
@@ -10545,91 +11104,92 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10545 | <trans-unit id="6746743143272021955" datatype="html"> | 11104 | <trans-unit id="6746743143272021955" datatype="html"> |
10546 | <source>Violent or repulsive</source> | 11105 | <source>Violent or repulsive</source> |
10547 | <target state="new">Violent or repulsive</target> | 11106 | <target state="new">Violent or repulsive</target> |
10548 | 11107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">124</context></context-group> | |
10549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 11108 | </trans-unit> |
10550 | <trans-unit id="5272553814105457319" datatype="html"> | 11109 | <trans-unit id="5272553814105457319" datatype="html"> |
10551 | <source>Contains offensive, violent, or coarse language or iconography.</source> | 11110 | <source>Contains offensive, violent, or coarse language or iconography.</source> |
10552 | <target state="new">Contains offensive, violent, or coarse language or iconography.</target> | 11111 | <target state="new">Contains offensive, violent, or coarse language or iconography.</target> |
10553 | 11112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">125</context></context-group> | |
10554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 11113 | </trans-unit> |
10555 | <trans-unit id="6979166468838302269" datatype="html"> | 11114 | <trans-unit id="6979166468838302269" datatype="html"> |
10556 | <source>Hateful or abusive</source> | 11115 | <source>Hateful or abusive</source> |
10557 | <target state="new">Hateful or abusive</target> | 11116 | <target state="new">Hateful or abusive</target> |
10558 | 11117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">129</context></context-group> | |
10559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 11118 | </trans-unit> |
10560 | <trans-unit id="8006612645824137458" datatype="html"> | 11119 | <trans-unit id="8006612645824137458" datatype="html"> |
10561 | <source>Contains abusive, racist or sexist language or iconography.</source> | 11120 | <source>Contains abusive, racist or sexist language or iconography.</source> |
10562 | <target state="new">Contains abusive, racist or sexist language or iconography.</target> | 11121 | <target state="new">Contains abusive, racist or sexist language or iconography.</target> |
10563 | 11122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">130</context></context-group> | |
10564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> | 11123 | </trans-unit> |
10565 | <trans-unit id="5413552012131573970" datatype="html"> | 11124 | <trans-unit id="5413552012131573970" datatype="html"> |
10566 | <source>Spam, ad or false news</source> | 11125 | <source>Spam, ad or false news</source> |
10567 | <target state="new">Spam, ad or false news</target> | 11126 | <target state="new">Spam, ad or false news</target> |
10568 | 11127 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">134</context></context-group> | |
10569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 11128 | </trans-unit> |
10570 | <trans-unit id="6374940465448453212" datatype="html"> | 11129 | <trans-unit id="6374940465448453212" datatype="html"> |
10571 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 11130 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
10572 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> | 11131 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> |
10573 | 11132 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">136</context></context-group> | |
10574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 11133 | </trans-unit> |
10575 | <trans-unit id="7401289443263903223" datatype="html"> | 11134 | <trans-unit id="7401289443263903223" datatype="html"> |
10576 | <source>Privacy breach or doxxing</source> | 11135 | <source>Privacy breach or doxxing</source> |
10577 | <target state="new">Privacy breach or doxxing</target> | 11136 | <target state="new">Privacy breach or doxxing</target> |
10578 | 11137 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group> | |
10579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 11138 | </trans-unit> |
10580 | <trans-unit id="8363008638081993167" datatype="html"> | 11139 | <trans-unit id="8363008638081993167" datatype="html"> |
10581 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> | 11140 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> |
10582 | <target state="new">Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</target> | 11141 | <target state="new">Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</target> |
10583 | 11142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">142</context></context-group> | |
10584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 11143 | </trans-unit> |
10585 | <trans-unit id="380450014369168564" datatype="html"> | 11144 | <trans-unit id="380450014369168564" datatype="html"> |
10586 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 11145 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
10587 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> | 11146 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> |
10588 | 11147 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">147</context></context-group> | |
10589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 11148 | </trans-unit> |
10590 | <trans-unit id="1378933246324202613" datatype="html"> | 11149 | <trans-unit id="1378933246324202613" datatype="html"> |
10591 | <source>Breaks server rules</source> | 11150 | <source>Breaks server rules</source> |
10592 | <target state="new">Breaks server rules</target> | 11151 | <target state="new">Breaks server rules</target> |
10593 | 11152 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">151</context></context-group> | |
10594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> | 11153 | </trans-unit> |
10595 | <trans-unit id="7930601470861156366" datatype="html"> | 11154 | <trans-unit id="7930601470861156366" datatype="html"> |
10596 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> | 11155 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> |
10597 | <target state="new">Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</target> | 11156 | <target state="new">Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</target> |
10598 | 11157 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">153</context></context-group> | |
10599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> | 11158 | </trans-unit> |
10600 | <trans-unit id="8700771664729810984" datatype="html"> | 11159 | <trans-unit id="8700771664729810984" datatype="html"> |
10601 | <source>The above can only be seen in thumbnails.</source> | 11160 | <source>The above can only be seen in thumbnails.</source> |
10602 | <target state="new">The above can only be seen in thumbnails.</target> | 11161 | <target state="new">The above can only be seen in thumbnails.</target> |
10603 | 11162 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">162</context></context-group> | |
10604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">162</context></context-group></trans-unit> | 11163 | </trans-unit> |
10605 | <trans-unit id="2602773901491715295" datatype="html"> | 11164 | <trans-unit id="2602773901491715295" datatype="html"> |
10606 | <source>Captions</source> | 11165 | <source>Captions</source> |
10607 | <target state="new">Captions</target> | 11166 | <target state="new">Captions</target> |
10608 | 11167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">166</context></context-group> | |
10609 | 11168 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group> | |
10610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">166</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> | 11169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">166</context></context-group> |
11170 | </trans-unit> | ||
10611 | <trans-unit id="5779804235244672536" datatype="html"> | 11171 | <trans-unit id="5779804235244672536" datatype="html"> |
10612 | <source>The above can only be seen in captions (please describe which).</source> | 11172 | <source>The above can only be seen in captions (please describe which).</source> |
10613 | <target state="new">The above can only be seen in captions (please describe which).</target> | 11173 | <target state="new">The above can only be seen in captions (please describe which).</target> |
10614 | 11174 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">167</context></context-group> | |
10615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 11175 | </trans-unit> |
10616 | <trans-unit id="968295009933361070" datatype="html"> | 11176 | <trans-unit id="968295009933361070" datatype="html"> |
10617 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 11177 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
10618 | <target state="new">Too many attempts, please try again after | 11178 | <target state="new">Too many attempts, please try again after |
10619 | <x id="PH"/> minutes. | 11179 | <x id="PH"/> minutes. |
10620 | </target> | 11180 | </target> |
10621 | 11181 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">66</context></context-group> | |
10622 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 11182 | </trans-unit> |
10623 | <trans-unit id="4965472196059235310" datatype="html"> | 11183 | <trans-unit id="4965472196059235310" datatype="html"> |
10624 | <source>Too many attempts, please try again later.</source> | 11184 | <source>Too many attempts, please try again later.</source> |
10625 | <target state="new">Too many attempts, please try again later.</target> | 11185 | <target state="new">Too many attempts, please try again later.</target> |
10626 | 11186 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">68</context></context-group> | |
10627 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | 11187 | </trans-unit> |
10628 | <trans-unit id="1693549688987384699" datatype="html"> | 11188 | <trans-unit id="1693549688987384699" datatype="html"> |
10629 | <source>Server error. Please retry later.</source> | 11189 | <source>Server error. Please retry later.</source> |
10630 | <target state="new">Server error. Please retry later.</target> | 11190 | <target state="new">Server error. Please retry later.</target> |
10631 | 11191 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">71</context></context-group> | |
10632 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 11192 | </trans-unit> |
10633 | <trans-unit id="5927402622550505067" datatype="html"> | 11193 | <trans-unit id="5927402622550505067" datatype="html"> |
10634 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 11194 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
10635 | <target state="new">Subscribed to all current channels of | 11195 | <target state="new">Subscribed to all current channels of |
@@ -10687,9 +11247,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10687 | <trans-unit id="4968151111061046122" datatype="html"> | 11247 | <trans-unit id="4968151111061046122" datatype="html"> |
10688 | <source>Moderator</source> | 11248 | <source>Moderator</source> |
10689 | <target state="new">Moderator</target> | 11249 | <target state="new">Moderator</target> |
10690 | 11250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">124</context></context-group> | |
10691 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="2279527393438260622" datatype="html"> | 11251 | </trans-unit> |
10692 | <source>Search videos, playlists, channels…</source><target state="new">Search videos, playlists, channels…</target> | 11252 | <trans-unit id="2279527393438260622" datatype="html"> |
11253 | <source>Search videos, playlists, channels…</source> | ||
11254 | <target state="new">Search videos, playlists, channels…</target> | ||
10693 | <context-group purpose="location"> | 11255 | <context-group purpose="location"> |
10694 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 11256 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
10695 | <context context-type="linenumber">3</context> | 11257 | <context context-type="linenumber">3</context> |
@@ -10700,104 +11262,104 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10700 | <target state="new">Video removed from | 11262 | <target state="new">Video removed from |
10701 | <x id="PH"/> | 11263 | <x id="PH"/> |
10702 | </target> | 11264 | </target> |
10703 | 11265 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">309</context></context-group> | |
10704 | 11266 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">97</context></context-group> | |
10705 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">309</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 11267 | </trans-unit> |
10706 | <trans-unit id="1056145626640340519" datatype="html"> | 11268 | <trans-unit id="1056145626640340519" datatype="html"> |
10707 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 11269 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
10708 | <target state="new">Video added in | 11270 | <target state="new">Video added in |
10709 | <x id="PH"/> at timestamps | 11271 | <x id="PH"/> at timestamps |
10710 | <x id="PH_1"/> | 11272 | <x id="PH_1"/> |
10711 | </target> | 11273 | </target> |
10712 | 11274 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group> | |
10713 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 11275 | </trans-unit> |
10714 | <trans-unit id="7754186870520534716" datatype="html"> | 11276 | <trans-unit id="7754186870520534716" datatype="html"> |
10715 | <source>Video added in <x id="PH"/> </source> | 11277 | <source>Video added in <x id="PH"/> </source> |
10716 | <target state="new">Video added in | 11278 | <target state="new">Video added in |
10717 | <x id="PH"/> | 11279 | <x id="PH"/> |
10718 | </target> | 11280 | </target> |
10719 | 11281 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 11282 | </trans-unit> |
10721 | <trans-unit id="985751964589921228" datatype="html"> | 11283 | <trans-unit id="985751964589921228" datatype="html"> |
10722 | <source>Timestamps updated</source> | 11284 | <source>Timestamps updated</source> |
10723 | <target state="new">Timestamps updated</target> | 11285 | <target state="new">Timestamps updated</target> |
10724 | 11286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">277</context></context-group> | |
10725 | 11287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">116</context></context-group> | |
10726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">277</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 11288 | </trans-unit> |
10727 | <trans-unit id="6421445850411984665" datatype="html"> | 11289 | <trans-unit id="6421445850411984665" datatype="html"> |
10728 | <source>Starts at</source> | 11290 | <source>Starts at</source> |
10729 | <target state="new">Starts at </target> | 11291 | <target state="new">Starts at </target> |
10730 | 11292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">139</context></context-group> | |
10731 | 11293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group> | |
10732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 11294 | </trans-unit> |
10733 | <trans-unit id="7145200412085189912" datatype="html"> | 11295 | <trans-unit id="7145200412085189912" datatype="html"> |
10734 | <source>Stops at</source> | 11296 | <source>Stops at</source> |
10735 | <target state="new">Stops at </target> | 11297 | <target state="new">Stops at </target> |
10736 | 11298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group> | |
10737 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 11299 | </trans-unit> |
10738 | <trans-unit id="921225940108335688" datatype="html"> | 11300 | <trans-unit id="921225940108335688" datatype="html"> |
10739 | <source>and stops at</source> | 11301 | <source>and stops at</source> |
10740 | <target state="new"> and stops at </target> | 11302 | <target state="new"> and stops at </target> |
10741 | 11303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group> | |
10742 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 11304 | </trans-unit> |
10743 | <trans-unit id="2909684945706361544" datatype="html"> | 11305 | <trans-unit id="2909684945706361544" datatype="html"> |
10744 | <source>Delete video</source> | 11306 | <source>Delete video</source> |
10745 | <target state="new">Delete video</target> | 11307 | <target state="new">Delete video</target> |
10746 | 11308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group> | |
10747 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group></trans-unit> | 11309 | </trans-unit> |
10748 | <trans-unit id="2210418817778733727" datatype="html"> | 11310 | <trans-unit id="2210418817778733727" datatype="html"> |
10749 | <source>Actions for the comment</source> | 11311 | <source>Actions for the comment</source> |
10750 | <target state="new">Actions for the comment</target> | 11312 | <target state="new">Actions for the comment</target> |
10751 | 11313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">400</context></context-group> | |
10752 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">400</context></context-group></trans-unit> | 11314 | </trans-unit> |
10753 | <trans-unit id="7978668497183230348" datatype="html"> | 11315 | <trans-unit id="7978668497183230348" datatype="html"> |
10754 | <source>Delete comment</source> | 11316 | <source>Delete comment</source> |
10755 | <target state="new">Delete comment</target> | 11317 | <target state="new">Delete comment</target> |
10756 | 11318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group> | |
10757 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group></trans-unit> | 11319 | </trans-unit> |
10758 | <trans-unit id="6747218355168080191" datatype="html"> | 11320 | <trans-unit id="6747218355168080191" datatype="html"> |
10759 | <source>Do you really want to delete this comment?</source> | 11321 | <source>Do you really want to delete this comment?</source> |
10760 | <target state="new">Do you really want to delete this comment?</target> | 11322 | <target state="new">Do you really want to delete this comment?</target> |
10761 | 11323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">172</context></context-group> | |
10762 | 11324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">410</context></context-group> | |
10763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">410</context></context-group></trans-unit> | 11325 | </trans-unit> |
10764 | <trans-unit id="7837272126865175984" datatype="html"> | 11326 | <trans-unit id="7837272126865175984" datatype="html"> |
10765 | <source>Comment deleted.</source> | 11327 | <source>Comment deleted.</source> |
10766 | <target state="new">Comment deleted.</target> | 11328 | <target state="new">Comment deleted.</target> |
10767 | 11329 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">418</context></context-group> | |
10768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 11330 | </trans-unit> |
10769 | <trans-unit id="346270517625845962" datatype="html"> | 11331 | <trans-unit id="346270517625845962" datatype="html"> |
10770 | <source>Encoder</source> | 11332 | <source>Encoder</source> |
10771 | <target state="new">Encoder</target> | 11333 | <target state="new">Encoder</target> |
10772 | 11334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">213</context></context-group> | |
10773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> | 11335 | </trans-unit> |
10774 | <trans-unit id="2331557444464201331" datatype="html"> | 11336 | <trans-unit id="2331557444464201331" datatype="html"> |
10775 | <source>Format name</source> | 11337 | <source>Format name</source> |
10776 | <target state="new">Format name</target> | 11338 | <target state="new">Format name</target> |
10777 | 11339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">214</context></context-group> | |
10778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 11340 | </trans-unit> |
10779 | <trans-unit id="45739481977493163" datatype="html"> | 11341 | <trans-unit id="45739481977493163" datatype="html"> |
10780 | <source>Size</source> | 11342 | <source>Size</source> |
10781 | <target state="new">Size</target> | 11343 | <target state="new">Size</target> |
10782 | 11344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">215</context></context-group> | |
10783 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 11345 | </trans-unit> |
10784 | <trans-unit id="7742520815129539114" datatype="html"> | 11346 | <trans-unit id="7742520815129539114" datatype="html"> |
10785 | <source>Bitrate</source> | 11347 | <source>Bitrate</source> |
10786 | <target state="new">Bitrate</target> | 11348 | <target state="new">Bitrate</target> |
10787 | 11349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">217</context></context-group> | |
10788 | 11350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">240</context></context-group> | |
10789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">217</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">240</context></context-group></trans-unit> | 11351 | </trans-unit> |
10790 | <trans-unit id="4094960161662677662" datatype="html"> | 11352 | <trans-unit id="4094960161662677662" datatype="html"> |
10791 | <source>Codec</source> | 11353 | <source>Codec</source> |
10792 | <target state="new">Codec</target> | 11354 | <target state="new">Codec</target> |
10793 | 11355 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">237</context></context-group> | |
10794 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">237</context></context-group></trans-unit> | 11356 | </trans-unit> |
10795 | <trans-unit id="2115592966120408375" datatype="html"> | 11357 | <trans-unit id="2115592966120408375" datatype="html"> |
10796 | <source>Copied</source> | 11358 | <source>Copied</source> |
10797 | <target state="new">Copied</target> | 11359 | <target state="new">Copied</target> |
10798 | 11360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">47</context></context-group> | |
10799 | 11361 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">197</context></context-group> | |
10800 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">197</context></context-group></trans-unit> | 11362 | </trans-unit> |
10801 | <trans-unit id="4323470180912194028" datatype="html"> | 11363 | <trans-unit id="4323470180912194028" datatype="html"> |
10802 | <source>Copy</source> | 11364 | <source>Copy</source> |
10803 | <target state="new">Copy</target> | 11365 | <target state="new">Copy</target> |
@@ -10807,121 +11369,141 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10807 | <trans-unit id="1472171759957681533" datatype="html"> | 11369 | <trans-unit id="1472171759957681533" datatype="html"> |
10808 | <source>Video reported.</source> | 11370 | <source>Video reported.</source> |
10809 | <target state="new">Video reported.</target> | 11371 | <target state="new">Video reported.</target> |
10810 | 11372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 11373 | </trans-unit> |
10812 | <trans-unit id="3622946684246476652" datatype="html"> | 11374 | <trans-unit id="3622946684246476652" datatype="html"> |
10813 | <source>Do you really want to delete this video?</source> | 11375 | <source>Do you really want to delete this video?</source> |
10814 | <target state="new">Do you really want to delete this video?</target> | 11376 | <target state="new">Do you really want to delete this video?</target> |
10815 | 11377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10816 | 11378 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">375</context></context-group> | |
10817 | 11379 | </trans-unit> | |
10818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> | ||
10819 | <trans-unit id="3941342949736653028" datatype="html"> | 11380 | <trans-unit id="3941342949736653028" datatype="html"> |
10820 | <source>Video deleted.</source> | 11381 | <source>Video deleted.</source> |
10821 | <target state="new">Video deleted.</target> | 11382 | <target state="new">Video deleted.</target> |
10822 | 11383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
10823 | 11384 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">383</context></context-group> | |
10824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> | 11385 | </trans-unit> |
10825 | <trans-unit id="5072091387445907742" datatype="html"> | 11386 | <trans-unit id="5072091387445907742" datatype="html"> |
10826 | <source>Actions for the reporter</source> | 11387 | <source>Actions for the reporter</source> |
10827 | <target state="new">Actions for the reporter</target> | 11388 | <target state="new">Actions for the reporter</target> |
10828 | 11389 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">310</context></context-group> | |
10829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">310</context></context-group></trans-unit> | 11390 | </trans-unit> |
10830 | <trans-unit id="6599069899275412095" datatype="html"> | 11391 | <trans-unit id="6599069899275412095" datatype="html"> |
10831 | <source>Mute reporter</source> | 11392 | <source>Mute reporter</source> |
10832 | <target state="new">Mute reporter</target> | 11393 | <target state="new">Mute reporter</target> |
10833 | 11394 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">316</context></context-group> | |
10834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> | 11395 | </trans-unit> |
10835 | |||
10836 | <trans-unit id="3099741642167775297" datatype="html"> | 11396 | <trans-unit id="3099741642167775297" datatype="html"> |
10837 | <source>Download</source> | 11397 | <source>Download</source> |
10838 | <target state="new">Download</target> | 11398 | <target state="new">Download</target> |
10839 | 11399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group> | |
10840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 11400 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group> |
11401 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group> | ||
11402 | </trans-unit> | ||
10841 | <trans-unit id="7672331870004528654" datatype="html"> | 11403 | <trans-unit id="7672331870004528654" datatype="html"> |
10842 | <source>Display live information</source> | 11404 | <source>Display live information</source> |
10843 | <target state="new">Display live information</target> | 11405 | <target state="new">Display live information</target> |
10844 | 11406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group> | |
10845 | 11407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">330</context></context-group> | |
10846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">330</context></context-group></trans-unit> | 11408 | </trans-unit> |
10847 | <trans-unit id="4021752662928002901" datatype="html"> | 11409 | <trans-unit id="4021752662928002901" datatype="html"> |
10848 | <source>Update</source> | 11410 | <source>Update</source> |
10849 | <target state="new">Update</target> | 11411 | <target state="new">Update</target> |
10850 | 11412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group> | |
10851 | 11413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group> | |
10852 | 11414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group> | |
10853 | 11415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | |
10854 | 11416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | |
10855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">336</context></context-group></trans-unit> | 11417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> |
11418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group> | ||
11419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group> | ||
11420 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group> | ||
11421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">336</context></context-group> | ||
11422 | </trans-unit> | ||
10856 | <trans-unit id="420763834450076269" datatype="html"> | 11423 | <trans-unit id="420763834450076269" datatype="html"> |
10857 | <source>Block</source> | 11424 | <source>Block</source> |
10858 | <target state="new">Block</target> | 11425 | <target state="new">Block</target> |
10859 | 11426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">80</context></context-group> | |
10860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">348</context></context-group></trans-unit><trans-unit id="6521421218398377925" datatype="html"> | 11427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">50</context></context-group> |
10861 | <source>Run HLS transcoding</source><target state="new">Run HLS transcoding</target> | 11428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">348</context></context-group> |
10862 | 11429 | </trans-unit> | |
10863 | 11430 | <trans-unit id="6521421218398377925" datatype="html"> | |
10864 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit><trans-unit id="4956271014213477815" datatype="html"> | 11431 | <source>Run HLS transcoding</source> |
10865 | <source>Run WebTorrent transcoding</source><target state="new">Run WebTorrent transcoding</target> | 11432 | <target state="new">Run HLS transcoding</target> |
10866 | 11433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10867 | 11434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group></trans-unit><trans-unit id="5972374600810542430" datatype="html"> | 11435 | </trans-unit> |
10869 | <source>Delete HLS files</source><target state="new">Delete HLS files</target> | 11436 | <trans-unit id="4956271014213477815" datatype="html"> |
10870 | 11437 | <source>Run WebTorrent transcoding</source> | |
10871 | 11438 | <target state="new">Run WebTorrent transcoding</target> | |
10872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit><trans-unit id="3844238590532933757" datatype="html"> | 11439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group> |
10873 | <source>Delete WebTorrent files</source><target state="new">Delete WebTorrent files</target> | 11440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group> |
10874 | 11441 | </trans-unit> | |
10875 | 11442 | <trans-unit id="5972374600810542430" datatype="html"> | |
10876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group></trans-unit> | 11443 | <source>Delete HLS files</source> |
11444 | <target state="new">Delete HLS files</target> | ||
11445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group> | ||
11446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | ||
11447 | </trans-unit> | ||
11448 | <trans-unit id="3844238590532933757" datatype="html"> | ||
11449 | <source>Delete WebTorrent files</source> | ||
11450 | <target state="new">Delete WebTorrent files</target> | ||
11451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group> | ||
11452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | ||
11453 | </trans-unit> | ||
10877 | <trans-unit id="1950057220179636309" datatype="html"> | 11454 | <trans-unit id="1950057220179636309" datatype="html"> |
10878 | <source>Save to playlist</source> | 11455 | <source>Save to playlist</source> |
10879 | <target state="new">Save to playlist</target> | 11456 | <target state="new">Save to playlist</target> |
10880 | 11457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">58</context></context-group> | |
10881 | 11458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> | |
10882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> | 11459 | </trans-unit> |
10883 | <trans-unit id="8272123190776748811" datatype="html"> | 11460 | <trans-unit id="8272123190776748811" datatype="html"> |
10884 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 11461 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
10885 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 11462 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> |
10886 | 11463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> | |
10887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 11464 | </trans-unit> |
10888 | <trans-unit id="4503408361537553733" datatype="html"> | 11465 | <trans-unit id="4503408361537553733" datatype="html"> |
10889 | <source>Mirror</source> | 11466 | <source>Mirror</source> |
10890 | <target state="new">Mirror</target> | 11467 | <target state="new">Mirror</target> |
10891 | 11468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">360</context></context-group> | |
10892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">360</context></context-group></trans-unit><trans-unit id="2631340539474479416" datatype="html"> | 11469 | </trans-unit> |
10893 | <source>Subtitles</source><target state="new">Subtitles</target> | 11470 | <trans-unit id="2631340539474479416" datatype="html"> |
11471 | <source>Subtitles</source> | ||
11472 | <target state="new">Subtitles</target> | ||
10894 | <context-group purpose="location"> | 11473 | <context-group purpose="location"> |
10895 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 11474 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
10896 | <context context-type="linenumber">9</context> | 11475 | <context context-type="linenumber">9</context> |
10897 | </context-group> | 11476 | </context-group> |
10898 | </trans-unit> | 11477 | </trans-unit> |
10899 | |||
10900 | <trans-unit id="4814285799071780083" datatype="html"> | 11478 | <trans-unit id="4814285799071780083" datatype="html"> |
10901 | <source>Remove</source> | 11479 | <source>Remove</source> |
10902 | <target state="new">Remove</target> | 11480 | <target state="new">Remove</target> |
10903 | 11481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context><context context-type="linenumber">186</context></context-group> | |
10904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 11482 | </trans-unit> |
10905 | <trans-unit id="6871668720687277843" datatype="html"> | 11483 | <trans-unit id="6871668720687277843" datatype="html"> |
10906 | <source>Remove & re-draft</source> | 11484 | <source>Remove & re-draft</source> |
10907 | <target state="new">Remove & re-draft</target> | 11485 | <target state="new">Remove & re-draft</target> |
10908 | 11486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context><context context-type="linenumber">194</context></context-group> | |
10909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context><context context-type="linenumber">194</context></context-group></trans-unit><trans-unit id="60216491008745400" datatype="html"> | 11487 | </trans-unit> |
10910 | <source>Actions on comment</source><target state="new">Actions on comment</target> | 11488 | <trans-unit id="60216491008745400" datatype="html"> |
11489 | <source>Actions on comment</source> | ||
11490 | <target state="new">Actions on comment</target> | ||
10911 | <context-group purpose="location"> | 11491 | <context-group purpose="location"> |
10912 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context> | 11492 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.ts</context> |
10913 | <context context-type="linenumber">202</context> | 11493 | <context context-type="linenumber">202</context> |
10914 | </context-group> | 11494 | </context-group> |
10915 | </trans-unit><trans-unit id="992317512448454409" datatype="html"> | 11495 | </trans-unit> |
10916 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source><target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> | 11496 | <trans-unit id="992317512448454409" datatype="html"> |
10917 | 11497 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | |
10918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 11498 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> |
11499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">4</context></context-group> | ||
11500 | </trans-unit> | ||
10919 | <trans-unit id="4903651219400691248" datatype="html"> | 11501 | <trans-unit id="4903651219400691248" datatype="html"> |
10920 | <source>Mute account</source> | 11502 | <source>Mute account</source> |
10921 | <target state="new">Mute account</target> | 11503 | <target state="new">Mute account</target> |
10922 | 11504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group> | |
10923 | 11505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">406</context></context-group> | |
10924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">406</context></context-group></trans-unit> | 11506 | </trans-unit> |
10925 | <trans-unit id="4021487547497211597" datatype="html"> | 11507 | <trans-unit id="4021487547497211597" datatype="html"> |
10926 | <source>Open video actions</source> | 11508 | <source>Open video actions</source> |
10927 | <target state="new">Open video actions</target> | 11509 | <target state="new">Open video actions</target> |
@@ -10933,43 +11515,49 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10933 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> | 11515 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> |
10934 | <context context-type="linenumber">4</context> | 11516 | <context context-type="linenumber">4</context> |
10935 | </context-group> | 11517 | </context-group> |
10936 | </trans-unit><trans-unit id="3076101305843397295" datatype="html"> | 11518 | </trans-unit> |
10937 | <source>Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</source><target state="new">Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</target> | 11519 | <trans-unit id="3076101305843397295" datatype="html"> |
10938 | 11520 | <source>Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</source> | |
10939 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit><trans-unit id="8359747231611535508" datatype="html"> | 11521 | <target state="new">Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</target> |
10940 | <source>Unblock <x id="PH" equiv-text="this.video.name"/></source><target state="new">Unblock <x id="PH" equiv-text="this.video.name"/></target> | 11522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> |
10941 | 11523 | </trans-unit> | |
10942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 11524 | <trans-unit id="8359747231611535508" datatype="html"> |
11525 | <source>Unblock <x id="PH" equiv-text="this.video.name"/></source> | ||
11526 | <target state="new">Unblock <x id="PH" equiv-text="this.video.name"/></target> | ||
11527 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> | ||
11528 | </trans-unit> | ||
10943 | <trans-unit id="3719503424625455635" datatype="html"> | 11529 | <trans-unit id="3719503424625455635" datatype="html"> |
10944 | <source>Mute server account</source> | 11530 | <source>Mute server account</source> |
10945 | <target state="new">Mute server account</target> | 11531 | <target state="new">Mute server account</target> |
10946 | 11532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">298</context></context-group> | |
10947 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit> | 11533 | </trans-unit> |
10948 | <trans-unit id="7008439939460403347" datatype="html"> | 11534 | <trans-unit id="7008439939460403347" datatype="html"> |
10949 | <source>Report</source> | 11535 | <source>Report</source> |
10950 | <target state="new">Report</target> | 11536 | <target state="new">Report</target> |
10951 | 11537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group> | |
10952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">372</context></context-group></trans-unit> | 11538 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group> |
11539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">372</context></context-group> | ||
11540 | </trans-unit> | ||
10953 | <trans-unit id="829951422090160526" datatype="html"> | 11541 | <trans-unit id="829951422090160526" datatype="html"> |
10954 | <source>Reported part</source> | 11542 | <source>Reported part</source> |
10955 | <target state="new">Reported part</target> | 11543 | <target state="new">Reported part</target> |
10956 | 11544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">73</context></context-group> | |
10957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 11545 | </trans-unit> |
10958 | <trans-unit id="4388879716045736175" datatype="html"> | 11546 | <trans-unit id="4388879716045736175" datatype="html"> |
10959 | <source>Note</source> | 11547 | <source>Note</source> |
10960 | <target state="new">Note</target> | 11548 | <target state="new">Note</target> |
10961 | 11549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">80</context></context-group> | |
10962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 11550 | </trans-unit> |
10963 | <trans-unit id="7234922541542636802" datatype="html"> | 11551 | <trans-unit id="7234922541542636802" datatype="html"> |
10964 | <source>The video was deleted</source> | 11552 | <source>The video was deleted</source> |
10965 | <target state="new">The video was deleted</target> | 11553 | <target state="new">The video was deleted</target> |
10966 | 11554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">89</context></context-group> | |
10967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">89</context></context-group></trans-unit> | 11555 | </trans-unit> |
10968 | <trans-unit id="872792317034860453" datatype="html"> | 11556 | <trans-unit id="872792317034860453" datatype="html"> |
10969 | <source>Comment:</source> | 11557 | <source>Comment:</source> |
10970 | <target state="new">Comment:</target> | 11558 | <target state="new">Comment:</target> |
10971 | 11559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">95</context></context-group> | |
10972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 11560 | </trans-unit> |
10973 | <trans-unit id="397679576231234820" datatype="html"> | 11561 | <trans-unit id="397679576231234820" datatype="html"> |
10974 | <source>Messages with the reporter</source> | 11562 | <source>Messages with the reporter</source> |
10975 | <target state="new">Messages with the reporter</target> | 11563 | <target state="new">Messages with the reporter</target> |
@@ -10985,8 +11573,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10985 | <target state="new"> | 11573 | <target state="new"> |
10986 | No messages for now. | 11574 | No messages for now. |
10987 | </target> | 11575 | </target> |
10988 | 11576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">27</context></context-group> | |
10989 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 11577 | </trans-unit> |
10990 | <trans-unit id="2137920566277687382" datatype="html"> | 11578 | <trans-unit id="2137920566277687382" datatype="html"> |
10991 | <source>Add a message</source> | 11579 | <source>Add a message</source> |
10992 | <target state="new">Add a message</target> | 11580 | <target state="new">Add a message</target> |
@@ -10995,20 +11583,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10995 | <trans-unit id="4058575476871566236" datatype="html"> | 11583 | <trans-unit id="4058575476871566236" datatype="html"> |
10996 | <source>Published</source> | 11584 | <source>Published</source> |
10997 | <target state="new">Published</target> | 11585 | <target state="new">Published</target> |
10998 | 11586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">170</context></context-group> | |
10999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit> | 11587 | </trans-unit> |
11000 | <trans-unit id="1747928867514972971" datatype="html"> | 11588 | <trans-unit id="1747928867514972971" datatype="html"> |
11001 | <source>Publication scheduled on</source> | 11589 | <source>Publication scheduled on</source> |
11002 | <target state="new">Publication scheduled on </target> | 11590 | <target state="new">Publication scheduled on </target> |
11003 | 11591 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">175</context></context-group> | |
11004 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit><trans-unit id="5093002376262354382" datatype="html"> | 11592 | </trans-unit> |
11005 | <source>Transcoding failed</source><target state="new">Transcoding failed</target> | 11593 | <trans-unit id="5093002376262354382" datatype="html"> |
11594 | <source>Transcoding failed</source> | ||
11595 | <target state="new">Transcoding failed</target> | ||
11006 | <context-group purpose="location"> | 11596 | <context-group purpose="location"> |
11007 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> | 11597 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> |
11008 | <context context-type="linenumber">179</context> | 11598 | <context context-type="linenumber">179</context> |
11009 | </context-group> | 11599 | </context-group> |
11010 | </trans-unit><trans-unit id="118687079501751948" datatype="html"> | 11600 | </trans-unit> |
11011 | <source>Move to external storage failed</source><target state="new">Move to external storage failed</target> | 11601 | <trans-unit id="118687079501751948" datatype="html"> |
11602 | <source>Move to external storage failed</source> | ||
11603 | <target state="new">Move to external storage failed</target> | ||
11012 | <context-group purpose="location"> | 11604 | <context-group purpose="location"> |
11013 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> | 11605 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> |
11014 | <context context-type="linenumber">183</context> | 11606 | <context context-type="linenumber">183</context> |
@@ -11017,33 +11609,53 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11017 | <trans-unit id="4887724548587271148" datatype="html"> | 11609 | <trans-unit id="4887724548587271148" datatype="html"> |
11018 | <source>Waiting transcoding</source> | 11610 | <source>Waiting transcoding</source> |
11019 | <target state="new">Waiting transcoding</target> | 11611 | <target state="new">Waiting transcoding</target> |
11020 | 11612 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">187</context></context-group> | |
11021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 11613 | </trans-unit> |
11022 | <trans-unit id="4517785179607945981" datatype="html"> | 11614 | <trans-unit id="4517785179607945981" datatype="html"> |
11023 | <source>To transcode</source> | 11615 | <source>To transcode</source> |
11024 | <target state="new">To transcode</target> | 11616 | <target state="new">To transcode</target> |
11025 | 11617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">191</context></context-group> | |
11026 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">191</context></context-group></trans-unit> | 11618 | </trans-unit> |
11027 | <trans-unit id="3299576663551440736" datatype="html"> | 11619 | <trans-unit id="3299576663551440736" datatype="html"> |
11028 | <source>To import</source> | 11620 | <source>To import</source> |
11029 | <target state="new">To import</target> | 11621 | <target state="new">To import</target> |
11030 | 11622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group> | |
11031 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit><trans-unit id="6963802198225789806" datatype="html"> | 11623 | </trans-unit> |
11032 | <source>To edit</source><target state="new">To edit</target> | 11624 | <trans-unit id="6963802198225789806" datatype="html"> |
11625 | <source>To edit</source> | ||
11626 | <target state="new">To edit</target> | ||
11033 | <context-group purpose="location"> | 11627 | <context-group purpose="location"> |
11034 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> | 11628 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> |
11035 | <context context-type="linenumber">199</context> | 11629 | <context context-type="linenumber">199</context> |
11036 | </context-group> | 11630 | </context-group> |
11037 | </trans-unit><trans-unit id="8492933894084361602" datatype="html"> | 11631 | </trans-unit> |
11038 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source><target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | 11632 | <trans-unit id="8492933894084361602" datatype="html"> |
11633 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
11634 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
11039 | <context-group purpose="location"> | 11635 | <context-group purpose="location"> |
11040 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 11636 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
11041 | <context context-type="linenumber">8</context> | 11637 | <context context-type="linenumber">8</context> |
11042 | </context-group> | 11638 | </context-group> |
11043 | </trans-unit><trans-unit id="187187500641108332" datatype="html"> | 11639 | </trans-unit> |
11044 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source><target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> | 11640 | <trans-unit id="187187500641108332" datatype="html"> |
11045 | 11641 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> | |
11046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 11642 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> |
11643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group> | ||
11644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group> | ||
11645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group> | ||
11646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">73</context></context-group> | ||
11647 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group> | ||
11648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group> | ||
11649 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group> | ||
11650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group> | ||
11651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group> | ||
11652 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group> | ||
11653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group> | ||
11654 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group> | ||
11655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group> | ||
11656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group> | ||
11657 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group> | ||
11658 | </trans-unit> | ||
11047 | <trans-unit id="1795705931707209785" datatype="html"> | 11659 | <trans-unit id="1795705931707209785" datatype="html"> |
11048 | <source>Add to watch later</source> | 11660 | <source>Add to watch later</source> |
11049 | <target state="new">Add to watch later</target> | 11661 | <target state="new">Add to watch later</target> |
@@ -11062,117 +11674,85 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11062 | <trans-unit id="2439066254855913806" datatype="html"> | 11674 | <trans-unit id="2439066254855913806" datatype="html"> |
11063 | <source>Only I can see this video</source> | 11675 | <source>Only I can see this video</source> |
11064 | <target state="new">Only I can see this video</target> | 11676 | <target state="new">Only I can see this video</target> |
11065 | 11677 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">367</context></context-group> | |
11066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 11678 | </trans-unit> |
11067 | <trans-unit id="6767380569816110388" datatype="html"> | 11679 | <trans-unit id="6767380569816110388" datatype="html"> |
11068 | <source>Only shareable via a private link</source> | 11680 | <source>Only shareable via a private link</source> |
11069 | <target state="new">Only shareable via a private link</target> | 11681 | <target state="new">Only shareable via a private link</target> |
11070 | 11682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">368</context></context-group> | |
11071 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">368</context></context-group></trans-unit> | 11683 | </trans-unit> |
11072 | <trans-unit id="6828965264297239528" datatype="html"> | 11684 | <trans-unit id="6828965264297239528" datatype="html"> |
11073 | <source>Anyone can see this video</source> | 11685 | <source>Anyone can see this video</source> |
11074 | <target state="new">Anyone can see this video</target> | 11686 | <target state="new">Anyone can see this video</target> |
11075 | 11687 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">369</context></context-group> | |
11076 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">369</context></context-group></trans-unit> | 11688 | </trans-unit> |
11077 | <trans-unit id="1425933035739773115" datatype="html"> | 11689 | <trans-unit id="1425933035739773115" datatype="html"> |
11078 | <source>Only users of this instance can see this video</source> | 11690 | <source>Only users of this instance can see this video</source> |
11079 | <target state="new">Only users of this instance can see this video</target> | 11691 | <target state="new">Only users of this instance can see this video</target> |
11080 | 11692 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">370</context></context-group> | |
11081 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">370</context></context-group></trans-unit> | 11693 | </trans-unit> |
11082 | <trans-unit id="8312101634344200207" datatype="html"> | 11694 | <trans-unit id="8312101634344200207" datatype="html"> |
11083 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 11695 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
11084 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | 11696 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> |
11085 | 11697 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">266</context></context-group> | |
11086 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 11698 | </trans-unit> |
11087 | <trans-unit id="7756087706411154095" datatype="html"> | 11699 | <trans-unit id="7756087706411154095" datatype="html"> |
11088 | <source><x id="PH" equiv-text="this.views"/> views</source> | 11700 | <source><x id="PH" equiv-text="this.views"/> views</source> |
11089 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> | 11701 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> |
11090 | 11702 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">269</context></context-group> | |
11091 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">269</context></context-group></trans-unit> | 11703 | </trans-unit> |
11092 | |||
11093 | |||
11094 | |||
11095 | |||
11096 | |||
11097 | |||
11098 | |||
11099 | |||
11100 | |||
11101 | |||
11102 | |||
11103 | |||
11104 | |||
11105 | |||
11106 | |||
11107 | |||
11108 | |||
11109 | |||
11110 | |||
11111 | |||
11112 | |||
11113 | |||
11114 | |||
11115 | |||
11116 | |||
11117 | |||
11118 | |||
11119 | |||
11120 | |||
11121 | |||
11122 | |||
11123 | |||
11124 | <trans-unit id="5210096066382592800" datatype="html"> | 11704 | <trans-unit id="5210096066382592800" datatype="html"> |
11125 | <source>Video to import updated.</source> | 11705 | <source>Video to import updated.</source> |
11126 | <target state="new">Video to import updated.</target> | 11706 | <target state="new">Video to import updated.</target> |
11127 | 11707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">138</context></context-group> | |
11128 | 11708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">139</context></context-group> | |
11129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 11709 | </trans-unit> |
11130 | <trans-unit id="3284171506518522275" datatype="html"> | 11710 | <trans-unit id="3284171506518522275" datatype="html"> |
11131 | <source>Your video was uploaded to your account and is private.</source> | 11711 | <source>Your video was uploaded to your account and is private.</source> |
11132 | <target state="new">Your video was uploaded to your account and is private.</target> | 11712 | <target state="new">Your video was uploaded to your account and is private.</target> |
11133 | 11713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">123</context></context-group> | |
11134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 11714 | </trans-unit> |
11135 | <trans-unit id="5699822024600815733" datatype="html"> | 11715 | <trans-unit id="5699822024600815733" datatype="html"> |
11136 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11716 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11137 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 11717 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
11138 | 11718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">124</context></context-group> | |
11139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 11719 | </trans-unit> |
11140 | <trans-unit id="1219739004043110649" datatype="html"> | 11720 | <trans-unit id="1219739004043110649" datatype="html"> |
11141 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11721 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11142 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 11722 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
11143 | 11723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">126</context></context-group> | |
11144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 11724 | </trans-unit> |
11145 | <trans-unit id="6932865105766151309" datatype="html"> | 11725 | <trans-unit id="6932865105766151309" datatype="html"> |
11146 | <source>Upload</source> | 11726 | <source>Upload</source> |
11147 | <target state="new">Upload</target> | 11727 | <target state="new">Upload</target> |
11148 | 11728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">233</context></context-group> | |
11149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 11729 | </trans-unit> |
11150 | <trans-unit id="8278735427925094503" datatype="html"> | 11730 | <trans-unit id="8278735427925094503" datatype="html"> |
11151 | <source>Upload <x id="PH"/> </source> | 11731 | <source>Upload <x id="PH"/> </source> |
11152 | <target state="new">Upload | 11732 | <target state="new">Upload |
11153 | <x id="PH"/> | 11733 | <x id="PH"/> |
11154 | </target> | 11734 | </target> |
11155 | 11735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">235</context></context-group> | |
11156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> | 11736 | </trans-unit> |
11157 | |||
11158 | <trans-unit id="5981816353437801748" datatype="html"> | 11737 | <trans-unit id="5981816353437801748" datatype="html"> |
11159 | <source>Video published.</source> | 11738 | <source>Video published.</source> |
11160 | <target state="new">Video published.</target> | 11739 | <target state="new">Video published.</target> |
11161 | 11740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">256</context></context-group> | |
11162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">256</context></context-group></trans-unit> | 11741 | </trans-unit> |
11163 | |||
11164 | |||
11165 | <trans-unit id="764164089183618119" datatype="html"> | 11742 | <trans-unit id="764164089183618119" datatype="html"> |
11166 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11743 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11167 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> | 11744 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> |
11168 | 11745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">85</context></context-group> | |
11169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 11746 | </trans-unit> |
11170 | <trans-unit id="8306050839443016954" datatype="html"> | 11747 | <trans-unit id="8306050839443016954" datatype="html"> |
11171 | <source>Video updated.</source> | 11748 | <source>Video updated.</source> |
11172 | <target state="new">Video updated.</target> | 11749 | <target state="new">Video updated.</target> |
11173 | 11750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context><context context-type="linenumber">90</context></context-group> | |
11174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit><trans-unit id="5609201297201028750" datatype="html"> | 11751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group> |
11175 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source><target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | 11752 | </trans-unit> |
11753 | <trans-unit id="5609201297201028750" datatype="html"> | ||
11754 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source> | ||
11755 | <target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | ||
11176 | <context-group purpose="location"> | 11756 | <context-group purpose="location"> |
11177 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11757 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11178 | <context context-type="linenumber">104</context> | 11758 | <context context-type="linenumber">104</context> |
@@ -11181,44 +11761,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11181 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11761 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11182 | <context context-type="linenumber">108</context> | 11762 | <context context-type="linenumber">108</context> |
11183 | </context-group> | 11763 | </context-group> |
11184 | </trans-unit><trans-unit id="2196899015955367634" datatype="html"> | 11764 | </trans-unit> |
11185 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | 11765 | <trans-unit id="2196899015955367634" datatype="html"> |
11766 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source> | ||
11767 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | ||
11186 | <context-group purpose="location"> | 11768 | <context-group purpose="location"> |
11187 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11769 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11188 | <context context-type="linenumber">120</context> | 11770 | <context context-type="linenumber">120</context> |
11189 | </context-group> | 11771 | </context-group> |
11190 | </trans-unit><trans-unit id="4952096817126306891" datatype="html"> | 11772 | </trans-unit> |
11191 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | 11773 | <trans-unit id="4952096817126306891" datatype="html"> |
11774 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source> | ||
11775 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | ||
11192 | <context-group purpose="location"> | 11776 | <context-group purpose="location"> |
11193 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11777 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11194 | <context context-type="linenumber">124</context> | 11778 | <context context-type="linenumber">124</context> |
11195 | </context-group> | 11779 | </context-group> |
11196 | </trans-unit><trans-unit id="665518679871959619" datatype="html"> | 11780 | </trans-unit> |
11197 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | 11781 | <trans-unit id="665518679871959619" datatype="html"> |
11782 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source> | ||
11783 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | ||
11198 | <context-group purpose="location"> | 11784 | <context-group purpose="location"> |
11199 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11785 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11200 | <context context-type="linenumber">128</context> | 11786 | <context context-type="linenumber">128</context> |
11201 | </context-group> | 11787 | </context-group> |
11202 | </trans-unit><trans-unit id="2677581013897190613" datatype="html"> | 11788 | </trans-unit> |
11203 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source><target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | 11789 | <trans-unit id="2677581013897190613" datatype="html"> |
11790 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source> | ||
11791 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | ||
11204 | <context-group purpose="location"> | 11792 | <context-group purpose="location"> |
11205 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11793 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11206 | <context context-type="linenumber">135</context> | 11794 | <context context-type="linenumber">135</context> |
11207 | </context-group> | 11795 | </context-group> |
11208 | </trans-unit><trans-unit id="2299077646120636288" datatype="html"> | 11796 | </trans-unit> |
11209 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source><target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | 11797 | <trans-unit id="2299077646120636288" datatype="html"> |
11798 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source> | ||
11799 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | ||
11210 | <context-group purpose="location"> | 11800 | <context-group purpose="location"> |
11211 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11801 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11212 | <context context-type="linenumber">139</context> | 11802 | <context context-type="linenumber">139</context> |
11213 | </context-group> | 11803 | </context-group> |
11214 | </trans-unit><trans-unit id="7209039243783736285" datatype="html"> | 11804 | </trans-unit> |
11215 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source><target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | 11805 | <trans-unit id="7209039243783736285" datatype="html"> |
11806 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source> | ||
11807 | <target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | ||
11216 | <context-group purpose="location"> | 11808 | <context-group purpose="location"> |
11217 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11809 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11218 | <context context-type="linenumber">143</context> | 11810 | <context context-type="linenumber">143</context> |
11219 | </context-group> | 11811 | </context-group> |
11220 | </trans-unit><trans-unit id="9127817756370915850" datatype="html"> | 11812 | </trans-unit> |
11221 | <source>Edit video</source><target state="new">Edit video</target> | 11813 | <trans-unit id="9127817756370915850" datatype="html"> |
11814 | <source>Edit video</source> | ||
11815 | <target state="new">Edit video</target> | ||
11222 | <context-group purpose="location"> | 11816 | <context-group purpose="location"> |
11223 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> | 11817 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> |
11224 | <context context-type="linenumber">15</context> | 11818 | <context context-type="linenumber">15</context> |
@@ -11232,23 +11826,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11232 | <trans-unit id="6775540171466219199" datatype="html"> | 11826 | <trans-unit id="6775540171466219199" datatype="html"> |
11233 | <source>Stop autoplaying next video</source> | 11827 | <source>Stop autoplaying next video</source> |
11234 | <target state="new">Stop autoplaying next video</target> | 11828 | <target state="new">Stop autoplaying next video</target> |
11235 | 11829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group> | |
11236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 11830 | </trans-unit> |
11237 | <trans-unit id="5149234672404299151" datatype="html"> | 11831 | <trans-unit id="5149234672404299151" datatype="html"> |
11238 | <source>Autoplay next video</source> | 11832 | <source>Autoplay next video</source> |
11239 | <target state="new">Autoplay next video</target> | 11833 | <target state="new">Autoplay next video</target> |
11240 | 11834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group> | |
11241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> | 11835 | </trans-unit> |
11242 | <trans-unit id="5870421136141540382" datatype="html"> | 11836 | <trans-unit id="5870421136141540382" datatype="html"> |
11243 | <source>Stop looping playlist videos</source> | 11837 | <source>Stop looping playlist videos</source> |
11244 | <target state="new">Stop looping playlist videos</target> | 11838 | <target state="new">Stop looping playlist videos</target> |
11245 | 11839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">240</context></context-group> | |
11246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">240</context></context-group></trans-unit> | 11840 | </trans-unit> |
11247 | <trans-unit id="1599585307037758139" datatype="html"> | 11841 | <trans-unit id="1599585307037758139" datatype="html"> |
11248 | <source>Loop playlist videos</source> | 11842 | <source>Loop playlist videos</source> |
11249 | <target state="new">Loop playlist videos</target> | 11843 | <target state="new">Loop playlist videos</target> |
11250 | 11844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">241</context></context-group> | |
11251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">241</context></context-group></trans-unit> | 11845 | </trans-unit> |
11252 | <trans-unit id="3704292036525161260" datatype="html"> | 11846 | <trans-unit id="3704292036525161260" datatype="html"> |
11253 | <source>Placeholder image</source> | 11847 | <source>Placeholder image</source> |
11254 | <target state="new">Placeholder image</target> | 11848 | <target state="new">Placeholder image</target> |
@@ -11258,129 +11852,165 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11258 | </context-group> | 11852 | </context-group> |
11259 | </trans-unit> | 11853 | </trans-unit> |
11260 | <trans-unit id="961774488937452220" datatype="html"> | 11854 | <trans-unit id="961774488937452220" datatype="html"> |
11261 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 11855 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
11262 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 11856 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
11263 | 11857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> | |
11264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit> | 11858 | </trans-unit> |
11265 | <trans-unit id="5761611056224181752" datatype="html"> | 11859 | <trans-unit id="5761611056224181752" datatype="html"> |
11266 | <source>Redirection</source> | 11860 | <source>Redirection</source> |
11267 | <target state="new">Redirection</target> | 11861 | <target state="new">Redirection</target> |
11268 | 11862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">302</context></context-group> | |
11269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit> | 11863 | </trans-unit> |
11270 | <trans-unit id="8858527736400081688" datatype="html"> | 11864 | <trans-unit id="8858527736400081688" datatype="html"> |
11271 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 11865 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
11272 | <target state="new">This video contains mature or explicit content. Are you sure you want to watch it?</target> | 11866 | <target state="new">This video contains mature or explicit content. Are you sure you want to watch it?</target> |
11273 | 11867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">351</context></context-group> | |
11274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 11868 | </trans-unit> |
11275 | <trans-unit id="3937119019020041049" datatype="html"> | 11869 | <trans-unit id="3937119019020041049" datatype="html"> |
11276 | <source>Mature or explicit content</source> | 11870 | <source>Mature or explicit content</source> |
11277 | <target state="new">Mature or explicit content</target> | 11871 | <target state="new">Mature or explicit content</target> |
11278 | 11872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">352</context></context-group> | |
11279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 11873 | </trans-unit> |
11280 | <trans-unit id="1755474755114288376" datatype="html"> | 11874 | <trans-unit id="1755474755114288376" datatype="html"> |
11281 | <source>Up Next</source> | 11875 | <source>Up Next</source> |
11282 | <target state="new">Up Next</target> | 11876 | <target state="new">Up Next</target> |
11283 | 11877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">424</context></context-group> | |
11284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">424</context></context-group></trans-unit> | 11878 | </trans-unit> |
11285 | <trans-unit id="2159130950882492111" datatype="html"> | 11879 | <trans-unit id="2159130950882492111" datatype="html"> |
11286 | <source>Cancel</source> | 11880 | <source>Cancel</source> |
11287 | <target state="new">Cancel</target> | 11881 | <target state="new">Cancel</target> |
11288 | 11882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | |
11289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 11883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group> |
11884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group> | ||
11885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | ||
11886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group> | ||
11887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | ||
11888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group> | ||
11889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context><context context-type="linenumber">26</context></context-group> | ||
11890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group> | ||
11891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group> | ||
11892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group> | ||
11893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group> | ||
11894 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | ||
11895 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group> | ||
11896 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group> | ||
11897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | ||
11898 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | ||
11899 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group> | ||
11900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">34</context></context-group> | ||
11901 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group> | ||
11902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group> | ||
11903 | </trans-unit> | ||
11290 | <trans-unit id="3354816756665089864" datatype="html"> | 11904 | <trans-unit id="3354816756665089864" datatype="html"> |
11291 | <source>Autoplay is suspended</source> | 11905 | <source>Autoplay is suspended</source> |
11292 | <target state="new">Autoplay is suspended</target> | 11906 | <target state="new">Autoplay is suspended</target> |
11293 | 11907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">426</context></context-group> | |
11294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">426</context></context-group></trans-unit><trans-unit id="5856931617181450881" datatype="html"> | 11908 | </trans-unit> |
11295 | <source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target> | 11909 | <trans-unit id="5856931617181450881" datatype="html"> |
11296 | 11910 | <source>Enter/exit fullscreen</source> | |
11297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html"> | 11911 | <target state="new">Enter/exit fullscreen</target> |
11298 | <source>Play/Pause the video</source><target state="new">Play/Pause the video</target> | 11912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">716</context></context-group> |
11299 | 11913 | </trans-unit> | |
11300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">717</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html"> | 11914 | <trans-unit id="2971009377468404076" datatype="html"> |
11301 | <source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target> | 11915 | <source>Play/Pause the video</source> |
11302 | 11916 | <target state="new">Play/Pause the video</target> | |
11303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">718</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html"> | 11917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">717</context></context-group> |
11304 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target> | 11918 | </trans-unit> |
11305 | 11919 | <trans-unit id="4147087312411482964" datatype="html"> | |
11306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">720</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html"> | 11920 | <source>Mute/unmute the video</source> |
11307 | <source>Increase the volume</source><target state="new">Increase the volume</target> | 11921 | <target state="new">Mute/unmute the video</target> |
11308 | 11922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">718</context></context-group> | |
11309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">722</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html"> | 11923 | </trans-unit> |
11310 | <source>Decrease the volume</source><target state="new">Decrease the volume</target> | 11924 | <trans-unit id="4791956574676305640" datatype="html"> |
11311 | 11925 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source> | |
11312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">723</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html"> | 11926 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target> |
11313 | <source>Seek the video forward</source><target state="new">Seek the video forward</target> | 11927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">720</context></context-group> |
11314 | 11928 | </trans-unit> | |
11315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">725</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html"> | 11929 | <trans-unit id="3887762369650091344" datatype="html"> |
11316 | <source>Seek the video backward</source><target state="new">Seek the video backward</target> | 11930 | <source>Increase the volume</source> |
11317 | 11931 | <target state="new">Increase the volume</target> | |
11318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">726</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html"> | 11932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">722</context></context-group> |
11319 | <source>Increase playback rate</source><target state="new">Increase playback rate</target> | 11933 | </trans-unit> |
11320 | 11934 | <trans-unit id="1363382131573461910" datatype="html"> | |
11321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">728</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html"> | 11935 | <source>Decrease the volume</source> |
11322 | <source>Decrease playback rate</source><target state="new">Decrease playback rate</target> | 11936 | <target state="new">Decrease the volume</target> |
11323 | 11937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">723</context></context-group> | |
11324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">729</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html"> | 11938 | </trans-unit> |
11325 | <source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target> | 11939 | <trans-unit id="2541031516422557760" datatype="html"> |
11326 | 11940 | <source>Seek the video forward</source> | |
11327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html"> | 11941 | <target state="new">Seek the video forward</target> |
11328 | <source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target> | 11942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">725</context></context-group> |
11329 | 11943 | </trans-unit> | |
11330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">732</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html"> | 11944 | <trans-unit id="8813023402019364882" datatype="html"> |
11331 | <source>Toggle theater mode</source><target state="new">Toggle theater mode</target> | 11945 | <source>Seek the video backward</source> |
11332 | 11946 | <target state="new">Seek the video backward</target> | |
11333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">737</context></context-group></trans-unit> | 11947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">726</context></context-group> |
11334 | 11948 | </trans-unit> | |
11335 | 11949 | <trans-unit id="581757752202843950" datatype="html"> | |
11336 | 11950 | <source>Increase playback rate</source> | |
11337 | 11951 | <target state="new">Increase playback rate</target> | |
11338 | 11952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">728</context></context-group> | |
11339 | 11953 | </trans-unit> | |
11340 | 11954 | <trans-unit id="5467642834854681120" datatype="html"> | |
11341 | 11955 | <source>Decrease playback rate</source> | |
11342 | 11956 | <target state="new">Decrease playback rate</target> | |
11343 | 11957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">729</context></context-group> | |
11344 | 11958 | </trans-unit> | |
11959 | <trans-unit id="3860402955823859506" datatype="html"> | ||
11960 | <source>Navigate in the video to the previous frame</source> | ||
11961 | <target state="new">Navigate in the video to the previous frame</target> | ||
11962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">731</context></context-group> | ||
11963 | </trans-unit> | ||
11964 | <trans-unit id="8232494782895420700" datatype="html"> | ||
11965 | <source>Navigate in the video to the next frame</source> | ||
11966 | <target state="new">Navigate in the video to the next frame</target> | ||
11967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">732</context></context-group> | ||
11968 | </trans-unit> | ||
11969 | <trans-unit id="8223917068580581095" datatype="html"> | ||
11970 | <source>Toggle theater mode</source> | ||
11971 | <target state="new">Toggle theater mode</target> | ||
11972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">737</context></context-group> | ||
11973 | </trans-unit> | ||
11345 | <trans-unit id="8025996572234182184" datatype="html"> | 11974 | <trans-unit id="8025996572234182184" datatype="html"> |
11346 | <source>Like the video</source> | 11975 | <source>Like the video</source> |
11347 | <target state="new">Like the video</target> | 11976 | <target state="new">Like the video</target> |
11348 | 11977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">46</context></context-group> | |
11349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 11978 | </trans-unit> |
11350 | <trans-unit id="7692127636377222448" datatype="html"> | 11979 | <trans-unit id="7692127636377222448" datatype="html"> |
11351 | <source>Dislike the video</source> | 11980 | <source>Dislike the video</source> |
11352 | <target state="new">Dislike the video</target> | 11981 | <target state="new">Dislike the video</target> |
11353 | 11982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">51</context></context-group> | |
11354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 11983 | </trans-unit> |
11355 | <trans-unit id="1729036051846673606" datatype="html"> | 11984 | <trans-unit id="1729036051846673606" datatype="html"> |
11356 | <source>When active, the next video is automatically played after the current one.</source> | 11985 | <source>When active, the next video is automatically played after the current one.</source> |
11357 | <target state="new">When active, the next video is automatically played after the current one.</target> | 11986 | <target state="new">When active, the next video is automatically played after the current one.</target> |
11358 | 11987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">50</context></context-group> | |
11359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 11988 | </trans-unit> |
11360 | <trans-unit id="2431286785954354122" datatype="html"> | 11989 | <trans-unit id="2431286785954354122" datatype="html"> |
11361 | <source>Recently added</source> | 11990 | <source>Recently added</source> |
11362 | <target state="new">Recently added</target> | 11991 | <target state="new">Recently added</target> |
11363 | 11992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">195</context></context-group> | |
11364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">195</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 11993 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> |
11994 | </trans-unit> | ||
11365 | <trans-unit id="12646164819555880" datatype="html"> | 11995 | <trans-unit id="12646164819555880" datatype="html"> |
11366 | <source>Videos from your subscriptions</source> | 11996 | <source>Videos from your subscriptions</source> |
11367 | <target state="new">Videos from your subscriptions</target> | 11997 | <target state="new">Videos from your subscriptions</target> |
11368 | 11998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">30</context></context-group> | |
11369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 11999 | </trans-unit> |
11370 | |||
11371 | |||
11372 | <trans-unit id="1812379335568847528" datatype="html"> | 12000 | <trans-unit id="1812379335568847528" datatype="html"> |
11373 | <source>Subscriptions</source> | 12001 | <source>Subscriptions</source> |
11374 | <target state="new">Subscriptions</target> | 12002 | <target state="new">Subscriptions</target> |
11375 | 12003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">67</context></context-group> | |
11376 | 12004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">25</context></context-group> | |
11377 | 12005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">56</context></context-group> | |
11378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 12006 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> |
12007 | </trans-unit> | ||
11379 | <trans-unit id="186236568870281953" datatype="html"> | 12008 | <trans-unit id="186236568870281953" datatype="html"> |
11380 | <source>History</source> | 12009 | <source>History</source> |
11381 | <target state="new">History</target> | 12010 | <target state="new">History</target> |
11382 | 12011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">80</context></context-group> | |
11383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 12012 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group> |
12013 | </trans-unit> | ||
11384 | <trans-unit id="5237588857224999862" datatype="html"> | 12014 | <trans-unit id="5237588857224999862" datatype="html"> |
11385 | <source>Open actions</source> | 12015 | <source>Open actions</source> |
11386 | <target state="new">Open actions</target> | 12016 | <target state="new">Open actions</target> |
@@ -11392,28 +12022,40 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11392 | <trans-unit id="8681933925782924101" datatype="html"> | 12022 | <trans-unit id="8681933925782924101" datatype="html"> |
11393 | <source>Local videos</source> | 12023 | <source>Local videos</source> |
11394 | <target state="new">Local videos</target> | 12024 | <target state="new">Local videos</target> |
11395 | 12025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">89</context></context-group> | |
11396 | 12026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">189</context></context-group> | |
11397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context><context context-type="linenumber">189</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group></trans-unit><trans-unit id="5668077948386857930" datatype="html"> | 12027 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> |
11398 | <source>Exclude</source><target state="new">Exclude</target> | 12028 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> |
11399 | 12029 | </trans-unit> | |
11400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="7147755274837297932" datatype="html"> | 12030 | <trans-unit id="5668077948386857930" datatype="html"> |
11401 | <source>Exclude muted accounts</source><target state="new">Exclude muted accounts</target> | 12031 | <source>Exclude</source> |
11402 | 12032 | <target state="new">Exclude</target> | |
11403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">99</context></context-group></trans-unit><trans-unit id="8397092871503752085" datatype="html"> | 12033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">95</context></context-group> |
11404 | <source>Exclude public videos</source><target state="new">Exclude public videos</target> | 12034 | </trans-unit> |
12035 | <trans-unit id="7147755274837297932" datatype="html"> | ||
12036 | <source>Exclude muted accounts</source> | ||
12037 | <target state="new">Exclude muted accounts</target> | ||
12038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context><context context-type="linenumber">99</context></context-group> | ||
12039 | </trans-unit> | ||
12040 | <trans-unit id="8397092871503752085" datatype="html"> | ||
12041 | <source>Exclude public videos</source> | ||
12042 | <target state="new">Exclude public videos</target> | ||
11405 | <context-group purpose="location"> | 12043 | <context-group purpose="location"> |
11406 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context> | 12044 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-admin.service.ts</context> |
11407 | <context context-type="linenumber">103</context> | 12045 | <context context-type="linenumber">103</context> |
11408 | </context-group> | 12046 | </context-group> |
11409 | </trans-unit><trans-unit id="5895186796919691836" datatype="html"> | 12047 | </trans-unit> |
11410 | <source>Showing <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> videos</source><target state="new">Showing <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> videos</target> | 12048 | <trans-unit id="5895186796919691836" datatype="html"> |
12049 | <source>Showing <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> videos</source> | ||
12050 | <target state="new">Showing <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> to <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> videos</target> | ||
11411 | <context-group purpose="location"> | 12051 | <context-group purpose="location"> |
11412 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context> | 12052 | <context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context> |
11413 | <context context-type="linenumber">11</context> | 12053 | <context context-type="linenumber">11</context> |
11414 | </context-group> | 12054 | </context-group> |
11415 | </trans-unit><trans-unit id="3037358578603095196" datatype="html"> | 12055 | </trans-unit> |
11416 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 12056 | <trans-unit id="3037358578603095196" datatype="html"> |
12057 | <source>Only videos uploaded on this instance are displayed</source> | ||
12058 | <target state="new">Only videos uploaded on this instance are displayed</target> | ||
11417 | <context-group purpose="location"> | 12059 | <context-group purpose="location"> |
11418 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 12060 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
11419 | <context context-type="linenumber">190</context> | 12061 | <context context-type="linenumber">190</context> |
@@ -11422,28 +12064,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11422 | <trans-unit id="4668975178372693951" datatype="html"> | 12064 | <trans-unit id="4668975178372693951" datatype="html"> |
11423 | <source>Discover videos</source> | 12065 | <source>Discover videos</source> |
11424 | <target state="new">Discover videos</target> | 12066 | <target state="new">Discover videos</target> |
11425 | 12067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">17</context></context-group> | |
11426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 12068 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> |
12069 | </trans-unit> | ||
11427 | <trans-unit id="8067135025051844577" datatype="html"> | 12070 | <trans-unit id="8067135025051844577" datatype="html"> |
11428 | <source>Trending videos</source> | 12071 | <source>Trending videos</source> |
11429 | <target state="new">Trending videos</target> | 12072 | <target state="new">Trending videos</target> |
11430 | 12073 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
11431 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> | 12074 | </trans-unit> |
11432 | <trans-unit id="664221386829541948" datatype="html"> | 12075 | <trans-unit id="664221386829541948" datatype="html"> |
11433 | <source>Recently added videos</source> | 12076 | <source>Recently added videos</source> |
11434 | <target state="new">Recently added videos</target> | 12077 | <target state="new">Recently added videos</target> |
11435 | 12078 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
11436 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 12079 | </trans-unit> |
11437 | <trans-unit id="8212906256415538361" datatype="html"> | 12080 | <trans-unit id="8212906256415538361" datatype="html"> |
11438 | <source>Upload a video</source> | 12081 | <source>Upload a video</source> |
11439 | <target state="new">Upload a video</target> | 12082 | <target state="new">Upload a video</target> |
11440 | 12083 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">101</context></context-group> | |
11441 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 12084 | </trans-unit> |
11442 | <trans-unit id="7590784934397800835" datatype="html"> | 12085 | <trans-unit id="7590784934397800835" datatype="html"> |
11443 | <source>Edit a video</source> | 12086 | <source>Edit a video</source> |
11444 | <target state="new">Edit a video</target> | 12087 | <target state="new">Edit a video</target> |
11445 | 12088 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">110</context></context-group> | |
11446 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 12089 | </trans-unit> |
11447 | </body> | 12090 | </body> |
11448 | </file> | 12091 | </file> |
11449 | </xliff> | 12092 | </xliff> |
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index d6588db60..2d4d84299 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf | |||
@@ -316,8 +316,8 @@ | |||
316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> | 316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">150</context></context-group> |
317 | </trans-unit> | 317 | </trans-unit> |
318 | <trans-unit id="5504059606863599420" datatype="html"> | 318 | <trans-unit id="5504059606863599420" datatype="html"> |
319 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 319 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>video <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
320 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> згадав Ð²Ð°Ñ <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>відео <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 320 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">"/><x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> згадав Ð²Ð°Ñ <x id="START_LINK_1" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">"/>відео <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
321 | <context-group purpose="location"> | 321 | <context-group purpose="location"> |
322 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 322 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
323 | <context context-type="linenumber">164</context> | 323 | <context context-type="linenumber">164</context> |
@@ -334,16 +334,16 @@ | |||
334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> | 334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">189</context></context-group> |
335 | </trans-unit> | 335 | </trans-unit> |
336 | <trans-unit id="363592786729553688" datatype="html"> | 336 | <trans-unit id="363592786729553688" datatype="html"> |
337 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> | 337 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A new version of the plugin/theme <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </source> |
338 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>Ðова верÑÑ–Ñ Ð¿Ð»Ð°Ð³Ñ–Ð½Ñƒ/теми <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> доÑтупна : <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> | 338 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>Ðова верÑÑ–Ñ Ð¿Ð»Ð°Ð³Ñ–Ð½Ñƒ/теми <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> доÑтупна : <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> |
339 | <context-group purpose="location"> | 339 | <context-group purpose="location"> |
340 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 340 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
341 | <context context-type="linenumber">198,199</context> | 341 | <context context-type="linenumber">198,199</context> |
342 | </context-group> | 342 | </context-group> |
343 | </trans-unit> | 343 | </trans-unit> |
344 | <trans-unit id="5055099158245592648" datatype="html"> | 344 | <trans-unit id="5055099158245592648" datatype="html"> |
345 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> | 345 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>A new version of PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is available: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </source> |
346 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>Ðова верÑÑ–Ñ PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> доÑтупна: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> | 346 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>Ðова верÑÑ–Ñ PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> доÑтупна: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> |
347 | <context-group purpose="location"> | 347 | <context-group purpose="location"> |
348 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 348 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
349 | <context context-type="linenumber">206,207</context> | 349 | <context context-type="linenumber">206,207</context> |
@@ -367,13 +367,13 @@ | |||
367 | <trans-unit id="8817917090143649804" datatype="html"> | 367 | <trans-unit id="8817917090143649804" datatype="html"> |
368 | <source>Account muted</source> | 368 | <source>Account muted</source> |
369 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð¾</target> | 369 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð¾</target> |
370 | 370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group> | |
371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 371 | </trans-unit> |
372 | <trans-unit id="1684597533616494551" datatype="html"> | 372 | <trans-unit id="1684597533616494551" datatype="html"> |
373 | <source>Server muted</source> | 373 | <source>Server muted</source> |
374 | <target state="translated">Сервер вимкнено</target> | 374 | <target state="translated">Сервер вимкнено</target> |
375 | 375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">80</context></context-group> | |
376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 376 | </trans-unit> |
377 | <trans-unit id="5924559757556526785" datatype="html"> | 377 | <trans-unit id="5924559757556526785" datatype="html"> |
378 | <source>Save to</source> | 378 | <source>Save to</source> |
379 | <target state="translated">Зберегти в</target> | 379 | <target state="translated">Зберегти в</target> |
@@ -434,9 +434,8 @@ | |||
434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | 434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> |
435 | </trans-unit> | 435 | </trans-unit> |
436 | <trans-unit id="2193037168694505715" datatype="html"> | 436 | <trans-unit id="2193037168694505715" datatype="html"> |
437 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> | 437 | <source>Short text to tell people how they can support the channel (membership platform...).<br /><br /> When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> |
438 | When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source> | 438 | <target state="translated">Короткий Ð¾Ð¿Ð¸Ñ ÑпоÑобів підтримки каналу (платформа учаÑÑ‚Ñ–...).<br /><br /> Коли відео вивантажуєтьÑÑ Ñƒ цей канал, поле підтримки відео буде автоматично заповнено цим текÑтом.</target> |
439 | <target state="translated">Короткий Ð¾Ð¿Ð¸Ñ ÑпоÑобів підтримки каналу (платформа учаÑÑ‚Ñ–...).<br /><br /> Коли відео вивантажуєтьÑÑ Ñƒ цей канал, поле підтримки відео буде автоматично заповнено цим текÑтом.</target> | ||
440 | <context-group purpose="location"> | 439 | <context-group purpose="location"> |
441 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> | 440 | <context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context> |
442 | <context context-type="linenumber">67,68</context> | 441 | <context context-type="linenumber">67,68</context> |
@@ -510,9 +509,11 @@ | |||
510 | <trans-unit id="6325096236207614377"> | 509 | <trans-unit id="6325096236207614377"> |
511 | <source>Reason...</source> | 510 | <source>Reason...</source> |
512 | <target>Причина...</target> | 511 | <target>Причина...</target> |
513 | 512 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">16</context></context-group> | |
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="1781854282711822539" datatype="html"> | 513 | </trans-unit> |
515 | <source>Mute to also hide videos/comments</source><target state="new">Mute to also hide videos/comments</target> | 514 | <trans-unit id="1781854282711822539" datatype="html"> |
515 | <source>Mute to also hide videos/comments</source> | ||
516 | <target state="new">Mute to also hide videos/comments</target> | ||
516 | <context-group purpose="location"> | 517 | <context-group purpose="location"> |
517 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> | 518 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context> |
518 | <context context-type="linenumber">27</context> | 519 | <context context-type="linenumber">27</context> |
@@ -592,9 +593,9 @@ | |||
592 | <trans-unit id="9081463435738465430" datatype="html"> | 593 | <trans-unit id="9081463435738465430" datatype="html"> |
593 | <source>Blocked</source> | 594 | <source>Blocked</source> |
594 | <target state="translated">Заблоковано</target> | 595 | <target state="translated">Заблоковано</target> |
595 | 596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
596 | 597 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">59</context></context-group> | |
597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 598 | </trans-unit> |
598 | <trans-unit id="870586304593427318" datatype="html"> | 599 | <trans-unit id="870586304593427318" datatype="html"> |
599 | <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source> | 600 | <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source> |
600 | <target state="translated">Ви Ñправді хочете видалити ці <x id="PH" equiv-text="videos.length"/> відео?</target> | 601 | <target state="translated">Ви Ñправді хочете видалити ці <x id="PH" equiv-text="videos.length"/> відео?</target> |
@@ -651,8 +652,8 @@ | |||
651 | <trans-unit id="3514509630940272440" datatype="html"> | 652 | <trans-unit id="3514509630940272440" datatype="html"> |
652 | <source>Sensitive</source> | 653 | <source>Sensitive</source> |
653 | <target state="translated">Чутливе</target> | 654 | <target state="translated">Чутливе</target> |
654 | 655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">63</context></context-group> | |
655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 656 | </trans-unit> |
656 | <trans-unit id="7708270344948043036" datatype="html"> | 657 | <trans-unit id="7708270344948043036" datatype="html"> |
657 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 658 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
658 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </target> | 659 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </target> |
@@ -712,15 +713,16 @@ | |||
712 | <trans-unit id="7585826646011739428"> | 713 | <trans-unit id="7585826646011739428"> |
713 | <source>Edit</source> | 714 | <source>Edit</source> |
714 | <target>Редагувати</target> | 715 | <target>Редагувати</target> |
715 | 716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
716 | 717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
717 | 718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
718 | 719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
719 | 720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
720 | 721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
721 | 722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group> | |
722 | 723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">310</context></context-group> | |
723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">310</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group> |
725 | </trans-unit> | ||
724 | <trans-unit id="5293515551330482519"> | 726 | <trans-unit id="5293515551330482519"> |
725 | <source>Truncated preview</source> | 727 | <source>Truncated preview</source> |
726 | <target state="translated">Вкорочений виглÑд</target> | 728 | <target state="translated">Вкорочений виглÑд</target> |
@@ -732,8 +734,8 @@ | |||
732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> | 734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">20</context></context-group> |
733 | </trans-unit> | 735 | </trans-unit> |
734 | <trans-unit id="8644431249513874405" datatype="html"> | 736 | <trans-unit id="8644431249513874405" datatype="html"> |
735 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 737 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
736 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a>-ÑуміÑний, що підтримує:</target> | 738 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a>-ÑуміÑний, що підтримує:</target> |
737 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 739 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
738 | </trans-unit> | 740 | </trans-unit> |
739 | <trans-unit id="146235964740293376" datatype="html"> | 741 | <trans-unit id="146235964740293376" datatype="html"> |
@@ -767,33 +769,33 @@ | |||
767 | <trans-unit id="7639191791633609999" datatype="html"> | 769 | <trans-unit id="7639191791633609999" datatype="html"> |
768 | <source>The live stream will be automatically terminated.</source> | 770 | <source>The live stream will be automatically terminated.</source> |
769 | <target state="translated">ПрÑму транÑлÑцію буде автоматично припинено.</target> | 771 | <target state="translated">ПрÑму транÑлÑцію буде автоматично припинено.</target> |
770 | 772 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group> | |
771 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit> | 773 | </trans-unit> |
772 | <trans-unit id="8023282004085823427" datatype="html"> | 774 | <trans-unit id="8023282004085823427" datatype="html"> |
773 | <source><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</source> | 775 | <source><x id="PH" equiv-text="this.video.name"/> will be duplicated by your instance.</source> |
774 | <target state="translated"><x id="PH" equiv-text="this.video.name"/> продублюютьÑÑ Ð½Ð° вашому Ñервері.</target> | 776 | <target state="translated"><x id="PH" equiv-text="this.video.name"/> продублюютьÑÑ Ð½Ð° вашому Ñервері.</target> |
775 | 777 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">249</context></context-group> | |
776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit> | 778 | </trans-unit> |
777 | <trans-unit id="4140366911638662173" datatype="html"> | 779 | <trans-unit id="4140366911638662173" datatype="html"> |
778 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> | 780 | <source>Do you really want to remove "<x id="PH" equiv-text="this.video.name"/>" files?</source> |
779 | <target state="translated">Ви Ñправді хочете вилучити файли «<x id="PH" equiv-text="this.video.name"/>»?</target> | 781 | <target state="translated">Ви Ñправді хочете вилучити файли «<x id="PH" equiv-text="this.video.name"/>»?</target> |
780 | 782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
781 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 783 | </trans-unit> |
782 | <trans-unit id="2955645766721124100" datatype="html"> | 784 | <trans-unit id="2955645766721124100" datatype="html"> |
783 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> | 785 | <source>Remove "<x id="PH" equiv-text="this.video.name"/>" files</source> |
784 | <target state="translated">Вилучити файли «<x id="PH" equiv-text="this.video.name"/>»</target> | 786 | <target state="translated">Вилучити файли «<x id="PH" equiv-text="this.video.name"/>»</target> |
785 | 787 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | |
786 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit> | 788 | </trans-unit> |
787 | <trans-unit id="7758350391886784213" datatype="html"> | 789 | <trans-unit id="7758350391886784213" datatype="html"> |
788 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> | 790 | <source>Removed files of <x id="PH" equiv-text="video.name"/>.</source> |
789 | <target state="translated">Вилучено файли з <x id="PH" equiv-text="video.name"/>.</target> | 791 | <target state="translated">Вилучено файли з <x id="PH" equiv-text="video.name"/>.</target> |
790 | 792 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> | |
791 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 793 | </trans-unit> |
792 | <trans-unit id="6279087330074580345" datatype="html"> | 794 | <trans-unit id="6279087330074580345" datatype="html"> |
793 | <source>Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</source> | 795 | <source>Transcoding jobs created for <x id="PH" equiv-text="video.name"/>.</source> |
794 | <target state="translated">Ð—Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ñтворено Ð´Ð»Ñ <x id="PH" equiv-text="video.name"/>.</target> | 796 | <target state="translated">Ð—Ð°Ð²Ð´Ð°Ð½Ð½Ñ Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ñтворено Ð´Ð»Ñ <x id="PH" equiv-text="video.name"/>.</target> |
795 | 797 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group> | |
796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit> | 798 | </trans-unit> |
797 | <trans-unit id="2949829240129672512" datatype="html"> | 799 | <trans-unit id="2949829240129672512" datatype="html"> |
798 | <source>Using a syndication feed</source> | 800 | <source>Using a syndication feed</source> |
799 | <target state="translated">За допомогою новинної Ñтрічки</target> | 801 | <target state="translated">За допомогою новинної Ñтрічки</target> |
@@ -883,11 +885,11 @@ | |||
883 | <trans-unit id="2602586221576511475"> | 885 | <trans-unit id="2602586221576511475"> |
884 | <source>Video quota</source> | 886 | <source>Video quota</source> |
885 | <target>Квота відео</target> | 887 | <target>Квота відео</target> |
886 | 888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
887 | 889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
888 | 890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
889 | 891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group> | |
890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 892 | </trans-unit> |
891 | <trans-unit id="1502595455339510144"> | 893 | <trans-unit id="1502595455339510144"> |
892 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 894 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
893 | <target state="translated">Без обмежень <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> на день)<x id="CLOSE_TAG_NG_CONTAINER"/></target> | 895 | <target state="translated">Без обмежень <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> на день)<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
@@ -929,8 +931,10 @@ | |||
929 | <source>Loading instance statistics...</source> | 931 | <source>Loading instance statistics...</source> |
930 | <target state="translated">Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ ÑтатиÑтики Ñервера...</target> | 932 | <target state="translated">Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ ÑтатиÑтики Ñервера...</target> |
931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> | 933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> |
932 | </trans-unit><trans-unit id="5851173629316588976" datatype="html"> | 934 | </trans-unit> |
933 | <source>By users on this instance</source><target state="new">By users on this instance</target> | 935 | <trans-unit id="5851173629316588976" datatype="html"> |
936 | <source>By users on this instance</source> | ||
937 | <target state="new">By users on this instance</target> | ||
934 | <context-group purpose="location"> | 938 | <context-group purpose="location"> |
935 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 939 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
936 | <context context-type="linenumber">4</context> | 940 | <context context-type="linenumber">4</context> |
@@ -939,9 +943,8 @@ | |||
939 | <trans-unit id="2906587845957718064" datatype="html"> | 943 | <trans-unit id="2906587845957718064" datatype="html"> |
940 | <source>Local</source> | 944 | <source>Local</source> |
941 | <target state="translated">Локальний</target> | 945 | <target state="translated">Локальний</target> |
942 | 946 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group> | |
943 | 947 | </trans-unit> | |
944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | ||
945 | <trans-unit id="1670306451865226564" datatype="html"> | 948 | <trans-unit id="1670306451865226564" datatype="html"> |
946 | <source>users</source> | 949 | <source>users</source> |
947 | <target state="translated">кориÑтувачі</target> | 950 | <target state="translated">кориÑтувачі</target> |
@@ -952,14 +955,18 @@ | |||
952 | <target state="translated">відео</target> | 955 | <target state="translated">відео</target> |
953 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> | 956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> |
954 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> | 957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> |
955 | </trans-unit><trans-unit id="1408045022812097780" datatype="html"> | 958 | </trans-unit> |
956 | <source>views</source><target state="new">views</target> | 959 | <trans-unit id="1408045022812097780" datatype="html"> |
960 | <source>views</source> | ||
961 | <target state="new">views</target> | ||
957 | <context-group purpose="location"> | 962 | <context-group purpose="location"> |
958 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 963 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
959 | <context context-type="linenumber">31</context> | 964 | <context context-type="linenumber">31</context> |
960 | </context-group> | 965 | </context-group> |
961 | </trans-unit><trans-unit id="117954017715534854" datatype="html"> | 966 | </trans-unit> |
962 | <source>comments</source><target state="new">comments</target> | 967 | <trans-unit id="117954017715534854" datatype="html"> |
968 | <source>comments</source> | ||
969 | <target state="new">comments</target> | ||
963 | <context-group purpose="location"> | 970 | <context-group purpose="location"> |
964 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 971 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
965 | <context context-type="linenumber">41</context> | 972 | <context context-type="linenumber">41</context> |
@@ -968,36 +975,37 @@ | |||
968 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 975 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
969 | <context context-type="linenumber">75</context> | 976 | <context context-type="linenumber">75</context> |
970 | </context-group> | 977 | </context-group> |
971 | </trans-unit><trans-unit id="6090561122481711127" datatype="html"> | 978 | </trans-unit> |
972 | <source>hosted video</source><target state="new">hosted video</target> | 979 | <trans-unit id="6090561122481711127" datatype="html"> |
980 | <source>hosted video</source> | ||
981 | <target state="new">hosted video</target> | ||
973 | <context-group purpose="location"> | 982 | <context-group purpose="location"> |
974 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 983 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
975 | <context context-type="linenumber">51</context> | 984 | <context context-type="linenumber">51</context> |
976 | </context-group> | 985 | </context-group> |
977 | </trans-unit><trans-unit id="6827125739942610231" datatype="html"> | 986 | </trans-unit> |
978 | <source>In this instance federation</source><target state="new">In this instance federation</target> | 987 | <trans-unit id="6827125739942610231" datatype="html"> |
988 | <source>In this instance federation</source> | ||
989 | <target state="new">In this instance federation</target> | ||
979 | <context-group purpose="location"> | 990 | <context-group purpose="location"> |
980 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> | 991 | <context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context> |
981 | <context context-type="linenumber">58</context> | 992 | <context context-type="linenumber">58</context> |
982 | </context-group> | 993 | </context-group> |
983 | </trans-unit> | 994 | </trans-unit> |
984 | |||
985 | |||
986 | |||
987 | <trans-unit id="8726138323871139597" datatype="html"> | 995 | <trans-unit id="8726138323871139597" datatype="html"> |
988 | <source>Following</source> | 996 | <source>Following</source> |
989 | <target state="translated">ПідпиÑки</target> | 997 | <target state="translated">ПідпиÑки</target> |
990 | 998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">75</context></context-group> | |
991 | 999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
992 | 1000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">26</context></context-group> | |
993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1001 | </trans-unit> |
994 | <trans-unit id="4914577418256256836" datatype="html"> | 1002 | <trans-unit id="4914577418256256836" datatype="html"> |
995 | <source>Followers</source> | 1003 | <source>Followers</source> |
996 | <target state="translated">ПідпиÑники</target> | 1004 | <target state="translated">ПідпиÑники</target> |
997 | 1005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">80</context></context-group> | |
998 | 1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group> | |
999 | 1007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">72</context></context-group> | |
1000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1008 | </trans-unit> |
1001 | <trans-unit id="3541687134897970106" datatype="html"> | 1009 | <trans-unit id="3541687134897970106" datatype="html"> |
1002 | <source>followers</source> | 1010 | <source>followers</source> |
1003 | <target state="translated">підпиÑники</target> | 1011 | <target state="translated">підпиÑники</target> |
@@ -1038,10 +1046,8 @@ | |||
1038 | <target> | 1046 | <target> |
1039 | Заблокований кориÑтувач більше не зможе входити в ÑиÑтему. | 1047 | Заблокований кориÑтувач більше не зможе входити в ÑиÑтему. |
1040 | </target> | 1048 | </target> |
1041 | 1049 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">9</context></context-group> | |
1042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 1050 | </trans-unit> |
1043 | |||
1044 | |||
1045 | <trans-unit id="4526499522377118108" datatype="html"> | 1051 | <trans-unit id="4526499522377118108" datatype="html"> |
1046 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 1052 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
1047 | <target state="translated">Заблокуват відео «<x id="INTERPOLATION"/>»</target> | 1053 | <target state="translated">Заблокуват відео «<x id="INTERPOLATION"/>»</target> |
@@ -1138,13 +1144,13 @@ | |||
1138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | 1144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
1139 | </trans-unit> | 1145 | </trans-unit> |
1140 | <trans-unit id="7252854992688790751" datatype="html"> | 1146 | <trans-unit id="7252854992688790751" datatype="html"> |
1141 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1147 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1142 | <target state="translated">Цей Ñервер дозволÑÑ” реєÑтрацію. Однак будьте обережні, перевірте <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Умови<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Умови<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> перед ÑтвореннÑм облікового запиÑу. Ви також можете знайти інший Ñервер, Ñкий точно задовольнÑÑ” ваш потреби, на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1148 | <target state="translated">Цей Ñервер дозволÑÑ” реєÑтрацію. Однак будьте обережні, перевірте <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Умови<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Умови<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> перед ÑтвореннÑм облікового запиÑу. Ви також можете знайти інший Ñервер, Ñкий точно задовольнÑÑ” ваш потреби, на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | 1149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> |
1144 | </trans-unit> | 1150 | </trans-unit> |
1145 | <trans-unit id="7215649348148521605" datatype="html"> | 1151 | <trans-unit id="7215649348148521605" datatype="html"> |
1146 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 1152 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
1147 | <target state="translated">Ðаразі цей Ñервер не дозволÑÑ” реєÑтрацію кориÑтувачів, перевірте <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Умови<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> Ð´Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¾Ñ— інформації, або знайдіть екземплÑÑ€ Ñкий даÑÑ‚ÑŒ вам змогу зареєÑтрувати обліковий Ð·Ð°Ð¿Ð¸Ñ Ñ‚Ð° вивантажувати Ñвої відео. Знайдіть Ñвій Ñеред багатьох Ñерверів на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1153 | <target state="translated">Ðаразі цей Ñервер не дозволÑÑ” реєÑтрацію кориÑтувачів, перевірте <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Умови<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> Ð´Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¾Ñ— інформації, або знайдіть екземплÑÑ€ Ñкий даÑÑ‚ÑŒ вам змогу зареєÑтрувати обліковий Ð·Ð°Ð¿Ð¸Ñ Ñ‚Ð° вивантажувати Ñвої відео. Знайдіть Ñвій Ñеред багатьох Ñерверів на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
1148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | 1154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> |
1149 | </trans-unit> | 1155 | </trans-unit> |
1150 | <trans-unit id="2392488717875840729"> | 1156 | <trans-unit id="2392488717875840729"> |
@@ -1212,23 +1218,22 @@ | |||
1212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> | 1218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group> |
1213 | </trans-unit> | 1219 | </trans-unit> |
1214 | <trans-unit id="1190256911880544559" datatype="html"> | 1220 | <trans-unit id="1190256911880544559" datatype="html"> |
1215 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1221 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. The link will expire within 1 hour.</source> |
1216 | The link will expire within 1 hour.</source> | ||
1217 | <target state="translated">ЛиÑÑ‚ з наÑтановами щодо ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð±ÑƒÐ´Ðµ надіÑлано на <x id="PH" equiv-text="this.forgotPasswordEmail"/>. ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð±ÑƒÐ´Ðµ дійÑне впродовж 1 години.</target> | 1222 | <target state="translated">ЛиÑÑ‚ з наÑтановами щодо ÑÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð±ÑƒÐ´Ðµ надіÑлано на <x id="PH" equiv-text="this.forgotPasswordEmail"/>. ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð±ÑƒÐ´Ðµ дійÑне впродовж 1 години.</target> |
1218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> | 1223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group> |
1219 | </trans-unit> | 1224 | </trans-unit> |
1220 | <trans-unit id="4768749765465246664" datatype="html"> | 1225 | <trans-unit id="4768749765465246664" datatype="html"> |
1221 | <source>Email</source> | 1226 | <source>Email</source> |
1222 | <target state="translated">Email</target> | 1227 | <target state="translated">Email</target> |
1223 | 1228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1224 | 1229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1225 | 1230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
1226 | 1231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group> | |
1227 | 1232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group> | |
1228 | 1233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group> | |
1229 | 1234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group> | |
1230 | 1235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group> | |
1231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1236 | </trans-unit> |
1232 | <trans-unit id="3967269098753656610" datatype="html"> | 1237 | <trans-unit id="3967269098753656610" datatype="html"> |
1233 | <source>Email address</source> | 1238 | <source>Email address</source> |
1234 | <target state="translated">ÐдреÑа електронної пошти</target> | 1239 | <target state="translated">ÐдреÑа електронної пошти</target> |
@@ -1252,8 +1257,8 @@ The link will expire within 1 hour.</source> | |||
1252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | 1257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> |
1253 | </trans-unit> | 1258 | </trans-unit> |
1254 | <trans-unit id="8434369348784683733" datatype="html"> | 1259 | <trans-unit id="8434369348784683733" datatype="html"> |
1255 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 1260 | <source>for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
1256 | <target state="translated">Ð´Ð»Ñ <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 1261 | <target state="translated">Ð´Ð»Ñ <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="search-value">"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
1257 | <context-group purpose="location"> | 1262 | <context-group purpose="location"> |
1258 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1263 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1259 | <context context-type="linenumber">10</context> | 1264 | <context context-type="linenumber">10</context> |
@@ -1595,8 +1600,8 @@ The link will expire within 1 hour.</source> | |||
1595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> | 1600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group> |
1596 | </trans-unit> | 1601 | </trans-unit> |
1597 | <trans-unit id="2095604754338363597" datatype="html"> | 1602 | <trans-unit id="2095604754338363597" datatype="html"> |
1598 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> | 1603 | <source>âš ï¸ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to prevent private URL access from your PeerTube server</source> |
1599 | <target state="translated">âš ï¸ Ð¯ÐºÑ‰Ð¾ увімкнено, радимо викориÑтовувати <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>HTTP-прокÑÑ–,<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> щоб запобігти доÑтупу до приватної URL-адреÑи з вашого Ñервера PeerTube</target> | 1604 | <target state="translated">âš ï¸ Ð¯ÐºÑ‰Ð¾ увімкнено, радимо викориÑтовувати <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/maintain-configuration?id=security">"/>HTTP-прокÑÑ–,<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> щоб запобігти доÑтупу до приватної URL-адреÑи з вашого Ñервера PeerTube</target> |
1600 | <context-group purpose="location"> | 1605 | <context-group purpose="location"> |
1601 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 1606 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
1602 | <context context-type="linenumber">272</context> | 1607 | <context context-type="linenumber">272</context> |
@@ -1660,18 +1665,18 @@ The link will expire within 1 hour.</source> | |||
1660 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> | 1665 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> |
1661 | </trans-unit> | 1666 | </trans-unit> |
1662 | <trans-unit id="7239874680342223476" datatype="html"> | 1667 | <trans-unit id="7239874680342223476" datatype="html"> |
1663 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> | 1668 | <source>Help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> by:</source> |
1664 | <target state="translated">Допоможіть модераторам та іншим кориÑтувачам дізнатиÑÑ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>хто ви<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> від:</target> | 1669 | <target state="translated">Допоможіть модераторам та іншим кориÑтувачам дізнатиÑÑ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>хто ви<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> від:</target> |
1665 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> | 1670 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">12</context></context-group> |
1666 | </trans-unit> | 1671 | </trans-unit> |
1667 | <trans-unit id="5856432243446401016" datatype="html"> | 1672 | <trans-unit id="5856432243446401016" datatype="html"> |
1668 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 1673 | <source>Uploading an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
1669 | <target state="translated">Ð’Ð¸Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>аватара<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1674 | <target state="translated">Ð’Ð¸Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>аватара<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1670 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> | 1675 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">15</context></context-group> |
1671 | </trans-unit> | 1676 | </trans-unit> |
1672 | <trans-unit id="3221645359464920754" datatype="html"> | 1677 | <trans-unit id="3221645359464920754" datatype="html"> |
1673 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 1678 | <source>Writing a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
1674 | <target state="translated">Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>опиÑу<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1679 | <target state="translated">Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>опиÑу<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1675 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | 1680 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> |
1676 | </trans-unit> | 1681 | </trans-unit> |
1677 | <trans-unit id="2218100934178971211" datatype="html"> | 1682 | <trans-unit id="2218100934178971211" datatype="html"> |
@@ -2023,20 +2028,26 @@ The link will expire within 1 hour.</source> | |||
2023 | <source>Add this caption</source> | 2028 | <source>Add this caption</source> |
2024 | <target state="translated">Додати цей підпиÑ</target> | 2029 | <target state="translated">Додати цей підпиÑ</target> |
2025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> | 2030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> |
2026 | </trans-unit><trans-unit id="480001148850006323" datatype="html"> | 2031 | </trans-unit> |
2027 | <source>Edit caption</source><target state="new">Edit caption</target> | 2032 | <trans-unit id="480001148850006323" datatype="html"> |
2033 | <source>Edit caption</source> | ||
2034 | <target state="new">Edit caption</target> | ||
2028 | <context-group purpose="location"> | 2035 | <context-group purpose="location"> |
2029 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2036 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2030 | <context context-type="linenumber">5</context> | 2037 | <context context-type="linenumber">5</context> |
2031 | </context-group> | 2038 | </context-group> |
2032 | </trans-unit><trans-unit id="6838559377527923778" datatype="html"> | 2039 | </trans-unit> |
2033 | <source>Caption</source><target state="new">Caption</target> | 2040 | <trans-unit id="6838559377527923778" datatype="html"> |
2041 | <source>Caption</source> | ||
2042 | <target state="new">Caption</target> | ||
2034 | <context-group purpose="location"> | 2043 | <context-group purpose="location"> |
2035 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2044 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2036 | <context context-type="linenumber">10</context> | 2045 | <context context-type="linenumber">10</context> |
2037 | </context-group> | 2046 | </context-group> |
2038 | </trans-unit><trans-unit id="1989971680596153649" datatype="html"> | 2047 | </trans-unit> |
2039 | <source>Edit this caption</source><target state="new">Edit this caption</target> | 2048 | <trans-unit id="1989971680596153649" datatype="html"> |
2049 | <source>Edit this caption</source> | ||
2050 | <target state="new">Edit this caption</target> | ||
2040 | <context-group purpose="location"> | 2051 | <context-group purpose="location"> |
2041 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> | 2052 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context> |
2042 | <context context-type="linenumber">31</context> | 2053 | <context context-type="linenumber">31</context> |
@@ -2106,8 +2117,8 @@ The link will expire within 1 hour.</source> | |||
2106 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> | 2117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group> |
2107 | </trans-unit> | 2118 | </trans-unit> |
2108 | <trans-unit id="1358902062258458923" datatype="html"> | 2119 | <trans-unit id="1358902062258458923" datatype="html"> |
2109 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> | 2120 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source> |
2110 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>СуміÑніÑÑ‚ÑŒ із Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> також підтримує <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>влаÑні HTML-теґи PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2121 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferer noopener">"/>СуміÑніÑÑ‚ÑŒ із Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> також підтримує <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>влаÑні HTML-теґи PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
2111 | <context-group purpose="location"> | 2122 | <context-group purpose="location"> |
2112 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> | 2123 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> |
2113 | <context context-type="linenumber">2</context> | 2124 | <context context-type="linenumber">2</context> |
@@ -2153,12 +2164,12 @@ The link will expire within 1 hour.</source> | |||
2153 | <trans-unit id="1460134385691851101" datatype="html"> | 2164 | <trans-unit id="1460134385691851101" datatype="html"> |
2154 | <source>Advanced filters</source> | 2165 | <source>Advanced filters</source> |
2155 | <target state="translated">Розширені фільтри</target> | 2166 | <target state="translated">Розширені фільтри</target> |
2156 | 2167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group> | |
2157 | 2168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group> | |
2158 | 2169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">41</context></context-group> | |
2159 | 2170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group> | |
2160 | 2171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group> | |
2161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 2172 | </trans-unit> |
2162 | <trans-unit id="2504502765849142619" datatype="html"> | 2173 | <trans-unit id="2504502765849142619" datatype="html"> |
2163 | <source>No items found</source> | 2174 | <source>No items found</source> |
2164 | <target state="translated">Елементів не знайдено</target> | 2175 | <target state="translated">Елементів не знайдено</target> |
@@ -2182,8 +2193,8 @@ The link will expire within 1 hour.</source> | |||
2182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> | 2193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group> |
2183 | </trans-unit> | 2194 | </trans-unit> |
2184 | <trans-unit id="2090254132451149776" datatype="html"> | 2195 | <trans-unit id="2090254132451149776" datatype="html"> |
2185 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> | 2196 | <source><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> the appropriate licence for your work. </source> |
2186 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Оберіть<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> відповідну ліцензію Ð´Ð»Ñ Ñвоєї роботи. </target> | 2197 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Оберіть<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> відповідну ліцензію Ð´Ð»Ñ Ñвоєї роботи. </target> |
2187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> | 2198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group> |
2188 | </trans-unit> | 2199 | </trans-unit> |
2189 | <trans-unit id="5462361983940693567" datatype="html"> | 2200 | <trans-unit id="5462361983940693567" datatype="html"> |
@@ -2259,27 +2270,31 @@ The link will expire within 1 hour.</source> | |||
2259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> | 2270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group> |
2260 | </trans-unit> | 2271 | </trans-unit> |
2261 | <trans-unit id="5600963353867835532" datatype="html"> | 2272 | <trans-unit id="5600963353867835532" datatype="html"> |
2262 | <source>Already uploaded ✔</source> | 2273 | <source>Already uploaded ✔</source> |
2263 | <target state="translated">Вже вивантажено ✔</target> | 2274 | <target state="translated">Вже вивантажено ✔</target> |
2264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> | 2275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group> |
2265 | </trans-unit> | 2276 | </trans-unit> |
2266 | <trans-unit id="73284819990858102" datatype="html"> | 2277 | <trans-unit id="73284819990858102" datatype="html"> |
2267 | <source>Will be created on update</source> | 2278 | <source>Will be created on update</source> |
2268 | <target state="translated">Буде Ñтворено піÑÐ»Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ</target> | 2279 | <target state="translated">Буде Ñтворено піÑÐ»Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ</target> |
2269 | 2280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">196</context></context-group> | |
2270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">196</context></context-group></trans-unit> | 2281 | </trans-unit> |
2271 | <trans-unit id="7044449271109607418" datatype="html"> | 2282 | <trans-unit id="7044449271109607418" datatype="html"> |
2272 | <source>Cancel create</source> | 2283 | <source>Cancel create</source> |
2273 | <target state="translated">СкаÑувати ÑтвореннÑ</target> | 2284 | <target state="translated">СкаÑувати ÑтвореннÑ</target> |
2274 | 2285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">198</context></context-group> | |
2275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit><trans-unit id="8541869921865486762" datatype="html"> | 2286 | </trans-unit> |
2276 | <source>Will be edited on update</source><target state="new">Will be edited on update</target> | 2287 | <trans-unit id="8541869921865486762" datatype="html"> |
2288 | <source>Will be edited on update</source> | ||
2289 | <target state="new">Will be edited on update</target> | ||
2277 | <context-group purpose="location"> | 2290 | <context-group purpose="location"> |
2278 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2291 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2279 | <context context-type="linenumber">204</context> | 2292 | <context context-type="linenumber">204</context> |
2280 | </context-group> | 2293 | </context-group> |
2281 | </trans-unit><trans-unit id="4013233634947488312" datatype="html"> | 2294 | </trans-unit> |
2282 | <source>Cancel edition</source><target state="new">Cancel edition</target> | 2295 | <trans-unit id="4013233634947488312" datatype="html"> |
2296 | <source>Cancel edition</source> | ||
2297 | <target state="new">Cancel edition</target> | ||
2283 | <context-group purpose="location"> | 2298 | <context-group purpose="location"> |
2284 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2299 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2285 | <context context-type="linenumber">206</context> | 2300 | <context context-type="linenumber">206</context> |
@@ -2288,44 +2303,44 @@ The link will expire within 1 hour.</source> | |||
2288 | <trans-unit id="7879454016898626211" datatype="html"> | 2303 | <trans-unit id="7879454016898626211" datatype="html"> |
2289 | <source>Will be deleted on update</source> | 2304 | <source>Will be deleted on update</source> |
2290 | <target state="translated">Буде видалено піÑÐ»Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ</target> | 2305 | <target state="translated">Буде видалено піÑÐ»Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ</target> |
2291 | 2306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">212</context></context-group> | |
2292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> | 2307 | </trans-unit> |
2293 | <trans-unit id="305832955565133216" datatype="html"> | 2308 | <trans-unit id="305832955565133216" datatype="html"> |
2294 | <source>Cancel deletion</source> | 2309 | <source>Cancel deletion</source> |
2295 | <target state="translated">СкаÑувати видаленнÑ</target> | 2310 | <target state="translated">СкаÑувати видаленнÑ</target> |
2296 | 2311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">214</context></context-group> | |
2297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">214</context></context-group></trans-unit> | 2312 | </trans-unit> |
2298 | <trans-unit id="360396717319152766" datatype="html"> | 2313 | <trans-unit id="360396717319152766" datatype="html"> |
2299 | <source>No captions for now.</source> | 2314 | <source>No captions for now.</source> |
2300 | <target state="translated">ПідпиÑів поки немає.</target> | 2315 | <target state="translated">ПідпиÑів поки немає.</target> |
2301 | 2316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
2302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> | 2317 | </trans-unit> |
2303 | <trans-unit id="8508836953540308271" datatype="html"> | 2318 | <trans-unit id="8508836953540308271" datatype="html"> |
2304 | <source>Live settings</source> | 2319 | <source>Live settings</source> |
2305 | <target state="translated">ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ñ€Ð°Ð½ÑлÑції</target> | 2320 | <target state="translated">ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ñ€Ð°Ð½ÑлÑції</target> |
2306 | 2321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">235</context></context-group> | |
2307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">235</context></context-group></trans-unit> | 2322 | </trans-unit> |
2308 | <trans-unit id="1212376766715456139" datatype="html"> | 2323 | <trans-unit id="1212376766715456139" datatype="html"> |
2309 | <source>âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</source> | 2324 | <source>âš ï¸ If you enable this option, your live will be terminated if you exceed your video quota</source> |
2310 | <target state="translated">âš ï¸ Ð¯ÐºÑ‰Ð¾ ви увімкнете цю опцію, ваша транÑлÑÑ†Ñ–Ñ Ð±ÑƒÐ´Ðµ припинена піÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ñ‰ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ÐµÐ¾ квоти</target> | 2325 | <target state="translated">âš ï¸ Ð¯ÐºÑ‰Ð¾ ви увімкнете цю опцію, ваша транÑлÑÑ†Ñ–Ñ Ð±ÑƒÐ´Ðµ припинена піÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ñ‰ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ÐµÐ¾ квоти</target> |
2311 | 2326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">288</context></context-group> | |
2312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">288</context></context-group></trans-unit> | 2327 | </trans-unit> |
2313 | <trans-unit id="8891497955962997247" datatype="html"> | 2328 | <trans-unit id="8891497955962997247" datatype="html"> |
2314 | <source>Automatically publish a replay when your live ends</source> | 2329 | <source>Automatically publish a replay when your live ends</source> |
2315 | <target state="translated">Ðвтоматично публікувати повтор піÑÐ»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñ‚Ñ€Ð°Ð½ÑлÑції</target> | 2330 | <target state="translated">Ðвтоматично публікувати повтор піÑÐ»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ñ‚Ñ€Ð°Ð½ÑлÑції</target> |
2316 | 2331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group> | |
2317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group></trans-unit> | 2332 | </trans-unit> |
2318 | <trans-unit id="1168086599577356916" datatype="html"> | 2333 | <trans-unit id="1168086599577356916" datatype="html"> |
2319 | <source>Video preview</source> | 2334 | <source>Video preview</source> |
2320 | <target state="translated">Попередній переглÑд відео</target> | 2335 | <target state="translated">Попередній переглÑд відео</target> |
2321 | 2336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">307</context></context-group> | |
2322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">307</context></context-group></trans-unit> | 2337 | </trans-unit> |
2323 | <trans-unit id="2288513108450439427" datatype="html"> | 2338 | <trans-unit id="2288513108450439427" datatype="html"> |
2324 | <source>Support</source> | 2339 | <source>Support</source> |
2325 | <target state="translated">Підтримка</target> | 2340 | <target state="translated">Підтримка</target> |
2326 | 2341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group> | |
2327 | 2342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">316</context></context-group> | |
2328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">316</context></context-group></trans-unit> | 2343 | </trans-unit> |
2329 | <trans-unit id="1359533927353954373" datatype="html"> | 2344 | <trans-unit id="1359533927353954373" datatype="html"> |
2330 | <source>View account</source> | 2345 | <source>View account</source> |
2331 | <target state="translated">ПереглÑнути обліковий запиÑ</target> | 2346 | <target state="translated">ПереглÑнути обліковий запиÑ</target> |
@@ -2359,44 +2374,44 @@ The link will expire within 1 hour.</source> | |||
2359 | <trans-unit id="1952020204339597057" datatype="html"> | 2374 | <trans-unit id="1952020204339597057" datatype="html"> |
2360 | <source>Short text to tell people how they can support you (membership platform...).</source> | 2375 | <source>Short text to tell people how they can support you (membership platform...).</source> |
2361 | <target state="translated">Короткий текÑÑ‚, щоб розповіÑти людÑм, Ñк вони можуть Ð²Ð°Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ (платформа учаÑÑ‚Ñ–...).</target> | 2376 | <target state="translated">Короткий текÑÑ‚, щоб розповіÑти людÑм, Ñк вони можуть Ð²Ð°Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ (платформа учаÑÑ‚Ñ–...).</target> |
2362 | 2377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">319</context></context-group> | |
2363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">319</context></context-group></trans-unit> | 2378 | </trans-unit> |
2364 | <trans-unit id="7958716262877895706" datatype="html"> | 2379 | <trans-unit id="7958716262877895706" datatype="html"> |
2365 | <source>Original publication date</source> | 2380 | <source>Original publication date</source> |
2366 | <target state="translated">Дата публікації</target> | 2381 | <target state="translated">Дата публікації</target> |
2367 | 2382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">336</context></context-group> | |
2368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">336</context></context-group></trans-unit> | 2383 | </trans-unit> |
2369 | <trans-unit id="50985514722149155" datatype="html"> | 2384 | <trans-unit id="50985514722149155" datatype="html"> |
2370 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> | 2385 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> |
2371 | <target state="translated">Дата першої публікації вміÑту (наприклад, дата виходу фільму)</target> | 2386 | <target state="translated">Дата першої публікації вміÑту (наприклад, дата виходу фільму)</target> |
2372 | 2387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">339</context></context-group> | |
2373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">339</context></context-group></trans-unit> | 2388 | </trans-unit> |
2374 | <trans-unit id="1669378369440073270" datatype="html"> | 2389 | <trans-unit id="1669378369440073270" datatype="html"> |
2375 | <source>Plugin settings</source> | 2390 | <source>Plugin settings</source> |
2376 | <target state="translated">ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð»Ð°Ð³Ñ–Ð½Ñ–Ð²</target> | 2391 | <target state="translated">ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð»Ð°Ð³Ñ–Ð½Ñ–Ð²</target> |
2377 | 2392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">370</context></context-group> | |
2378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">370</context></context-group></trans-unit> | 2393 | </trans-unit> |
2379 | <trans-unit id="8693603235657020323" datatype="html"> | 2394 | <trans-unit id="8693603235657020323" datatype="html"> |
2380 | <source>Other</source> | 2395 | <source>Other</source> |
2381 | <target state="translated">Інше</target> | 2396 | <target state="translated">Інше</target> |
2382 | 2397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">190</context></context-group> | |
2383 | 2398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group> | |
2384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">190</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 2399 | </trans-unit> |
2385 | <trans-unit id="2200003513633568069" datatype="html"> | 2400 | <trans-unit id="2200003513633568069" datatype="html"> |
2386 | <source>Enable video comments</source> | 2401 | <source>Enable video comments</source> |
2387 | <target state="translated">Увімкнути коментарі до відео</target> | 2402 | <target state="translated">Увімкнути коментарі до відео</target> |
2388 | 2403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">357</context></context-group> | |
2389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">357</context></context-group></trans-unit> | 2404 | </trans-unit> |
2390 | <trans-unit id="8896564060463626070" datatype="html"> | 2405 | <trans-unit id="8896564060463626070" datatype="html"> |
2391 | <source>Enable download</source> | 2406 | <source>Enable download</source> |
2392 | <target state="translated">Дозволити завантаженнÑ</target> | 2407 | <target state="translated">Дозволити завантаженнÑ</target> |
2393 | 2408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">362</context></context-group> | |
2394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">362</context></context-group></trans-unit> | 2409 | </trans-unit> |
2395 | <trans-unit id="8821221480638803282" datatype="html"> | 2410 | <trans-unit id="8821221480638803282" datatype="html"> |
2396 | <source>Advanced settings</source> | 2411 | <source>Advanced settings</source> |
2397 | <target state="translated">Розширені налаштуваннÑ</target> | 2412 | <target state="translated">Розширені налаштуваннÑ</target> |
2398 | 2413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group> | |
2399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit> | 2414 | </trans-unit> |
2400 | <trans-unit id="2375260419993138758" datatype="html"> | 2415 | <trans-unit id="2375260419993138758" datatype="html"> |
2401 | <source>URL</source> | 2416 | <source>URL</source> |
2402 | <target state="translated">URL-адреÑа</target> | 2417 | <target state="translated">URL-адреÑа</target> |
@@ -2431,13 +2446,13 @@ The link will expire within 1 hour.</source> | |||
2431 | <trans-unit id="9172233176401579786" datatype="html"> | 2446 | <trans-unit id="9172233176401579786" datatype="html"> |
2432 | <source>Scheduled</source> | 2447 | <source>Scheduled</source> |
2433 | <target state="translated">Заплановано</target> | 2448 | <target state="translated">Заплановано</target> |
2434 | 2449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">209</context></context-group> | |
2435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">209</context></context-group></trans-unit> | 2450 | </trans-unit> |
2436 | <trans-unit id="1435317307066082710" datatype="html"> | 2451 | <trans-unit id="1435317307066082710" datatype="html"> |
2437 | <source>Hide the video until a specific date</source> | 2452 | <source>Hide the video until a specific date</source> |
2438 | <target state="translated">Сховати відео до певної дати</target> | 2453 | <target state="translated">Сховати відео до певної дати</target> |
2439 | 2454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">210</context></context-group> | |
2440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 2455 | </trans-unit> |
2441 | <trans-unit id="1087181129481039628" datatype="html"> | 2456 | <trans-unit id="1087181129481039628" datatype="html"> |
2442 | <source>Normal live</source> | 2457 | <source>Normal live</source> |
2443 | <target state="translated">Звичайні транÑлÑції</target> | 2458 | <target state="translated">Звичайні транÑлÑції</target> |
@@ -2483,9 +2498,9 @@ The link will expire within 1 hour.</source> | |||
2483 | <trans-unit id="2127094963121208963" datatype="html"> | 2498 | <trans-unit id="2127094963121208963" datatype="html"> |
2484 | <source>Total video quota</source> | 2499 | <source>Total video quota</source> |
2485 | <target state="translated">Загальна квота відео</target> | 2500 | <target state="translated">Загальна квота відео</target> |
2486 | 2501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">131</context></context-group> | |
2487 | 2502 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group> | |
2488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">131</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2503 | </trans-unit> |
2489 | <trans-unit id="1522676094837508187" datatype="html"> | 2504 | <trans-unit id="1522676094837508187" datatype="html"> |
2490 | <source>Congratulations! Your video is now available in your private library.</source> | 2505 | <source>Congratulations! Your video is now available in your private library.</source> |
2491 | <target state="translated">Вітаємо! Ваше відео тепер доÑтупне у вашій приватній бібліотеці.</target> | 2506 | <target state="translated">Вітаємо! Ваше відео тепер доÑтупне у вашій приватній бібліотеці.</target> |
@@ -2785,9 +2800,10 @@ The link will expire within 1 hour.</source> | |||
2785 | <trans-unit id="3959826834147169200" datatype="html"> | 2800 | <trans-unit id="3959826834147169200" datatype="html"> |
2786 | <source>Muted</source> | 2801 | <source>Muted</source> |
2787 | <target state="translated">Вимкнено</target> | 2802 | <target state="translated">Вимкнено</target> |
2788 | 2803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">104</context></context-group> | |
2789 | 2804 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group> | |
2790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group> |
2806 | </trans-unit> | ||
2791 | <trans-unit id="2784956659778044823" datatype="html"> | 2807 | <trans-unit id="2784956659778044823" datatype="html"> |
2792 | <source>Loop</source> | 2808 | <source>Loop</source> |
2793 | <target state="translated">Повторювати</target> | 2809 | <target state="translated">Повторювати</target> |
@@ -2834,13 +2850,13 @@ The link will expire within 1 hour.</source> | |||
2834 | <trans-unit id="4416005356063364306" datatype="html"> | 2850 | <trans-unit id="4416005356063364306" datatype="html"> |
2835 | <source>This video is blocked.</source> | 2851 | <source>This video is blocked.</source> |
2836 | <target state="translated">Це відео заблоковано.</target> | 2852 | <target state="translated">Це відео заблоковано.</target> |
2837 | 2853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">38</context></context-group> | |
2838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 2854 | </trans-unit> |
2839 | <trans-unit id="2482137713226830428" datatype="html"> | 2855 | <trans-unit id="2482137713226830428" datatype="html"> |
2840 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2856 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2841 | <target state="translated">Опубліковано <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2857 | <target state="translated">Опубліковано <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2842 | 2858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group> | |
2843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 2859 | </trans-unit> |
2844 | <trans-unit id="1813238393038053050" datatype="html"> | 2860 | <trans-unit id="1813238393038053050" datatype="html"> |
2845 | <source>SUPPORT</source> | 2861 | <source>SUPPORT</source> |
2846 | <target state="translated">ПІДТРИМКÐ</target> | 2862 | <target state="translated">ПІДТРИМКÐ</target> |
@@ -2874,13 +2890,13 @@ The link will expire within 1 hour.</source> | |||
2874 | <trans-unit id="4001371302469308813" datatype="html"> | 2890 | <trans-unit id="4001371302469308813" datatype="html"> |
2875 | <source>Support options for this video</source> | 2891 | <source>Support options for this video</source> |
2876 | <target state="translated">Опції підтримки цього відео</target> | 2892 | <target state="translated">Опції підтримки цього відео</target> |
2877 | 2893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">57</context></context-group> | |
2878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 2894 | </trans-unit> |
2879 | <trans-unit id="687548610091961489" datatype="html"> | 2895 | <trans-unit id="687548610091961489" datatype="html"> |
2880 | <source>By <x id="INTERPOLATION"/></source> | 2896 | <source>By <x id="INTERPOLATION"/></source> |
2881 | <target state="translated">Від <x id="INTERPOLATION"/></target> | 2897 | <target state="translated">Від <x id="INTERPOLATION"/></target> |
2882 | 2898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group> | |
2883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 2899 | </trans-unit> |
2884 | <trans-unit id="1144407473317535723" datatype="html"> | 2900 | <trans-unit id="1144407473317535723" datatype="html"> |
2885 | <source>Subscribe</source> | 2901 | <source>Subscribe</source> |
2886 | <target state="translated">ПідпиÑатиÑÑŒ</target> | 2902 | <target state="translated">ПідпиÑатиÑÑŒ</target> |
@@ -2952,9 +2968,9 @@ The link will expire within 1 hour.</source> | |||
2952 | <trans-unit id="1465291804668949243" datatype="html"> | 2968 | <trans-unit id="1465291804668949243" datatype="html"> |
2953 | <source>NSFW</source> | 2969 | <source>NSFW</source> |
2954 | <target state="translated">NSFW</target> | 2970 | <target state="translated">NSFW</target> |
2955 | 2971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
2956 | 2972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">75</context></context-group> | |
2957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 2973 | </trans-unit> |
2958 | <trans-unit id="4512155674928869984" datatype="html"> | 2974 | <trans-unit id="4512155674928869984" datatype="html"> |
2959 | <source>Get more information</source> | 2975 | <source>Get more information</source> |
2960 | <target state="translated">Докладніше</target> | 2976 | <target state="translated">Докладніше</target> |
@@ -2990,9 +3006,10 @@ The link will expire within 1 hour.</source> | |||
2990 | <source>The video is being transcoded, it may not work properly.</source> | 3006 | <source>The video is being transcoded, it may not work properly.</source> |
2991 | <target state="translated">Відео перекодовано, воно може не працювати належним чином.</target> | 3007 | <target state="translated">Відео перекодовано, воно може не працювати належним чином.</target> |
2992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group> | 3008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group> |
2993 | </trans-unit><trans-unit id="1353168089968436742" datatype="html"> | 3009 | </trans-unit> |
2994 | <source> The video is being edited, it may not work properly. | 3010 | <trans-unit id="1353168089968436742" datatype="html"> |
2995 | </source><target state="new"> The video is being edited, it may not work properly. | 3011 | <source>The video is being edited, it may not work properly.</source> |
3012 | <target state="new"> The video is being edited, it may not work properly. | ||
2996 | </target> | 3013 | </target> |
2997 | <context-group purpose="location"> | 3014 | <context-group purpose="location"> |
2998 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3015 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
@@ -3002,23 +3019,23 @@ The link will expire within 1 hour.</source> | |||
3002 | <trans-unit id="9080034597841586171" datatype="html"> | 3019 | <trans-unit id="9080034597841586171" datatype="html"> |
3003 | <source>The video is being moved to an external server, it may not work properly.</source> | 3020 | <source>The video is being moved to an external server, it may not work properly.</source> |
3004 | <target state="translated">Відео переміщено на зовнішній Ñервер, воно може не працювати належним чином.</target> | 3021 | <target state="translated">Відео переміщено на зовнішній Ñервер, воно може не працювати належним чином.</target> |
3005 | 3022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group> | |
3006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3023 | </trans-unit> |
3007 | <trans-unit id="8619499607322327082" datatype="html"> | 3024 | <trans-unit id="8619499607322327082" datatype="html"> |
3008 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> | 3025 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
3009 | <target state="translated">Це відео оприлюднено <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </target> | 3026 | <target state="translated">Це відео оприлюднено <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </target> |
3010 | 3027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group> | |
3011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 3028 | </trans-unit> |
3012 | <trans-unit id="4262297989675590582" datatype="html"> | 3029 | <trans-unit id="4262297989675590582" datatype="html"> |
3013 | <source>This live has not started yet.</source> | 3030 | <source>This live has not started yet.</source> |
3014 | <target state="translated">Цю транÑлÑцію ще не розпочато.</target> | 3031 | <target state="translated">Цю транÑлÑцію ще не розпочато.</target> |
3015 | 3032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group> | |
3016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3033 | </trans-unit> |
3017 | <trans-unit id="4926204350710628499" datatype="html"> | 3034 | <trans-unit id="4926204350710628499" datatype="html"> |
3018 | <source>This live has ended.</source> | 3035 | <source>This live has ended.</source> |
3019 | <target state="translated">Цю транÑлÑцію завершено.</target> | 3036 | <target state="translated">Цю транÑлÑцію завершено.</target> |
3020 | 3037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">33</context></context-group> | |
3021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3038 | </trans-unit> |
3022 | <trans-unit id="8518611938109939710" datatype="html"> | 3039 | <trans-unit id="8518611938109939710" datatype="html"> |
3023 | <source>SORT BY</source> | 3040 | <source>SORT BY</source> |
3024 | <target state="translated">СОРТУВÐТИ ЗÐ</target> | 3041 | <target state="translated">СОРТУВÐТИ ЗÐ</target> |
@@ -3175,8 +3192,8 @@ The link will expire within 1 hour.</source> | |||
3175 | <trans-unit id="9031514421077169181" datatype="html"> | 3192 | <trans-unit id="9031514421077169181" datatype="html"> |
3176 | <source>Video redundancies</source> | 3193 | <source>Video redundancies</source> |
3177 | <target state="new">Video redundancies</target> | 3194 | <target state="new">Video redundancies</target> |
3178 | 3195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">85</context></context-group> | |
3179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3196 | </trans-unit> |
3180 | <trans-unit id="3516494528184217808" datatype="html"> | 3197 | <trans-unit id="3516494528184217808" datatype="html"> |
3181 | <source>1 host (without "http://") per line</source> | 3198 | <source>1 host (without "http://") per line</source> |
3182 | <target state="translated">1 хоÑÑ‚ (без «http://») на Ñ€Ñдок</target> | 3199 | <target state="translated">1 хоÑÑ‚ (без «http://») на Ñ€Ñдок</target> |
@@ -3395,12 +3412,12 @@ The link will expire within 1 hour.</source> | |||
3395 | <trans-unit id="5248717555542428023" datatype="html"> | 3412 | <trans-unit id="5248717555542428023" datatype="html"> |
3396 | <source>Username</source> | 3413 | <source>Username</source> |
3397 | <target state="translated">Ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача</target> | 3414 | <target state="translated">Ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача</target> |
3398 | 3415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3399 | 3416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3400 | 3417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
3401 | 3418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group> | |
3402 | 3419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group> | |
3403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3420 | </trans-unit> |
3404 | <trans-unit id="5428411040014095392" datatype="html"> | 3421 | <trans-unit id="5428411040014095392" datatype="html"> |
3405 | <source>e.g. jane_doe</source> | 3422 | <source>e.g. jane_doe</source> |
3406 | <target state="translated">наприклад, jane_doe</target> | 3423 | <target state="translated">наприклад, jane_doe</target> |
@@ -3428,17 +3445,17 @@ The link will expire within 1 hour.</source> | |||
3428 | <trans-unit id="4145496584631696119" datatype="html"> | 3445 | <trans-unit id="4145496584631696119" datatype="html"> |
3429 | <source>Role</source> | 3446 | <source>Role</source> |
3430 | <target state="translated">Роль</target> | 3447 | <target state="translated">Роль</target> |
3431 | 3448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3432 | 3449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3433 | 3450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
3434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 3451 | </trans-unit> |
3435 | <trans-unit id="7046347992315328430" datatype="html"> | 3452 | <trans-unit id="7046347992315328430" datatype="html"> |
3436 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> | 3453 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> |
3437 | <target state="new"> | 3454 | <target state="new"> |
3438 | Transcoding is enabled. The video quota only takes into account | 3455 | Transcoding is enabled. The video quota only takes into account |
3439 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original | 3456 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original |
3440 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. | 3457 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. |
3441 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 3458 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
3442 | At most, this user could upload ~ | 3459 | At most, this user could upload ~ |
3443 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. | 3460 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. |
3444 | 3461 | ||
@@ -3456,10 +3473,10 @@ The link will expire within 1 hour.</source> | |||
3456 | <trans-unit id="2622255144026150901" datatype="html"> | 3473 | <trans-unit id="2622255144026150901" datatype="html"> |
3457 | <source>Auth plugin</source> | 3474 | <source>Auth plugin</source> |
3458 | <target state="translated">Плагін автентифікації</target> | 3475 | <target state="translated">Плагін автентифікації</target> |
3459 | 3476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3460 | 3477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3461 | 3478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">135</context></context-group> | |
3462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 3479 | </trans-unit> |
3463 | <trans-unit id="588099657508661970" datatype="html"> | 3480 | <trans-unit id="588099657508661970" datatype="html"> |
3464 | <source>None (local authentication)</source> | 3481 | <source>None (local authentication)</source> |
3465 | <target state="translated">Ðемає (локальна автентифікаціÑ)</target> | 3482 | <target state="translated">Ðемає (локальна автентифікаціÑ)</target> |
@@ -3508,25 +3525,25 @@ The link will expire within 1 hour.</source> | |||
3508 | <trans-unit id="7049348886126005391" datatype="html"> | 3525 | <trans-unit id="7049348886126005391" datatype="html"> |
3509 | <source>Batch actions</source> | 3526 | <source>Batch actions</source> |
3510 | <target state="new">Batch actions</target> | 3527 | <target state="new">Batch actions</target> |
3511 | 3528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> | |
3512 | 3529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group> | |
3513 | 3530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group> | |
3514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3531 | </trans-unit> |
3515 | <trans-unit id="675721269041534709" datatype="html"> | 3532 | <trans-unit id="675721269041534709" datatype="html"> |
3516 | <source>The user was banned</source> | 3533 | <source>The user was banned</source> |
3517 | <target state="translated">КориÑтувача було заблоковано</target> | 3534 | <target state="translated">КориÑтувача було заблоковано</target> |
3518 | 3535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">109</context></context-group> | |
3519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 3536 | </trans-unit> |
3520 | <trans-unit id="2348557406282409966" datatype="html"> | 3537 | <trans-unit id="2348557406282409966" datatype="html"> |
3521 | <source>Open account in a new tab</source> | 3538 | <source>Open account in a new tab</source> |
3522 | <target state="translated">Відкрити обліковий Ð·Ð°Ð¿Ð¸Ñ Ñƒ новій вкладці</target> | 3539 | <target state="translated">Відкрити обліковий Ð·Ð°Ð¿Ð¸Ñ Ñƒ новій вкладці</target> |
3523 | 3540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">69</context></context-group> | |
3524 | 3541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">94</context></context-group> | |
3525 | 3542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group> | |
3526 | 3543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group> | |
3527 | 3544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group> | |
3528 | 3545 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group> | |
3529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 3546 | </trans-unit> |
3530 | <trans-unit id="3111569165173971676" datatype="html"> | 3547 | <trans-unit id="3111569165173971676" datatype="html"> |
3531 | <source>Deleted account</source> | 3548 | <source>Deleted account</source> |
3532 | <target state="translated">Видалений обліковий запиÑ</target> | 3549 | <target state="translated">Видалений обліковий запиÑ</target> |
@@ -3535,28 +3552,28 @@ The link will expire within 1 hour.</source> | |||
3535 | <trans-unit id="3254358851993549668" datatype="html"> | 3552 | <trans-unit id="3254358851993549668" datatype="html"> |
3536 | <source>User's email must be verified to login</source> | 3553 | <source>User's email must be verified to login</source> |
3537 | <target state="translated">Ð”Ð»Ñ Ð²Ñ…Ð¾Ð´Ñƒ необхідно підтвердити кориÑтувацьку електронну пошту</target> | 3554 | <target state="translated">Ð”Ð»Ñ Ð²Ñ…Ð¾Ð´Ñƒ необхідно підтвердити кориÑтувацьку електронну пошту</target> |
3538 | 3555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group> | |
3539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">120</context></context-group></trans-unit> | 3556 | </trans-unit> |
3540 | <trans-unit id="3939342579126794385" datatype="html"> | 3557 | <trans-unit id="3939342579126794385" datatype="html"> |
3541 | <source>User's email is verified / User can login without email verification</source> | 3558 | <source>User's email is verified / User can login without email verification</source> |
3542 | <target state="new">User's email is verified / User can login without email verification</target> | 3559 | <target state="new">User's email is verified / User can login without email verification</target> |
3543 | 3560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">124</context></context-group> | |
3544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3561 | </trans-unit> |
3545 | <trans-unit id="242888077027281874" datatype="html"> | 3562 | <trans-unit id="242888077027281874" datatype="html"> |
3546 | <source>Total daily video quota</source> | 3563 | <source>Total daily video quota</source> |
3547 | <target state="translated">Загальна денна квота відео</target> | 3564 | <target state="translated">Загальна денна квота відео</target> |
3548 | 3565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group> | |
3549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 3566 | </trans-unit> |
3550 | <trans-unit id="1242902302929086301" datatype="html"> | 3567 | <trans-unit id="1242902302929086301" datatype="html"> |
3551 | <source>Ban reason:</source> | 3568 | <source>Ban reason:</source> |
3552 | <target state="translated">Причина блокуваннÑ:</target> | 3569 | <target state="translated">Причина блокуваннÑ:</target> |
3553 | 3570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">163</context></context-group> | |
3554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 3571 | </trans-unit> |
3555 | <trans-unit id="6124612368324200166" datatype="html"> | 3572 | <trans-unit id="6124612368324200166" datatype="html"> |
3556 | <source>Banned users</source> | 3573 | <source>Banned users</source> |
3557 | <target state="translated">Заблоковані кориÑтувачі</target> | 3574 | <target state="translated">Заблоковані кориÑтувачі</target> |
3558 | 3575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">45</context></context-group> | |
3559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 3576 | </trans-unit> |
3560 | <trans-unit id="5642198289374753866" datatype="html"> | 3577 | <trans-unit id="5642198289374753866" datatype="html"> |
3561 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 3578 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
3562 | <target state="translated">Показано <x id="INTERPOLATION"/> до <x id="INTERPOLATION_1"/> з <x id="INTERPOLATION_2"/> кориÑтувачів</target> | 3579 | <target state="translated">Показано <x id="INTERPOLATION"/> до <x id="INTERPOLATION_1"/> з <x id="INTERPOLATION_2"/> кориÑтувачів</target> |
@@ -3565,26 +3582,26 @@ The link will expire within 1 hour.</source> | |||
3565 | <trans-unit id="2049290282534091182" datatype="html"> | 3582 | <trans-unit id="2049290282534091182" datatype="html"> |
3566 | <source>Moderation</source> | 3583 | <source>Moderation</source> |
3567 | <target state="translated">МодераціÑ</target> | 3584 | <target state="translated">МодераціÑ</target> |
3568 | 3585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | |
3569 | 3586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">70</context></context-group> | |
3570 | 3587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group> | |
3571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3588 | </trans-unit> |
3572 | <trans-unit id="746099155736913817" datatype="html"> | 3589 | <trans-unit id="746099155736913817" datatype="html"> |
3573 | <source>Video blocks</source> | 3590 | <source>Video blocks</source> |
3574 | <target state="translated">Заблоковані відео</target> | 3591 | <target state="translated">Заблоковані відео</target> |
3575 | 3592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group> | |
3576 | 3593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3594 | </trans-unit> |
3578 | <trans-unit id="7815838401315213887" datatype="html"> | 3595 | <trans-unit id="7815838401315213887" datatype="html"> |
3579 | <source>Muted accounts</source> | 3596 | <source>Muted accounts</source> |
3580 | <target state="translated">Вимкнені облікові запиÑи</target> | 3597 | <target state="translated">Вимкнені облікові запиÑи</target> |
3581 | 3598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group> | |
3582 | 3599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">90</context></context-group> | |
3583 | 3600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group> | |
3584 | 3601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group> | |
3585 | 3602 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3586 | 3603 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3604 | </trans-unit> |
3588 | <trans-unit id="5668793810321242853" datatype="html"> | 3605 | <trans-unit id="5668793810321242853" datatype="html"> |
3589 | <source>Muted servers</source> | 3606 | <source>Muted servers</source> |
3590 | <target state="translated">Вимкнені Ñервери</target> | 3607 | <target state="translated">Вимкнені Ñервери</target> |
@@ -3662,30 +3679,30 @@ The link will expire within 1 hour.</source> | |||
3662 | <trans-unit id="7692347838587821095" datatype="html"> | 3679 | <trans-unit id="7692347838587821095" datatype="html"> |
3663 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3680 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3664 | <target state="translated">Дата <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> | 3681 | <target state="translated">Дата <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
3665 | 3682 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> | |
3666 | 3683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> | |
3667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3684 | </trans-unit> |
3668 | <trans-unit id="1451763834047485033" datatype="html"> | 3685 | <trans-unit id="1451763834047485033" datatype="html"> |
3669 | <source>Select this row</source> | 3686 | <source>Select this row</source> |
3670 | <target state="translated">Вибрати цей Ñ€Ñдок</target> | 3687 | <target state="translated">Вибрати цей Ñ€Ñдок</target> |
3671 | 3688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">54</context></context-group> | |
3672 | 3689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group> | |
3673 | 3690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">51</context></context-group> | |
3674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 3691 | </trans-unit> |
3675 | <trans-unit id="4043531994869127329" datatype="html"> | 3692 | <trans-unit id="4043531994869127329" datatype="html"> |
3676 | <source>See full comment</source> | 3693 | <source>See full comment</source> |
3677 | <target state="translated">ПереглÑнути увеÑÑŒ коментар</target> | 3694 | <target state="translated">ПереглÑнути увеÑÑŒ коментар</target> |
3678 | 3695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">58</context></context-group> | |
3679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 3696 | </trans-unit> |
3680 | <trans-unit id="3193976279273491157" datatype="html"> | 3697 | <trans-unit id="3193976279273491157" datatype="html"> |
3681 | <source>Actions</source> | 3698 | <source>Actions</source> |
3682 | <target state="translated">Дії</target> | 3699 | <target state="translated">Дії</target> |
3683 | 3700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
3684 | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3685 | 3702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">64</context></context-group> | |
3686 | 3703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group> | |
3687 | 3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group> | |
3688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 3705 | </trans-unit> |
3689 | <trans-unit id="8390803680962035202" datatype="html"> | 3706 | <trans-unit id="8390803680962035202" datatype="html"> |
3690 | <source>Follower</source> | 3707 | <source>Follower</source> |
3691 | <target state="translated">ПідпиÑник</target> | 3708 | <target state="translated">ПідпиÑник</target> |
@@ -3697,28 +3714,28 @@ The link will expire within 1 hour.</source> | |||
3697 | <trans-unit id="4691552465058437520" datatype="html"> | 3714 | <trans-unit id="4691552465058437520" datatype="html"> |
3698 | <source>Commented video</source> | 3715 | <source>Commented video</source> |
3699 | <target state="translated">Коментоване відео</target> | 3716 | <target state="translated">Коментоване відео</target> |
3700 | 3717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">81</context></context-group> | |
3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3718 | </trans-unit> |
3702 | <trans-unit id="7266085473379376028" datatype="html"> | 3719 | <trans-unit id="7266085473379376028" datatype="html"> |
3703 | <source>No comments found matching current filters.</source> | 3720 | <source>No comments found matching current filters.</source> |
3704 | <target state="new">No comments found matching current filters.</target> | 3721 | <target state="new">No comments found matching current filters.</target> |
3705 | 3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">106</context></context-group> | |
3706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 3723 | </trans-unit> |
3707 | <trans-unit id="2398388496754671928" datatype="html"> | 3724 | <trans-unit id="2398388496754671928" datatype="html"> |
3708 | <source>No comments found.</source> | 3725 | <source>No comments found.</source> |
3709 | <target state="translated">Ðемає коментарів.</target> | 3726 | <target state="translated">Ðемає коментарів.</target> |
3710 | 3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group> | |
3711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3728 | </trans-unit> |
3712 | <trans-unit id="4604870995665811499" datatype="html"> | 3729 | <trans-unit id="4604870995665811499" datatype="html"> |
3713 | <source>Local comments</source> | 3730 | <source>Local comments</source> |
3714 | <target state="translated">Локальні коментарі</target> | 3731 | <target state="translated">Локальні коментарі</target> |
3715 | 3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">51</context></context-group> | |
3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 3733 | </trans-unit> |
3717 | <trans-unit id="2721988499779041837" datatype="html"> | 3734 | <trans-unit id="2721988499779041837" datatype="html"> |
3718 | <source>Remote comments</source> | 3735 | <source>Remote comments</source> |
3719 | <target state="translated">Віддалені коментарі</target> | 3736 | <target state="translated">Віддалені коментарі</target> |
3720 | 3737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">55</context></context-group> | |
3721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 3738 | </trans-unit> |
3722 | <trans-unit id="1420624050293070194" datatype="html"> | 3739 | <trans-unit id="1420624050293070194" datatype="html"> |
3723 | <source>No abuses found matching current filters.</source> | 3740 | <source>No abuses found matching current filters.</source> |
3724 | <target state="new">No abuses found matching current filters.</target> | 3741 | <target state="new">No abuses found matching current filters.</target> |
@@ -3787,11 +3804,11 @@ The link will expire within 1 hour.</source> | |||
3787 | <trans-unit id="1868606282505332204" datatype="html"> | 3804 | <trans-unit id="1868606282505332204" datatype="html"> |
3788 | <source>Reports</source> | 3805 | <source>Reports</source> |
3789 | <target state="translated">Звіти</target> | 3806 | <target state="translated">Звіти</target> |
3790 | 3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group> | |
3791 | 3808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3792 | 3809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">34</context></context-group> | |
3793 | 3810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3811 | </trans-unit> |
3795 | <trans-unit id="7075448128175750939" datatype="html"> | 3812 | <trans-unit id="7075448128175750939" datatype="html"> |
3796 | <source>Moderation comment</source> | 3813 | <source>Moderation comment</source> |
3797 | <target state="translated">Коментар модератора</target> | 3814 | <target state="translated">Коментар модератора</target> |
@@ -3816,18 +3833,18 @@ The link will expire within 1 hour.</source> | |||
3816 | <trans-unit id="6549265851868599441" datatype="html"> | 3833 | <trans-unit id="6549265851868599441" datatype="html"> |
3817 | <source>Video</source> | 3834 | <source>Video</source> |
3818 | <target state="translated">Відео</target> | 3835 | <target state="translated">Відео</target> |
3819 | 3836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3820 | 3837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">40</context></context-group> | |
3821 | 3838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | |
3822 | 3839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group> | |
3823 | 3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group> | |
3824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 3841 | </trans-unit> |
3825 | <trans-unit id="2662644497259948010" datatype="html"> | 3842 | <trans-unit id="2662644497259948010" datatype="html"> |
3826 | <source>Comment</source> | 3843 | <source>Comment</source> |
3827 | <target state="translated">Коментар</target> | 3844 | <target state="translated">Коментар</target> |
3828 | 3845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group> | |
3829 | 3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group> | |
3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3847 | </trans-unit> |
3831 | <trans-unit id="1359961255805685312" datatype="html"> | 3848 | <trans-unit id="1359961255805685312" datatype="html"> |
3832 | <source>This video has been reported multiple times.</source> | 3849 | <source>This video has been reported multiple times.</source> |
3833 | <target state="translated">Ðа це відео поÑкаржилиÑÑ ÐºÑ–Ð»ÑŒÐºÐ° разів..</target> | 3850 | <target state="translated">Ðа це відео поÑкаржилиÑÑ ÐºÑ–Ð»ÑŒÐºÐ° разів..</target> |
@@ -3891,8 +3908,8 @@ The link will expire within 1 hour.</source> | |||
3891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> | 3908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">28</context></context-group> |
3892 | </trans-unit> | 3909 | </trans-unit> |
3893 | <trans-unit id="1258618443362430782" datatype="html"> | 3910 | <trans-unit id="1258618443362430782" datatype="html"> |
3894 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> | 3911 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><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> |
3895 | <target state="translated"><x id="ICU" xid="1879828604800763221" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 звіт} few {{{ abuse.countReportsForReporter }} звіти} other {{{ abuse.countReportsForReporter }} звітів}}"/><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>"/></target> | 3912 | <target state="translated"><x id="ICU" xid="1879828604800763221" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 звіт} few {{{ abuse.countReportsForReporter }} звіти} other {{{ abuse.countReportsForReporter }} звітів}}"/><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>"/></target> |
3896 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> | 3913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group> |
3897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> | 3914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group> |
3898 | </trans-unit> | 3915 | </trans-unit> |
@@ -3971,10 +3988,10 @@ The link will expire within 1 hour.</source> | |||
3971 | <trans-unit id="4086606389696938932" datatype="html"> | 3988 | <trans-unit id="4086606389696938932" datatype="html"> |
3972 | <source>Account</source> | 3989 | <source>Account</source> |
3973 | <target state="translated">Обліковий запиÑ</target> | 3990 | <target state="translated">Обліковий запиÑ</target> |
3974 | 3991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3975 | 3992 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
3976 | 3993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
3977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3994 | </trans-unit> |
3978 | <trans-unit id="8564972645418093229" datatype="html"> | 3995 | <trans-unit id="8564972645418093229" datatype="html"> |
3979 | <source>No account found matching current filters.</source> | 3996 | <source>No account found matching current filters.</source> |
3980 | <target state="new">No account found matching current filters.</target> | 3997 | <target state="new">No account found matching current filters.</target> |
@@ -4162,34 +4179,36 @@ The link will expire within 1 hour.</source> | |||
4162 | <trans-unit id="8949443215142664126" datatype="html"> | 4179 | <trans-unit id="8949443215142664126" datatype="html"> |
4163 | <source>Delete this comment</source> | 4180 | <source>Delete this comment</source> |
4164 | <target state="translated">Видалити цей коментар</target> | 4181 | <target state="translated">Видалити цей коментар</target> |
4165 | 4182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">80</context></context-group> | |
4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 4183 | </trans-unit> |
4167 | <trans-unit id="3327751240218085797" datatype="html"> | 4184 | <trans-unit id="3327751240218085797" datatype="html"> |
4168 | <source>Delete all comments of this account</source> | 4185 | <source>Delete all comments of this account</source> |
4169 | <target state="translated">Видалити вÑÑ– коментарі цього облікового запиÑу</target> | 4186 | <target state="translated">Видалити вÑÑ– коментарі цього облікового запиÑу</target> |
4170 | 4187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 4188 | </trans-unit> |
4172 | <trans-unit id="2850960459131251840" datatype="html"> | 4189 | <trans-unit id="2850960459131251840" datatype="html"> |
4173 | <source>Comments are deleted after a few minutes</source> | 4190 | <source>Comments are deleted after a few minutes</source> |
4174 | <target state="translated">Коментарі видалÑÑŽÑ‚ÑŒÑÑ Ð·Ð° кілька хвилин</target> | 4191 | <target state="translated">Коментарі видалÑÑŽÑ‚ÑŒÑÑ Ð·Ð° кілька хвилин</target> |
4175 | 4192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 4193 | </trans-unit> |
4177 | <trans-unit id="545410448674339480" datatype="html"> | 4194 | <trans-unit id="545410448674339480" datatype="html"> |
4178 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4195 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
4179 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> коментарів видалено.</target> | 4196 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> коментарів видалено.</target> |
4180 | 4197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">148</context></context-group> | |
4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 4198 | </trans-unit> |
4182 | <trans-unit id="379090446060940062" datatype="html"> | 4199 | <trans-unit id="379090446060940062" datatype="html"> |
4183 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4200 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
4184 | <target state="translated">Ви Ñправді хочете видалити вÑÑ– коментарі <x id="PH"/>?</target> | 4201 | <target state="translated">Ви Ñправді хочете видалити вÑÑ– коментарі <x id="PH"/>?</target> |
4185 | 4202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">168</context></context-group> | |
4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 4203 | </trans-unit> |
4187 | <trans-unit id="4539246224625965241" datatype="html"> | 4204 | <trans-unit id="4539246224625965241" datatype="html"> |
4188 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4205 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
4189 | <target state="translated">Коментарі <x id="PH"/> буде видалено за кілька хвилин</target> | 4206 | <target state="translated">Коментарі <x id="PH"/> буде видалено за кілька хвилин</target> |
4190 | 4207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">180</context></context-group> | |
4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">180</context></context-group></trans-unit><trans-unit id="3204306399736151644" datatype="html"> | 4208 | </trans-unit> |
4192 | <source>Comments list</source><target state="new">Comments list</target> | 4209 | <trans-unit id="3204306399736151644" datatype="html"> |
4210 | <source>Comments list</source> | ||
4211 | <target state="new">Comments list</target> | ||
4193 | <context-group purpose="location"> | 4212 | <context-group purpose="location"> |
4194 | <context context-type="sourcefile">src/app/+admin/overview/comments/video-comment.routes.ts</context> | 4213 | <context context-type="sourcefile">src/app/+admin/overview/comments/video-comment.routes.ts</context> |
4195 | <context context-type="linenumber">24</context> | 4214 | <context context-type="linenumber">24</context> |
@@ -4198,27 +4217,25 @@ The link will expire within 1 hour.</source> | |||
4198 | <trans-unit id="7427986413651551775" datatype="html"> | 4217 | <trans-unit id="7427986413651551775" datatype="html"> |
4199 | <source>Video comments</source> | 4218 | <source>Video comments</source> |
4200 | <target state="translated">Коментарі до відео</target> | 4219 | <target state="translated">Коментарі до відео</target> |
4201 | 4220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
4202 | 4221 | </trans-unit> | |
4203 | |||
4204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
4205 | <trans-unit id="289582790179344391" datatype="html"> | 4222 | <trans-unit id="289582790179344391" datatype="html"> |
4206 | <source>This view also shows comments from muted accounts.</source> | 4223 | <source>This view also shows comments from muted accounts.</source> |
4207 | <target state="new">This view also shows comments from muted accounts.</target> | 4224 | <target state="new">This view also shows comments from muted accounts.</target> |
4208 | 4225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">8</context></context-group> | |
4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 4226 | </trans-unit> |
4210 | <trans-unit id="4523382115569186450" datatype="html"> | 4227 | <trans-unit id="4523382115569186450" datatype="html"> |
4211 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | 4228 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> |
4212 | <target state="translated">Показано <x id="INTERPOLATION"/> до <x id="INTERPOLATION_1"/> з <x id="INTERPOLATION_2"/> коментарів</target> | 4229 | <target state="translated">Показано <x id="INTERPOLATION"/> до <x id="INTERPOLATION_1"/> з <x id="INTERPOLATION_2"/> коментарів</target> |
4213 | 4230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group> | |
4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4231 | </trans-unit> |
4215 | <trans-unit id="6110554376228744887" datatype="html"> | 4232 | <trans-unit id="6110554376228744887" datatype="html"> |
4216 | <source>Select all rows</source> | 4233 | <source>Select all rows</source> |
4217 | <target state="translated">Вибрати вÑÑ– Ñ€Ñдки</target> | 4234 | <target state="translated">Вибрати вÑÑ– Ñ€Ñдки</target> |
4218 | 4235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
4219 | 4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
4220 | 4237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">36</context></context-group> | |
4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4238 | </trans-unit> |
4222 | <trans-unit id="2719284837486030903" datatype="html"> | 4239 | <trans-unit id="2719284837486030903" datatype="html"> |
4223 | <source>Job type</source> | 4240 | <source>Job type</source> |
4224 | <target state="translated">Тип завданнÑ</target> | 4241 | <target state="translated">Тип завданнÑ</target> |
@@ -4249,8 +4266,8 @@ The link will expire within 1 hour.</source> | |||
4249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> | 4266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">46</context></context-group> |
4250 | </trans-unit> | 4267 | </trans-unit> |
4251 | <trans-unit id="3901868627411944813" datatype="html"> | 4268 | <trans-unit id="3901868627411944813" datatype="html"> |
4252 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> | 4269 | <source>Priority <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = highest priority)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></source> |
4253 | <target state="translated">ВажливіÑÑ‚ÑŒ <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = найважливіше)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> | 4270 | <target state="translated">ВажливіÑÑ‚ÑŒ <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = найважливіше)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> |
4254 | <context-group purpose="location"> | 4271 | <context-group purpose="location"> |
4255 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4272 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4256 | <context context-type="linenumber">47</context> | 4273 | <context context-type="linenumber">47</context> |
@@ -4270,8 +4287,8 @@ The link will expire within 1 hour.</source> | |||
4270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> | 4287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">105</context></context-group> |
4271 | </trans-unit> | 4288 | </trans-unit> |
4272 | <trans-unit id="2713421326605345655" datatype="html"> | 4289 | <trans-unit id="2713421326605345655" datatype="html"> |
4273 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | 4290 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> |
4274 | <target state="translated">Ðе <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> знайдено завдань.</target> | 4291 | <target state="translated">Ðе <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> знайдено завдань.</target> |
4275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> | 4292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">106</context></context-group> |
4276 | </trans-unit> | 4293 | </trans-unit> |
4277 | <trans-unit id="2384897339170501794" datatype="html"> | 4294 | <trans-unit id="2384897339170501794" datatype="html"> |
@@ -4287,10 +4304,11 @@ The link will expire within 1 hour.</source> | |||
4287 | <trans-unit id="1102717806459547726" datatype="html"> | 4304 | <trans-unit id="1102717806459547726" datatype="html"> |
4288 | <source>Refresh</source> | 4305 | <source>Refresh</source> |
4289 | <target state="translated">Оновити</target> | 4306 | <target state="translated">Оновити</target> |
4290 | 4307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
4291 | 4308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
4292 | 4309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group> | |
4293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 4310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group> |
4311 | </trans-unit> | ||
4294 | <trans-unit id="6052766076365105714" datatype="html"> | 4312 | <trans-unit id="6052766076365105714" datatype="html"> |
4295 | <source>now</source> | 4313 | <source>now</source> |
4296 | <target state="translated">зараз</target> | 4314 | <target state="translated">зараз</target> |
@@ -4318,8 +4336,8 @@ The link will expire within 1 hour.</source> | |||
4318 | </context-group> | 4336 | </context-group> |
4319 | </trans-unit> | 4337 | </trans-unit> |
4320 | <trans-unit id="2232767208623640457" datatype="html"> | 4338 | <trans-unit id="2232767208623640457" datatype="html"> |
4321 | <source>By <x id="INTERPOLATION"/> -></source> | 4339 | <source>By <x id="INTERPOLATION"/> -></source> |
4322 | <target state="translated">Від <x id="INTERPOLATION"/> -></target> | 4340 | <target state="translated">Від <x id="INTERPOLATION"/> -></target> |
4323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> | 4341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">47</context></context-group> |
4324 | </trans-unit> | 4342 | </trans-unit> |
4325 | <trans-unit id="7396175500300709096" datatype="html"> | 4343 | <trans-unit id="7396175500300709096" datatype="html"> |
@@ -4391,8 +4409,8 @@ The link will expire within 1 hour.</source> | |||
4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> | 4409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">82</context></context-group> |
4392 | </trans-unit> | 4410 | </trans-unit> |
4393 | <trans-unit id="4423835119021329687" datatype="html"> | 4411 | <trans-unit id="4423835119021329687" datatype="html"> |
4394 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> | 4412 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </source> |
4395 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </target> | 4413 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to build a moderation team. </target> |
4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> | 4414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">83</context></context-group> |
4397 | </trans-unit> | 4415 | </trans-unit> |
4398 | <trans-unit id="7030031694783481217" datatype="html"> | 4416 | <trans-unit id="7030031694783481217" datatype="html"> |
@@ -4401,8 +4419,8 @@ The link will expire within 1 hour.</source> | |||
4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> | 4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">93</context></context-group> |
4402 | </trans-unit> | 4420 | </trans-unit> |
4403 | <trans-unit id="4620493570088713907" datatype="html"> | 4421 | <trans-unit id="4620493570088713907" datatype="html"> |
4404 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> | 4422 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> |
4405 | <target state="new"> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> | 4423 | <target state="new"> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> |
4406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> | 4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">97</context></context-group> |
4407 | </trans-unit> | 4425 | </trans-unit> |
4408 | <trans-unit id="7497677457560701935" datatype="html"> | 4426 | <trans-unit id="7497677457560701935" datatype="html"> |
@@ -4521,8 +4539,8 @@ The link will expire within 1 hour.</source> | |||
4521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> | 4539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">4</context></context-group> |
4522 | </trans-unit> | 4540 | </trans-unit> |
4523 | <trans-unit id="2107098695989136934" datatype="html"> | 4541 | <trans-unit id="2107098695989136934" datatype="html"> |
4524 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4542 | <source>Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4525 | <target state="new"> Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4543 | <target state="new"> Use <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>plugins & themes<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>add slight customizations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> | 4544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">5</context></context-group> |
4527 | </trans-unit> | 4545 | </trans-unit> |
4528 | <trans-unit id="6855462350544488601" datatype="html"> | 4546 | <trans-unit id="6855462350544488601" datatype="html"> |
@@ -4628,8 +4646,8 @@ The link will expire within 1 hour.</source> | |||
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group> |
4629 | </trans-unit> | 4647 | </trans-unit> |
4630 | <trans-unit id="2669509104300979449" datatype="html"> | 4648 | <trans-unit id="2669509104300979449" datatype="html"> |
4631 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> | 4649 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </source> |
4632 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </target> | 4650 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to set their quota individually. </target> |
4633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> | 4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group> |
4634 | </trans-unit> | 4652 | </trans-unit> |
4635 | <trans-unit id="4497115134891299867" datatype="html"> | 4653 | <trans-unit id="4497115134891299867" datatype="html"> |
@@ -4674,8 +4692,10 @@ The link will expire within 1 hour.</source> | |||
4674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | 4692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | 4693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group> | 4694 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group> |
4677 | </trans-unit><trans-unit id="3807699453257291879" datatype="html"> | 4695 | </trans-unit> |
4678 | <source>Comments</source><target state="new">Comments</target> | 4696 | <trans-unit id="3807699453257291879" datatype="html"> |
4697 | <source>Comments</source> | ||
4698 | <target state="new">Comments</target> | ||
4679 | <context-group purpose="location"> | 4699 | <context-group purpose="location"> |
4680 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 4700 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
4681 | <context context-type="linenumber">57</context> | 4701 | <context context-type="linenumber">57</context> |
@@ -4818,8 +4838,8 @@ The link will expire within 1 hour.</source> | |||
4818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> | 4838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group> |
4819 | </trans-unit> | 4839 | </trans-unit> |
4820 | <trans-unit id="1886227550697837417" datatype="html"> | 4840 | <trans-unit id="1886227550697837417" datatype="html"> |
4821 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 4841 | <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
4822 | <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 4842 | <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> | 4843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group> |
4824 | </trans-unit> | 4844 | </trans-unit> |
4825 | <trans-unit id="2331464426553277323" datatype="html"> | 4845 | <trans-unit id="2331464426553277323" datatype="html"> |
@@ -4853,8 +4873,8 @@ The link will expire within 1 hour.</source> | |||
4853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> | 4873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group> |
4854 | </trans-unit> | 4874 | </trans-unit> |
4855 | <trans-unit id="252719899360434356" datatype="html"> | 4875 | <trans-unit id="252719899360434356" datatype="html"> |
4856 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> | 4876 | <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </source> |
4857 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </target> | 4877 | <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> with other instances. </target> |
4858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> | 4878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group> |
4859 | </trans-unit> | 4879 | </trans-unit> |
4860 | <trans-unit id="9119248927271669654" datatype="html"> | 4880 | <trans-unit id="9119248927271669654" datatype="html"> |
@@ -4890,8 +4910,8 @@ The link will expire within 1 hour.</source> | |||
4890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> | 4910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group> |
4891 | </trans-unit> | 4911 | </trans-unit> |
4892 | <trans-unit id="9076632742417302918" datatype="html"> | 4912 | <trans-unit id="9076632742417302918" datatype="html"> |
4893 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> | 4913 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </source> |
4894 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </target> | 4914 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances" rel="noopener noreferer" target="_blank">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information about the expected URL </target> |
4895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> | 4915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group> |
4896 | </trans-unit> | 4916 | </trans-unit> |
4897 | <trans-unit id="3946988229617310200" datatype="html"> | 4917 | <trans-unit id="3946988229617310200" datatype="html"> |
@@ -4940,8 +4960,8 @@ The link will expire within 1 hour.</source> | |||
4940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> | 4960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group> |
4941 | </trans-unit> | 4961 | </trans-unit> |
4942 | <trans-unit id="2076338542820061819" datatype="html"> | 4962 | <trans-unit id="2076338542820061819" datatype="html"> |
4943 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> | 4963 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </source> |
4944 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </target> | 4964 | <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" ctype="lb" equiv-text="<br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="<a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to see if you instance is allowed. </target> |
4945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> | 4965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group> |
4946 | </trans-unit> | 4966 | </trans-unit> |
4947 | <trans-unit id="493135676263039396" datatype="html"> | 4967 | <trans-unit id="493135676263039396" datatype="html"> |
@@ -4979,13 +4999,13 @@ The link will expire within 1 hour.</source> | |||
4979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> | 4999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">33</context></context-group> |
4980 | </trans-unit> | 5000 | </trans-unit> |
4981 | <trans-unit id="4420104899393268652" datatype="html"> | 5001 | <trans-unit id="4420104899393268652" datatype="html"> |
4982 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5002 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4983 | <target state="new"> Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5003 | <target state="new"> Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> | 5004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">40</context></context-group> |
4985 | </trans-unit> | 5005 | </trans-unit> |
4986 | <trans-unit id="7210210728441530221" datatype="html"> | 5006 | <trans-unit id="7210210728441530221" datatype="html"> |
4987 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 5007 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4988 | <target state="new"> Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 5008 | <target state="new"> Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> | 5009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">53</context></context-group> |
4990 | </trans-unit> | 5010 | </trans-unit> |
4991 | <trans-unit id="6830777508073747241" datatype="html"> | 5011 | <trans-unit id="6830777508073747241" datatype="html"> |
@@ -5129,8 +5149,8 @@ The link will expire within 1 hour.</source> | |||
5129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> | 5149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">94</context></context-group> |
5130 | </trans-unit> | 5150 | </trans-unit> |
5131 | <trans-unit id="7334484418359079994" datatype="html"> | 5151 | <trans-unit id="7334484418359079994" datatype="html"> |
5132 | <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 plain WebTorrent:<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 especially 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> | 5152 | <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 plain WebTorrent:<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 especially 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> |
5133 | <target state="new"><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 plain WebTorrent:<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 especially 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> | 5153 | <target state="new"><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 plain WebTorrent:<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 especially 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> |
5134 | <context-group purpose="location"> | 5154 | <context-group purpose="location"> |
5135 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5155 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5136 | <context context-type="linenumber">99,108</context> | 5156 | <context context-type="linenumber">99,108</context> |
@@ -5192,26 +5212,34 @@ The link will expire within 1 hour.</source> | |||
5192 | <source>new transcoding profiles can be added by PeerTube plugins</source> | 5212 | <source>new transcoding profiles can be added by PeerTube plugins</source> |
5193 | <target state="new">new transcoding profiles can be added by PeerTube plugins</target> | 5213 | <target state="new">new transcoding profiles can be added by PeerTube plugins</target> |
5194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">179</context></context-group> | 5214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">179</context></context-group> |
5195 | </trans-unit><trans-unit id="5216455244039448125" datatype="html"> | 5215 | </trans-unit> |
5196 | <source>VIDEO EDITOR</source><target state="new">VIDEO EDITOR</target> | 5216 | <trans-unit id="5216455244039448125" datatype="html"> |
5217 | <source>VIDEO EDITOR</source> | ||
5218 | <target state="new">VIDEO EDITOR</target> | ||
5197 | <context-group purpose="location"> | 5219 | <context-group purpose="location"> |
5198 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5220 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5199 | <context context-type="linenumber">198</context> | 5221 | <context context-type="linenumber">198</context> |
5200 | </context-group> | 5222 | </context-group> |
5201 | </trans-unit><trans-unit id="4078329985026583770" datatype="html"> | 5223 | </trans-unit> |
5202 | <source> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </source><target state="new"> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </target> | 5224 | <trans-unit id="4078329985026583770" datatype="html"> |
5225 | <source>Allows your users to edit their video (cut, add intro/outro, add a watermark etc)</source> | ||
5226 | <target state="new"> Allows your users to edit their video (cut, add intro/outro, add a watermark etc) </target> | ||
5203 | <context-group purpose="location"> | 5227 | <context-group purpose="location"> |
5204 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5228 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5205 | <context context-type="linenumber">199,201</context> | 5229 | <context context-type="linenumber">199,201</context> |
5206 | </context-group> | 5230 | </context-group> |
5207 | </trans-unit><trans-unit id="6675276142886460097" datatype="html"> | 5231 | </trans-unit> |
5208 | <source>Enable video editor</source><target state="new">Enable video editor</target> | 5232 | <trans-unit id="6675276142886460097" datatype="html"> |
5233 | <source>Enable video editor</source> | ||
5234 | <target state="new">Enable video editor</target> | ||
5209 | <context-group purpose="location"> | 5235 | <context-group purpose="location"> |
5210 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5236 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5211 | <context context-type="linenumber">210</context> | 5237 | <context context-type="linenumber">210</context> |
5212 | </context-group> | 5238 | </context-group> |
5213 | </trans-unit><trans-unit id="1618687984822075464" datatype="html"> | 5239 | </trans-unit> |
5214 | <source>âš ï¸ You need to enable transcoding first to enable video editor</source><target state="new">âš ï¸ You need to enable transcoding first to enable video editor</target> | 5240 | <trans-unit id="1618687984822075464" datatype="html"> |
5241 | <source>âš ï¸ You need to enable transcoding first to enable video editor</source> | ||
5242 | <target state="new">âš ï¸ You need to enable transcoding first to enable video editor</target> | ||
5215 | <context-group purpose="location"> | 5243 | <context-group purpose="location"> |
5216 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5244 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
5217 | <context context-type="linenumber">213</context> | 5245 | <context context-type="linenumber">213</context> |
@@ -5285,25 +5313,19 @@ The link will expire within 1 hour.</source> | |||
5285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> | 5313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">74</context></context-group> |
5286 | </trans-unit> | 5314 | </trans-unit> |
5287 | <trans-unit id="4067880101082150743" datatype="html"> | 5315 | <trans-unit id="4067880101082150743" datatype="html"> |
5288 | <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> | 5316 | <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> |
5289 | <target state="new"> 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> | 5317 | <target state="new"> 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> |
5290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> | 5318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">77</context></context-group> |
5291 | </trans-unit> | 5319 | </trans-unit> |
5292 | <trans-unit id="5464209657969421100" datatype="html"> | 5320 | <trans-unit id="5464209657969421100" datatype="html"> |
5293 | <source> 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="{{ '{' }}"/> | 5321 | <source>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>"/></source> |
5294 | color: red; | 5322 | <target state="new"> 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=" {{ '{' }"/> |
5295 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | ||
5296 | <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="{{ '{' }}"/> | ||
5297 | color: red; | ||
5298 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | ||
5299 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | ||
5300 | <target state="new"> 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=" {{ '{' }"/> | ||
5301 | color: red; | 5323 | color: red; |
5302 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | 5324 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
5303 | <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=" {{ '{' }"/> | 5325 | <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=" {{ '{' }"/> |
5304 | color: red; | 5326 | color: red; |
5305 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | 5327 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
5306 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | 5328 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
5307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> | 5329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context><context context-type="linenumber">96</context></context-group> |
5308 | </trans-unit> | 5330 | </trans-unit> |
5309 | <trans-unit id="283725429207896837" datatype="html"> | 5331 | <trans-unit id="283725429207896837" datatype="html"> |
@@ -5320,8 +5342,8 @@ color: red; | |||
5320 | </context-group> | 5342 | </context-group> |
5321 | </trans-unit> | 5343 | </trans-unit> |
5322 | <trans-unit id="8167543029214637769" datatype="html"> | 5344 | <trans-unit id="8167543029214637769" datatype="html"> |
5323 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> | 5345 | <source>There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></source> |
5324 | <target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> | 5346 | <target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li *ngFor="let error of grabAllErrors()">"/> <x id="INTERPOLATION" equiv-text="{{ error }}"/> <x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/></target> |
5325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> | 5347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">71</context></context-group> |
5326 | </trans-unit> | 5348 | </trans-unit> |
5327 | <trans-unit id="1445676851449000175" datatype="html"> | 5349 | <trans-unit id="1445676851449000175" datatype="html"> |
@@ -5397,8 +5419,8 @@ color: red; | |||
5397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> | 5419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">255</context></context-group> |
5398 | </trans-unit> | 5420 | </trans-unit> |
5399 | <trans-unit id="6317170736181476800" datatype="html"> | 5421 | <trans-unit id="6317170736181476800" datatype="html"> |
5400 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> | 5422 | <source>Update <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>your settings<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></source> |
5401 | <target state="translated">Оновіть <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>Ñвої налаштуваннÑ<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> | 5423 | <target state="translated">Оновіть <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings" [fragment]="fragment">"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span (click)="onAccountSettingsClick($event)">"/>Ñвої налаштуваннÑ<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> |
5402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> | 5424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">2</context></context-group> |
5403 | </trans-unit> | 5425 | </trans-unit> |
5404 | <trans-unit id="1405600824334286337" datatype="html"> | 5426 | <trans-unit id="1405600824334286337" datatype="html"> |
@@ -5418,40 +5440,40 @@ color: red; | |||
5418 | </context-group> | 5440 | </context-group> |
5419 | </trans-unit> | 5441 | </trans-unit> |
5420 | <trans-unit id="7028708681117573961" datatype="html"> | 5442 | <trans-unit id="7028708681117573961" datatype="html"> |
5421 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5443 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5422 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5444 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recently Added"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5423 | <context-group purpose="location"> | 5445 | <context-group purpose="location"> |
5424 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5446 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5425 | <context context-type="linenumber">46</context> | 5447 | <context context-type="linenumber">46</context> |
5426 | </context-group> | 5448 | </context-group> |
5427 | </trans-unit> | 5449 | </trans-unit> |
5428 | <trans-unit id="8190023086228606960" datatype="html"> | 5450 | <trans-unit id="8190023086228606960" datatype="html"> |
5429 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5451 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5430 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5452 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Recent Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5431 | <context-group purpose="location"> | 5453 | <context-group purpose="location"> |
5432 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5454 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5433 | <context context-type="linenumber">48</context> | 5455 | <context context-type="linenumber">48</context> |
5434 | </context-group> | 5456 | </context-group> |
5435 | </trans-unit> | 5457 | </trans-unit> |
5436 | <trans-unit id="3224510615614621760" datatype="html"> | 5458 | <trans-unit id="3224510615614621760" datatype="html"> |
5437 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5459 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5438 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5460 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Hot"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5439 | <context-group purpose="location"> | 5461 | <context-group purpose="location"> |
5440 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5462 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5441 | <context context-type="linenumber">49</context> | 5463 | <context context-type="linenumber">49</context> |
5442 | </context-group> | 5464 | </context-group> |
5443 | </trans-unit> | 5465 | </trans-unit> |
5444 | <trans-unit id="3082811226222076503" datatype="html"> | 5466 | <trans-unit id="3082811226222076503" datatype="html"> |
5445 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5467 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5446 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5468 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Best"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5447 | <context-group purpose="location"> | 5469 | <context-group purpose="location"> |
5448 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5470 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5449 | <context context-type="linenumber">50</context> | 5471 | <context context-type="linenumber">50</context> |
5450 | </context-group> | 5472 | </context-group> |
5451 | </trans-unit> | 5473 | </trans-unit> |
5452 | <trans-unit id="4322133526902910662" datatype="html"> | 5474 | <trans-unit id="4322133526902910662" datatype="html"> |
5453 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5475 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5454 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5476 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Likes"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5455 | <context-group purpose="location"> | 5477 | <context-group purpose="location"> |
5456 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5478 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5457 | <context context-type="linenumber">51</context> | 5479 | <context context-type="linenumber">51</context> |
@@ -5567,8 +5589,8 @@ color: red; | |||
5567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> | 5589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> |
5568 | </trans-unit> | 5590 | </trans-unit> |
5569 | <trans-unit id="7350483582490037954" datatype="html"> | 5591 | <trans-unit id="7350483582490037954" datatype="html"> |
5570 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> | 5592 | <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </source> |
5571 | <target state="new"> With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </target> | 5593 | <target state="new"> With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. </target> |
5572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> | 5594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group> |
5573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> | 5595 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group> |
5574 | </trans-unit> | 5596 | </trans-unit> |
@@ -5688,9 +5710,9 @@ color: red; | |||
5688 | <trans-unit id="5417361655914085905" datatype="html"> | 5710 | <trans-unit id="5417361655914085905" datatype="html"> |
5689 | <source>Account page</source> | 5711 | <source>Account page</source> |
5690 | <target state="translated">Сторінка облікового запиÑу</target> | 5712 | <target state="translated">Сторінка облікового запиÑу</target> |
5691 | 5713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">66</context></context-group> | |
5692 | 5714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">72</context></context-group> | |
5693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 5715 | </trans-unit> |
5694 | <trans-unit id="2000373220662583633" datatype="html"> | 5716 | <trans-unit id="2000373220662583633" datatype="html"> |
5695 | <source>No ownership change request found.</source> | 5717 | <source>No ownership change request found.</source> |
5696 | <target state="translated">Запит на зміну влаÑника не знайдено.</target> | 5718 | <target state="translated">Запит на зміну влаÑника не знайдено.</target> |
@@ -5788,10 +5810,10 @@ color: red; | |||
5788 | <trans-unit id="4000980858407872649" datatype="html"> | 5810 | <trans-unit id="4000980858407872649" datatype="html"> |
5789 | <source>Channel page</source> | 5811 | <source>Channel page</source> |
5790 | <target state="translated">Сторінка каналу</target> | 5812 | <target state="translated">Сторінка каналу</target> |
5791 | 5813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">25</context></context-group> | |
5792 | 5814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5793 | 5815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">63</context></context-group> | |
5794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 5816 | </trans-unit> |
5795 | <trans-unit id="9131836378905533756" datatype="html"> | 5817 | <trans-unit id="9131836378905533756" datatype="html"> |
5796 | <source>Created by <x id="INTERPOLATION"/></source> | 5818 | <source>Created by <x id="INTERPOLATION"/></source> |
5797 | <target state="translated">Створено <x id="INTERPOLATION"/></target> | 5819 | <target state="translated">Створено <x id="INTERPOLATION"/></target> |
@@ -5828,8 +5850,8 @@ color: red; | |||
5828 | </context-group> | 5850 | </context-group> |
5829 | </trans-unit> | 5851 | </trans-unit> |
5830 | <trans-unit id="5511928240200239994" datatype="html"> | 5852 | <trans-unit id="5511928240200239994" datatype="html"> |
5831 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | 5853 | <source>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> |
5832 | <target state="new">Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 5854 | <target state="new">Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>banner<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
5833 | <context-group purpose="location"> | 5855 | <context-group purpose="location"> |
5834 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5856 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5835 | <context context-type="linenumber">5</context> | 5857 | <context context-type="linenumber">5</context> |
@@ -5938,8 +5960,8 @@ color: red; | |||
5938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> | 5960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">13</context></context-group> |
5939 | </trans-unit> | 5961 | </trans-unit> |
5940 | <trans-unit id="8844610145426272276" datatype="html"> | 5962 | <trans-unit id="8844610145426272276" datatype="html"> |
5941 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> | 5963 | <source>To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </source> |
5942 | <target state="new"> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> | 5964 | <target state="new"> To help moderators and other users to know <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, don't forget to <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>set up your account profile<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> by adding an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>avatar<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>description<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> |
5943 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> | 5965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">17</context></context-group> |
5944 | </trans-unit> | 5966 | </trans-unit> |
5945 | <trans-unit id="3030338154442300172" datatype="html"> | 5967 | <trans-unit id="3030338154442300172" datatype="html"> |
@@ -6013,8 +6035,9 @@ color: red; | |||
6013 | <trans-unit id="2999492056553212422" datatype="html"> | 6035 | <trans-unit id="2999492056553212422" datatype="html"> |
6014 | <source>Banned</source> | 6036 | <source>Banned</source> |
6015 | <target state="translated">Заблоковано</target> | 6037 | <target state="translated">Заблоковано</target> |
6016 | 6038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group> | |
6017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 6039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">105</context></context-group> |
6040 | </trans-unit> | ||
6018 | <trans-unit id="4572885137800697555" datatype="html"> | 6041 | <trans-unit id="4572885137800697555" datatype="html"> |
6019 | <source>Instance muted</source> | 6042 | <source>Instance muted</source> |
6020 | <target state="translated">Сервер вимкнено</target> | 6043 | <target state="translated">Сервер вимкнено</target> |
@@ -6070,36 +6093,36 @@ color: red; | |||
6070 | <trans-unit id="403587185492002456" datatype="html"> | 6093 | <trans-unit id="403587185492002456" datatype="html"> |
6071 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6094 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6072 | <target state="translated">{VAR_PLURAL, plural, =1 {1 підпиÑник} few {<x id="INTERPOLATION"/> підпиÑники} many {<x id="INTERPOLATION"/> підпиÑників} other {<x id="INTERPOLATION"/> підпиÑника}}</target> | 6095 | <target state="translated">{VAR_PLURAL, plural, =1 {1 підпиÑник} few {<x id="INTERPOLATION"/> підпиÑники} many {<x id="INTERPOLATION"/> підпиÑників} other {<x id="INTERPOLATION"/> підпиÑника}}</target> |
6073 | 6096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group> | |
6074 | 6097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> | |
6075 | 6098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group> | |
6076 | 6099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group> | |
6077 | 6100 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group> | |
6078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 6101 | </trans-unit> |
6079 | <trans-unit id="3068011377000255023" datatype="html"> | 6102 | <trans-unit id="3068011377000255023" datatype="html"> |
6080 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6103 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6081 | <target state="translated">{VAR_PLURAL, plural, =1 {1 відео} other {<x id="INTERPOLATION"/> відео}}</target> | 6104 | <target state="translated">{VAR_PLURAL, plural, =1 {1 відео} other {<x id="INTERPOLATION"/> відео}}</target> |
6082 | 6105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> | |
6083 | 6106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group> | |
6084 | 6107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group> | |
6085 | 6108 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group> | |
6086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 6109 | </trans-unit> |
6087 | <trans-unit id="8856905278208146821" datatype="html"> | 6110 | <trans-unit id="8856905278208146821" datatype="html"> |
6088 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> | 6111 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> |
6089 | <target state="translated"><x id="ICU" xid="8553183884518584864" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 відео} other {{{ getTotalVideosOf(videoChannel) }} відео}}"/> </target> | 6112 | <target state="translated"><x id="ICU" xid="8553183884518584864" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 відео} other {{{ getTotalVideosOf(videoChannel) }} відео}}"/> </target> |
6090 | 6113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group> | |
6091 | 6114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | |
6092 | 6115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group> | |
6093 | 6116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group> | |
6094 | 6117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group> | |
6095 | 6118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group> | |
6096 | 6119 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group> | |
6097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 6120 | </trans-unit> |
6098 | <trans-unit id="4071627711041975501" datatype="html"> | 6121 | <trans-unit id="4071627711041975501" datatype="html"> |
6099 | <source>Show this channel</source> | 6122 | <source>Show this channel</source> |
6100 | <target state="translated">Показати цей канал</target> | 6123 | <target state="translated">Показати цей канал</target> |
6101 | 6124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">38</context></context-group> | |
6102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6125 | </trans-unit> |
6103 | <trans-unit id="7766488542631150871" datatype="html"> | 6126 | <trans-unit id="7766488542631150871" datatype="html"> |
6104 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 6127 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
6105 | <target state="translated">{VAR_PLURAL, plural, =0 {Ðемає відео} =1 {1 відео} other {<x id="INTERPOLATION"/> відео}}</target> | 6128 | <target state="translated">{VAR_PLURAL, plural, =0 {Ðемає відео} =1 {1 відео} other {<x id="INTERPOLATION"/> відео}}</target> |
@@ -6107,9 +6130,7 @@ color: red; | |||
6107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> | 6130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> |
6108 | </trans-unit> | 6131 | </trans-unit> |
6109 | <trans-unit id="7152797255397280410" datatype="html"> | 6132 | <trans-unit id="7152797255397280410" datatype="html"> |
6110 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 6133 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
6111 | It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another | ||
6112 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | ||
6113 | <target state="translated">Ви Ñправді хочете видалити <x id="PH" equiv-text="videoChannel.displayName"/>? Буде видалено <x id="PH_1" equiv-text="videoChannel.videosCount"/> відео, вивантажених у цей канал, Ñ– ви більше не зможете Ñтворити інший канал з такою ж назвою (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> | 6134 | <target state="translated">Ви Ñправді хочете видалити <x id="PH" equiv-text="videoChannel.displayName"/>? Буде видалено <x id="PH_1" equiv-text="videoChannel.videosCount"/> відео, вивантажених у цей канал, Ñ– ви більше не зможете Ñтворити інший канал з такою ж назвою (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> |
6114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> | 6135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">44</context></context-group> |
6115 | </trans-unit> | 6136 | </trans-unit> |
@@ -6130,21 +6151,21 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6130 | <trans-unit id="7828153032795614080" datatype="html"> | 6151 | <trans-unit id="7828153032795614080" datatype="html"> |
6131 | <source>See this video channel</source> | 6152 | <source>See this video channel</source> |
6132 | <target state="translated">ПереглÑнути цей відеоканал</target> | 6153 | <target state="translated">ПереглÑнути цей відеоканал</target> |
6133 | 6154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">15</context></context-group> | |
6134 | 6155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group> | |
6135 | 6156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">4</context></context-group> | |
6136 | 6157 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">7</context></context-group> | |
6137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 6158 | </trans-unit> |
6138 | <trans-unit id="1545109431751219382" datatype="html"> | 6159 | <trans-unit id="1545109431751219382" datatype="html"> |
6139 | <source>This channel doesn't have any videos.</source> | 6160 | <source>This channel doesn't have any videos.</source> |
6140 | <target state="translated">Ðа цьому каналі немає відео.</target> | 6161 | <target state="translated">Ðа цьому каналі немає відео.</target> |
6141 | 6162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group> | |
6142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6163 | </trans-unit> |
6143 | <trans-unit id="2705478076887104088" datatype="html"> | 6164 | <trans-unit id="2705478076887104088" datatype="html"> |
6144 | <source>SHOW THIS CHANNEL ></source> | 6165 | <source>SHOW THIS CHANNEL ></source> |
6145 | <target state="translated">ПОКÐЗÐТИ ЦЕЙ КÐÐÐЛ ></target> | 6166 | <target state="translated">ПОКÐЗÐТИ ЦЕЙ КÐÐÐЛ ></target> |
6146 | 6167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group> | |
6147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 6168 | </trans-unit> |
6148 | <trans-unit id="4088311569349098646" datatype="html"> | 6169 | <trans-unit id="4088311569349098646" datatype="html"> |
6149 | <source>Stats</source> | 6170 | <source>Stats</source> |
6150 | <target state="translated">СтатиÑтика</target> | 6171 | <target state="translated">СтатиÑтика</target> |
@@ -6423,8 +6444,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> | 6444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">111</context></context-group> |
6424 | </trans-unit> | 6445 | </trans-unit> |
6425 | <trans-unit id="1120376809358109718" datatype="html"> | 6446 | <trans-unit id="1120376809358109718" datatype="html"> |
6426 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 6447 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
6427 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | 6448 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> |
6428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> | 6449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">115</context></context-group> |
6429 | </trans-unit> | 6450 | </trans-unit> |
6430 | <trans-unit id="7812408733559506009" datatype="html"> | 6451 | <trans-unit id="7812408733559506009" datatype="html"> |
@@ -6534,7 +6555,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6534 | </trans-unit> | 6555 | </trans-unit> |
6535 | <trans-unit id="1812900507515561988" datatype="html"> | 6556 | <trans-unit id="1812900507515561988" datatype="html"> |
6536 | <source>About this instance's network</source> | 6557 | <source>About this instance's network</source> |
6537 | <target state="new">About this instance's network</target> | 6558 | <target state="translated">Про мережу цього Ñервера</target> |
6538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | 6559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> |
6539 | </trans-unit> | 6560 | </trans-unit> |
6540 | <trans-unit id="892073694820881630" datatype="html"> | 6561 | <trans-unit id="892073694820881630" datatype="html"> |
@@ -6543,8 +6564,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> | 6564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">98</context></context-group> |
6544 | </trans-unit> | 6565 | </trans-unit> |
6545 | <trans-unit id="4807161697338135032" datatype="html"> | 6566 | <trans-unit id="4807161697338135032" datatype="html"> |
6546 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | 6567 | <source>Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
6547 | <target state="new">Contact the administrator(s)<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 6568 | <target state="translated">Зв'ÑзатиÑÑ Ð· адмініÑтраторами<x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p class="modal-subtitle">"/><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/><x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
6548 | <context-group purpose="location"> | 6569 | <context-group purpose="location"> |
6549 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6570 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6550 | <context context-type="linenumber">3</context> | 6571 | <context context-type="linenumber">3</context> |
@@ -6582,12 +6603,12 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6582 | </trans-unit> | 6603 | </trans-unit> |
6583 | <trans-unit id="1445137115016841401" datatype="html"> | 6604 | <trans-unit id="1445137115016841401" datatype="html"> |
6584 | <source>How long do we plan to maintain this instance?</source> | 6605 | <source>How long do we plan to maintain this instance?</source> |
6585 | <target state="new">How long do we plan to maintain this instance?</target> | 6606 | <target state="translated">Як довго ми плануємо підтримувати цей Ñервер?</target> |
6586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">24</context></context-group> | 6607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">24</context></context-group> |
6587 | </trans-unit> | 6608 | </trans-unit> |
6588 | <trans-unit id="2975856643479054118" datatype="html"> | 6609 | <trans-unit id="2975856643479054118" datatype="html"> |
6589 | <source>How will we finance this instance?</source> | 6610 | <source>How will we finance this instance?</source> |
6590 | <target state="new">How will we finance this instance?</target> | 6611 | <target state="translated">Як ми фінанÑуватимемо цей Ñервер?</target> |
6591 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">29</context></context-group> | 6612 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">29</context></context-group> |
6592 | </trans-unit> | 6613 | </trans-unit> |
6593 | <trans-unit id="2573967459337636542" datatype="html"> | 6614 | <trans-unit id="2573967459337636542" datatype="html"> |
@@ -6598,14 +6619,14 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6598 | </trans-unit> | 6619 | </trans-unit> |
6599 | <trans-unit id="8980375993935541237" datatype="html"> | 6620 | <trans-unit id="8980375993935541237" datatype="html"> |
6600 | <source>Step</source> | 6621 | <source>Step</source> |
6601 | <target state="new">Step</target> | 6622 | <target state="translated">Крок</target> |
6602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/custom-stepper.component.html</context><context context-type="linenumber">9</context></context-group> | 6623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/custom-stepper.component.html</context><context context-type="linenumber">9</context></context-group> |
6603 | </trans-unit> | 6624 | </trans-unit> |
6604 | <trans-unit id="4665274432258993920" datatype="html"> | 6625 | <trans-unit id="4665274432258993920" datatype="html"> |
6605 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> | 6626 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> |
6606 | <target state="new"> | 6627 | <target state="new"> |
6607 | A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. | 6628 | A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. |
6608 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 6629 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
6609 | For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. | 6630 | For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. |
6610 | 6631 | ||
6611 | </target> | 6632 | </target> |
@@ -6654,8 +6675,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> | 6675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">50</context></context-group> |
6655 | </trans-unit> | 6676 | </trans-unit> |
6656 | <trans-unit id="7440807341905682986" datatype="html"> | 6677 | <trans-unit id="7440807341905682986" datatype="html"> |
6657 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> | 6678 | <source>I am at least <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> years old and agree to the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> and to the <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Code of Conduct<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> of this instance </source> |
6658 | <target state="translated">Мені виповнилоÑÑ <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> років Ñ– Ñ Ð¿Ð¾Ð³Ð¾Ð´Ð¶ÑƒÑŽÑÑ Ð· <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Умовами<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> та <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Правилами поведінки<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> цього Ñервера </target> | 6679 | <target state="translated">Мені виповнилоÑÑ <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> років Ñ– Ñ Ð¿Ð¾Ð³Ð¾Ð´Ð¶ÑƒÑŽÑÑ Ð· <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Умовами<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngIf="hasCodeOfConduct">"/> та <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Правилами поведінки<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> цього Ñервера </target> |
6659 | <context-group purpose="location"> | 6680 | <context-group purpose="location"> |
6660 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 6681 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
6661 | <context context-type="linenumber">5,10</context> | 6682 | <context context-type="linenumber">5,10</context> |
@@ -6829,8 +6850,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> | 6850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">17</context></context-group> |
6830 | </trans-unit> | 6851 | </trans-unit> |
6831 | <trans-unit id="8011855989482474311" datatype="html"> | 6852 | <trans-unit id="8011855989482474311" datatype="html"> |
6832 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 6853 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
6833 | <target state="translated"><code>.mp4</code> лишає тільки оригінальну аудіодоріжку без відео</target> | 6854 | <target state="translated"><code>.mp4</code> лишає тільки оригінальну аудіодоріжку без відео</target> |
6834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> | 6855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">18</context></context-group> |
6835 | </trans-unit> | 6856 | </trans-unit> |
6836 | <trans-unit id="7756250490108954499" datatype="html"> | 6857 | <trans-unit id="7756250490108954499" datatype="html"> |
@@ -6978,8 +6999,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6978 | <trans-unit id="2060042292048624940" datatype="html"> | 6999 | <trans-unit id="2060042292048624940" datatype="html"> |
6979 | <source>Configuration updated.</source> | 7000 | <source>Configuration updated.</source> |
6980 | <target state="translated">Конфігурацію оновлено.</target> | 7001 | <target state="translated">Конфігурацію оновлено.</target> |
6981 | 7002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">309</context></context-group> | |
6982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 7003 | </trans-unit> |
6983 | <trans-unit id="6920964195632624609" datatype="html"> | 7004 | <trans-unit id="6920964195632624609" datatype="html"> |
6984 | <source>INSTANCE HOMEPAGE</source> | 7005 | <source>INSTANCE HOMEPAGE</source> |
6985 | <target state="translated">ДОМІВКРСЕРВЕРÐ</target> | 7006 | <target state="translated">ДОМІВКРСЕРВЕРÐ</target> |
@@ -7186,32 +7207,32 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7186 | <trans-unit id="7022070615528435141" datatype="html"> | 7207 | <trans-unit id="7022070615528435141" datatype="html"> |
7187 | <source>Delete</source> | 7208 | <source>Delete</source> |
7188 | <target state="translated">Видалити</target> | 7209 | <target state="translated">Видалити</target> |
7189 | 7210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7190 | 7211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group> | |
7191 | 7212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7192 | 7213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7193 | 7214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group> | |
7194 | 7215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7195 | 7216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">209</context></context-group> | |
7196 | 7217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7197 | 7218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group> | |
7198 | 7219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group> | |
7199 | 7220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group> | |
7200 | 7221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7201 | 7222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group> | |
7202 | 7223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group> | |
7203 | 7224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7204 | 7225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group> | |
7205 | 7226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">225</context></context-group> | |
7206 | 7227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">190</context></context-group> | |
7207 | 7228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | |
7208 | 7229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7209 | 7230 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group> | |
7210 | 7231 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group> | |
7211 | 7232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group> | |
7212 | 7233 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group> | |
7213 | 7234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
7214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/comments/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">209</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">225</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">190</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 7235 | </trans-unit> |
7215 | <trans-unit id="2452034338905853167" datatype="html"> | 7236 | <trans-unit id="2452034338905853167" datatype="html"> |
7216 | <source><x id="PH"/> removed from instance followers </source> | 7237 | <source><x id="PH"/> removed from instance followers </source> |
7217 | <target state="new"> | 7238 | <target state="new"> |
@@ -7487,17 +7508,17 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7487 | <trans-unit id="4859202148272511129" datatype="html"> | 7508 | <trans-unit id="4859202148272511129" datatype="html"> |
7488 | <source>Unblock</source> | 7509 | <source>Unblock</source> |
7489 | <target state="translated">Розблокувати</target> | 7510 | <target state="translated">Розблокувати</target> |
7490 | 7511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7491 | 7512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">133</context></context-group> | |
7492 | 7513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7493 | 7514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">354</context></context-group> | |
7494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">133</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 7515 | </trans-unit> |
7495 | <trans-unit id="4922469417589203720" datatype="html"> | 7516 | <trans-unit id="4922469417589203720" datatype="html"> |
7496 | <source>Video <x id="PH"/> unblocked.</source> | 7517 | <source>Video <x id="PH"/> unblocked.</source> |
7497 | <target state="translated">Відео <x id="PH"/> розблоковано.</target> | 7518 | <target state="translated">Відео <x id="PH"/> розблоковано.</target> |
7498 | 7519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
7499 | 7520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group> | |
7500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">211</context></context-group></trans-unit> | 7521 | </trans-unit> |
7501 | <trans-unit id="6286037250766429054" datatype="html"> | 7522 | <trans-unit id="6286037250766429054" datatype="html"> |
7502 | <source>yes</source> | 7523 | <source>yes</source> |
7503 | <target state="translated">так</target> | 7524 | <target state="translated">так</target> |
@@ -7617,8 +7638,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7617 | </context-group> | 7638 | </context-group> |
7618 | </trans-unit> | 7639 | </trans-unit> |
7619 | <trans-unit id="7223931053738621590" datatype="html"> | 7640 | <trans-unit id="7223931053738621590" datatype="html"> |
7620 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> | 7641 | <source>PeerTube thinks your web browser public IP is <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</source> |
7621 | <target state="translated">PeerTube вважає, що загальнодоÑтупна IP-адреÑа вашого переглÑдача <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 7642 | <target state="translated">PeerTube вважає, що загальнодоÑтупна IP-адреÑа вашого переглÑдача <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ debug?.ip }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
7622 | <context-group purpose="location"> | 7643 | <context-group purpose="location"> |
7623 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7644 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7624 | <context context-type="linenumber">4</context> | 7645 | <context context-type="linenumber">4</context> |
@@ -7665,16 +7686,16 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7665 | </context-group> | 7686 | </context-group> |
7666 | </trans-unit> | 7687 | </trans-unit> |
7667 | <trans-unit id="1285026053775066761" datatype="html"> | 7688 | <trans-unit id="1285026053775066761" datatype="html"> |
7668 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> | 7689 | <source>Check the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> configuration key</source> |
7669 | <target state="translated">Перевірте ключ конфігурації <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/></target> | 7690 | <target state="translated">Перевірте ключ конфігурації <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>trust_proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/></target> |
7670 | <context-group purpose="location"> | 7691 | <context-group purpose="location"> |
7671 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7692 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7672 | <context context-type="linenumber">15</context> | 7693 | <context context-type="linenumber">15</context> |
7673 | </context-group> | 7694 | </context-group> |
7674 | </trans-unit> | 7695 | </trans-unit> |
7675 | <trans-unit id="7014275542536964627" datatype="html"> | 7696 | <trans-unit id="7014275542536964627" datatype="html"> |
7676 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> | 7697 | <source>If you run PeerTube using Docker, check you run the <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (see <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>issue 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</source> |
7677 | <target state="translated">Якщо ваш PeerTube працює у Docker, перевірте, чи працює <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (переглÑньте <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>Ð¾Ð±Ð³Ð¾Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> | 7698 | <target state="translated">Якщо ваш PeerTube працює у Docker, перевірте, чи працює <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>reverse-proxy<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> with <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/>network_mode: "host"<x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code>"/> (переглÑньте <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666">"/>Ð¾Ð±Ð³Ð¾Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ 1643<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>)</target> |
7678 | <context-group purpose="location"> | 7699 | <context-group purpose="location"> |
7679 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7700 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7680 | <context context-type="linenumber">16,17</context> | 7701 | <context context-type="linenumber">16,17</context> |
@@ -7724,19 +7745,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7724 | <trans-unit id="314315645942131479" datatype="html"> | 7745 | <trans-unit id="314315645942131479" datatype="html"> |
7725 | <source>Info</source> | 7746 | <source>Info</source> |
7726 | <target state="translated">ВідомоÑÑ‚Ñ–</target> | 7747 | <target state="translated">ВідомоÑÑ‚Ñ–</target> |
7727 | 7748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">41</context></context-group> | |
7728 | 7749 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group> | |
7729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7750 | </trans-unit> |
7730 | <trans-unit id="4116911651502837995" datatype="html"> | 7751 | <trans-unit id="4116911651502837995" datatype="html"> |
7731 | <source>Files</source> | 7752 | <source>Files</source> |
7732 | <target state="translated">Файли</target> | 7753 | <target state="translated">Файли</target> |
7733 | 7754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
7734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 7755 | </trans-unit> |
7735 | <trans-unit id="4767765747214995164" datatype="html"> | 7756 | <trans-unit id="4767765747214995164" datatype="html"> |
7736 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> | 7757 | <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></source> |
7737 | <target state="translated">Опубліковано <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> | 7758 | <target state="translated">Опубліковано <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="<p-sortIcon field="publishedAt">"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="</p-sortIcon>"/></target> |
7738 | 7759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
7739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7760 | </trans-unit> |
7740 | <trans-unit id="6759205696902713848" datatype="html"> | 7761 | <trans-unit id="6759205696902713848" datatype="html"> |
7741 | <source>Warning</source> | 7762 | <source>Warning</source> |
7742 | <target state="translated">ПопередженнÑ</target> | 7763 | <target state="translated">ПопередженнÑ</target> |
@@ -7772,13 +7793,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7772 | <trans-unit id="7098180453085889026" datatype="html"> | 7793 | <trans-unit id="7098180453085889026" datatype="html"> |
7773 | <source>Blocked videos</source> | 7794 | <source>Blocked videos</source> |
7774 | <target state="translated">Заблоковані відео</target> | 7795 | <target state="translated">Заблоковані відео</target> |
7775 | 7796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">66</context></context-group> | |
7776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 7797 | </trans-unit> |
7777 | <trans-unit id="7805059636749367886" datatype="html"> | 7798 | <trans-unit id="7805059636749367886" datatype="html"> |
7778 | <source>Muted instances</source> | 7799 | <source>Muted instances</source> |
7779 | <target state="translated">Вимкнені Ñервери</target> | 7800 | <target state="translated">Вимкнені Ñервери</target> |
7780 | 7801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">101</context></context-group> | |
7781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 7802 | </trans-unit> |
7782 | <trans-unit id="5974506725502681113" datatype="html"> | 7803 | <trans-unit id="5974506725502681113" datatype="html"> |
7783 | <source>Password changed for user <x id="PH"/>.</source> | 7804 | <source>Password changed for user <x id="PH"/>.</source> |
7784 | <target state="translated">Змінено пароль Ð´Ð»Ñ <x id="PH"/>.</target> | 7805 | <target state="translated">Змінено пароль Ð´Ð»Ñ <x id="PH"/>.</target> |
@@ -7872,105 +7893,103 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7872 | <trans-unit id="8564701209009684429" datatype="html"> | 7893 | <trans-unit id="8564701209009684429" datatype="html"> |
7873 | <source>Federation</source> | 7894 | <source>Federation</source> |
7874 | <target state="translated">ФедераціÑ</target> | 7895 | <target state="translated">ФедераціÑ</target> |
7875 | 7896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">72</context></context-group> | |
7876 | 7897 | </trans-unit> | |
7877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | ||
7878 | <trans-unit id="3767259920053407667" datatype="html"> | 7898 | <trans-unit id="3767259920053407667" datatype="html"> |
7879 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7899 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7880 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> | 7900 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> |
7881 | 7901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7882 | 7902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">345</context></context-group> | |
7883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> | 7903 | </trans-unit> |
7884 | <trans-unit id="4209525355702493436" datatype="html"> | 7904 | <trans-unit id="4209525355702493436" datatype="html"> |
7885 | <source>Ban</source> | 7905 | <source>Ban</source> |
7886 | <target state="translated">Заблокувати</target> | 7906 | <target state="translated">Заблокувати</target> |
7887 | 7907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
7888 | 7908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">350</context></context-group> | |
7889 | 7909 | </trans-unit> | |
7890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">350</context></context-group></trans-unit> | ||
7891 | <trans-unit id="3855396975723886053" datatype="html"> | 7910 | <trans-unit id="3855396975723886053" datatype="html"> |
7892 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7911 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7893 | <target state="translated">КориÑтувач більше не зможе ввійти, але відео та коментарі залишатьÑÑ.</target> | 7912 | <target state="translated">КориÑтувач більше не зможе ввійти, але відео та коментарі залишатьÑÑ.</target> |
7894 | 7913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">102</context></context-group> | |
7895 | 7914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group> | |
7896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7915 | </trans-unit> |
7897 | <trans-unit id="4451482225013335720" datatype="html"> | 7916 | <trans-unit id="4451482225013335720" datatype="html"> |
7898 | <source>Unban</source> | 7917 | <source>Unban</source> |
7899 | <target state="translated">Розблокувати</target> | 7918 | <target state="translated">Розблокувати</target> |
7900 | 7919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">107</context></context-group> | |
7901 | 7920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | |
7902 | 7921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | |
7903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 7922 | </trans-unit> |
7904 | <trans-unit id="7210277223053877333" datatype="html"> | 7923 | <trans-unit id="7210277223053877333" datatype="html"> |
7905 | <source>Set Email as Verified</source> | 7924 | <source>Set Email as Verified</source> |
7906 | <target state="translated">Позначити е-пошту підтвердженою</target> | 7925 | <target state="translated">Позначити е-пошту підтвердженою</target> |
7907 | 7926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7908 | 7927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">362</context></context-group> | |
7909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">362</context></context-group></trans-unit> | 7928 | </trans-unit> |
7910 | <trans-unit id="4207916966377787111" datatype="html"> | 7929 | <trans-unit id="4207916966377787111" datatype="html"> |
7911 | <source>Created</source> | 7930 | <source>Created</source> |
7912 | <target state="translated">Створено</target> | 7931 | <target state="translated">Створено</target> |
7913 | 7932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">129</context></context-group> | |
7914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 7933 | </trans-unit> |
7915 | <trans-unit id="8140268298586972139" datatype="html"> | 7934 | <trans-unit id="8140268298586972139" datatype="html"> |
7916 | <source>Daily quota</source> | 7935 | <source>Daily quota</source> |
7917 | <target state="new">Daily quota</target> | 7936 | <target state="new">Daily quota</target> |
7918 | 7937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7938 | </trans-unit> |
7920 | <trans-unit id="7910076708497708162" datatype="html"> | 7939 | <trans-unit id="7910076708497708162" datatype="html"> |
7921 | <source>Last login</source> | 7940 | <source>Last login</source> |
7922 | <target state="new">Last login</target> | 7941 | <target state="new">Last login</target> |
7923 | 7942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 7943 | </trans-unit> |
7925 | <trans-unit id="3403978719736970622" datatype="html"> | 7944 | <trans-unit id="3403978719736970622" datatype="html"> |
7926 | <source>You cannot ban root.</source> | 7945 | <source>You cannot ban root.</source> |
7927 | <target state="new">You cannot ban root.</target> | 7946 | <target state="new">You cannot ban root.</target> |
7928 | 7947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">173</context></context-group> | |
7929 | 7948 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">71</context></context-group> | |
7930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">173</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 7949 | </trans-unit> |
7931 | <trans-unit id="4884272193574287483" datatype="html"> | 7950 | <trans-unit id="4884272193574287483" datatype="html"> |
7932 | <source>Do you really want to unban <x id="PH"/> users?</source> | 7951 | <source>Do you really want to unban <x id="PH"/> users?</source> |
7933 | <target state="translated">Справді розблокувати <x id="PH"/> кориÑтувачів?</target> | 7952 | <target state="translated">Справді розблокувати <x id="PH"/> кориÑтувачів?</target> |
7934 | 7953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group> | |
7935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 7954 | </trans-unit> |
7936 | <trans-unit id="8712248120167780385" datatype="html"> | 7955 | <trans-unit id="8712248120167780385" datatype="html"> |
7937 | <source><x id="PH"/> users unbanned. </source> | 7956 | <source><x id="PH"/> users unbanned. </source> |
7938 | <target state="translated"><x id="PH"/> кориÑтувачів розблоковано. </target> | 7957 | <target state="translated"><x id="PH"/> кориÑтувачів розблоковано. </target> |
7939 | 7958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">192</context></context-group> | |
7940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 7959 | </trans-unit> |
7941 | <trans-unit id="5325873477837320044" datatype="html"> | 7960 | <trans-unit id="5325873477837320044" datatype="html"> |
7942 | <source>You cannot delete root.</source> | 7961 | <source>You cannot delete root.</source> |
7943 | <target state="new">You cannot delete root.</target> | 7962 | <target state="new">You cannot delete root.</target> |
7944 | 7963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">203</context></context-group> | |
7945 | 7964 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">99</context></context-group> | |
7946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">203</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 7965 | </trans-unit> |
7947 | <trans-unit id="4086135983283545219" datatype="html"> | 7966 | <trans-unit id="4086135983283545219" datatype="html"> |
7948 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 7967 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
7949 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> | 7968 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> |
7950 | 7969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group> | |
7951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 7970 | </trans-unit> |
7952 | <trans-unit id="7166936623843420016" datatype="html"> | 7971 | <trans-unit id="7166936623843420016" datatype="html"> |
7953 | <source><x id="PH"/> users deleted. </source> | 7972 | <source><x id="PH"/> users deleted. </source> |
7954 | <target state="translated"><x id="PH"/> кориÑтувачів видалено. </target> | 7973 | <target state="translated"><x id="PH"/> кориÑтувачів видалено. </target> |
7955 | 7974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">215</context></context-group> | |
7956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 7975 | </trans-unit> |
7957 | <trans-unit id="8360664597512051242" datatype="html"> | 7976 | <trans-unit id="8360664597512051242" datatype="html"> |
7958 | <source><x id="PH"/> users email set as verified. </source> | 7977 | <source><x id="PH"/> users email set as verified. </source> |
7959 | <target state="translated"><x id="PH"/> електронних Ð°Ð´Ñ€ÐµÑ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¾ підтвердженими. </target> | 7978 | <target state="translated"><x id="PH"/> електронних Ð°Ð´Ñ€ÐµÑ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¾ підтвердженими. </target> |
7960 | 7979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">227</context></context-group> | |
7961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7980 | </trans-unit> |
7962 | <trans-unit id="7390990800435887351" datatype="html"> | 7981 | <trans-unit id="7390990800435887351" datatype="html"> |
7963 | <source>Account <x id="PH"/> unmuted.</source> | 7982 | <source>Account <x id="PH"/> unmuted.</source> |
7964 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> увімкнено.</target> | 7983 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> увімкнено.</target> |
7965 | 7984 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7966 | 7985 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group> | |
7967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 7986 | </trans-unit> |
7968 | <trans-unit id="7246356397085094208" datatype="html"> | 7987 | <trans-unit id="7246356397085094208" datatype="html"> |
7969 | <source>Instance <x id="PH"/> unmuted.</source> | 7988 | <source>Instance <x id="PH"/> unmuted.</source> |
7970 | <target state="translated">Сервер <x id="PH"/> увімкнено.</target> | 7989 | <target state="translated">Сервер <x id="PH"/> увімкнено.</target> |
7971 | 7990 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> | |
7972 | 7991 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group> | |
7973 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">176</context></context-group></trans-unit> | 7992 | </trans-unit> |
7974 | <trans-unit id="5551551295632950210" datatype="html"> | 7993 | <trans-unit id="5551551295632950210" datatype="html"> |
7975 | <source>Videos history is enabled</source> | 7994 | <source>Videos history is enabled</source> |
7976 | <target state="translated">ІÑторію відео увімкнено</target> | 7995 | <target state="translated">ІÑторію відео увімкнено</target> |
@@ -8008,8 +8027,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> | 8027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">13</context></context-group> |
8009 | </trans-unit> | 8028 | </trans-unit> |
8010 | <trans-unit id="778524577866863576" datatype="html"> | 8029 | <trans-unit id="778524577866863576" datatype="html"> |
8011 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> | 8030 | <source><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> Clear all history </source> |
8012 | <target state="translated"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> ОчиÑтити Ñ–Ñторію </target> | 8031 | <target state="translated"><x id="START_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="<my-global-icon iconName="delete" aria-hidden="true">"/><x id="CLOSE_TAG_MY_GLOBAL_ICON" ctype="x-my_global_icon" equiv-text="</my-global-icon>"/> ОчиÑтити Ñ–Ñторію </target> |
8013 | <context-group purpose="location"> | 8032 | <context-group purpose="location"> |
8014 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 8033 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
8015 | <context context-type="linenumber">17,19</context> | 8034 | <context context-type="linenumber">17,19</context> |
@@ -8031,8 +8050,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | 8050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> |
8032 | </trans-unit> | 8051 | </trans-unit> |
8033 | <trans-unit id="8553059323353586765" datatype="html"> | 8052 | <trans-unit id="8553059323353586765" datatype="html"> |
8034 | <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>"/>. It is never shown to the public. </source> | 8053 | <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>"/>. It is never shown to the public. </source> |
8035 | <target state="translated">Ваша поточна електронна адреÑа <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>"/>. Вона ніколи не показуєтьÑÑ Ð½Ð° загал. </target> | 8054 | <target state="translated">Ваша поточна електронна адреÑа <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>"/>. Вона ніколи не показуєтьÑÑ Ð½Ð° загал. </target> |
8036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> | 8055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">4</context></context-group> |
8037 | </trans-unit> | 8056 | </trans-unit> |
8038 | <trans-unit id="853586874765134886" datatype="html"> | 8057 | <trans-unit id="853586874765134886" datatype="html"> |
@@ -8446,9 +8465,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8446 | <trans-unit id="4844578664427956129" datatype="html"> | 8465 | <trans-unit id="4844578664427956129" datatype="html"> |
8447 | <source>Change ownership</source> | 8466 | <source>Change ownership</source> |
8448 | <target state="translated">Змінити влаÑника</target> | 8467 | <target state="translated">Змінити влаÑника</target> |
8449 | 8468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
8450 | 8469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">220</context></context-group> | |
8451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 8470 | </trans-unit> |
8452 | <trans-unit id="3380608219513805292" datatype="html"> | 8471 | <trans-unit id="3380608219513805292" datatype="html"> |
8453 | <source>Playlist <x id="PH"/> deleted.</source> | 8472 | <source>Playlist <x id="PH"/> deleted.</source> |
8454 | <target state="translated">Добірку <x id="PH"/> видалено.</target> | 8473 | <target state="translated">Добірку <x id="PH"/> видалено.</target> |
@@ -8483,18 +8502,20 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8483 | <trans-unit id="2027805873922338635" datatype="html"> | 8502 | <trans-unit id="2027805873922338635" datatype="html"> |
8484 | <source>Do you really want to delete <x id="PH"/>? </source> | 8503 | <source>Do you really want to delete <x id="PH"/>? </source> |
8485 | <target state="translated">Справді хочете видалити <x id="PH"/>? </target> | 8504 | <target state="translated">Справді хочете видалити <x id="PH"/>? </target> |
8486 | 8505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8487 | 8506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group> | |
8488 | 8507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group> | |
8489 | 8508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
8490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 8509 | </trans-unit> |
8491 | <trans-unit id="2767660806989176400" datatype="html"> | 8510 | <trans-unit id="2767660806989176400" datatype="html"> |
8492 | <source>Video <x id="PH"/> deleted.</source> | 8511 | <source>Video <x id="PH"/> deleted.</source> |
8493 | <target state="translated">Відео <x id="PH"/> видалено.</target> | 8512 | <target state="translated">Відео <x id="PH"/> видалено.</target> |
8494 | 8513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group> | |
8495 | 8514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group> | |
8496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">185</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">237</context></context-group></trans-unit><trans-unit id="3742657416068781599" datatype="html"> | 8515 | </trans-unit> |
8497 | <source>Editor</source><target state="new">Editor</target> | 8516 | <trans-unit id="3742657416068781599" datatype="html"> |
8517 | <source>Editor</source> | ||
8518 | <target state="new">Editor</target> | ||
8498 | <context-group purpose="location"> | 8519 | <context-group purpose="location"> |
8499 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> | 8520 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> |
8500 | <context context-type="linenumber">208</context> | 8521 | <context context-type="linenumber">208</context> |
@@ -8628,122 +8649,162 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8628 | <source>PLAYLISTS</source> | 8649 | <source>PLAYLISTS</source> |
8629 | <target state="translated">ДОБІРКИ</target> | 8650 | <target state="translated">ДОБІРКИ</target> |
8630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group> | 8651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group> |
8631 | </trans-unit><trans-unit id="3862497674553063473" datatype="html"> | 8652 | </trans-unit> |
8632 | <source>Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></source><target state="new">Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></target> | 8653 | <trans-unit id="3862497674553063473" datatype="html"> |
8654 | <source>Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></source> | ||
8655 | <target state="new">Edit <x id="INTERPOLATION" equiv-text="{{ video.name }}"/></target> | ||
8633 | <context-group purpose="location"> | 8656 | <context-group purpose="location"> |
8634 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8657 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8635 | <context context-type="linenumber">2</context> | 8658 | <context context-type="linenumber">2</context> |
8636 | </context-group> | 8659 | </context-group> |
8637 | </trans-unit><trans-unit id="5470809226184152498" datatype="html"> | 8660 | </trans-unit> |
8638 | <source>CUT VIDEO</source><target state="new">CUT VIDEO</target> | 8661 | <trans-unit id="5470809226184152498" datatype="html"> |
8662 | <source>CUT VIDEO</source> | ||
8663 | <target state="new">CUT VIDEO</target> | ||
8639 | <context-group purpose="location"> | 8664 | <context-group purpose="location"> |
8640 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8665 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8641 | <context context-type="linenumber">8</context> | 8666 | <context context-type="linenumber">8</context> |
8642 | </context-group> | 8667 | </context-group> |
8643 | </trans-unit><trans-unit id="5639348768609905535" datatype="html"> | 8668 | </trans-unit> |
8644 | <source>Set a new start/end.</source><target state="new">Set a new start/end.</target> | 8669 | <trans-unit id="5639348768609905535" datatype="html"> |
8670 | <source>Set a new start/end.</source> | ||
8671 | <target state="new">Set a new start/end.</target> | ||
8645 | <context-group purpose="location"> | 8672 | <context-group purpose="location"> |
8646 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8673 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8647 | <context context-type="linenumber">10</context> | 8674 | <context context-type="linenumber">10</context> |
8648 | </context-group> | 8675 | </context-group> |
8649 | </trans-unit><trans-unit id="783359429228696335" datatype="html"> | 8676 | </trans-unit> |
8650 | <source>New start</source><target state="new">New start</target> | 8677 | <trans-unit id="783359429228696335" datatype="html"> |
8678 | <source>New start</source> | ||
8679 | <target state="new">New start</target> | ||
8651 | <context-group purpose="location"> | 8680 | <context-group purpose="location"> |
8652 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8681 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8653 | <context context-type="linenumber">13</context> | 8682 | <context context-type="linenumber">13</context> |
8654 | </context-group> | 8683 | </context-group> |
8655 | </trans-unit><trans-unit id="8910806821370505981" datatype="html"> | 8684 | </trans-unit> |
8656 | <source>New end</source><target state="new">New end</target> | 8685 | <trans-unit id="8910806821370505981" datatype="html"> |
8686 | <source>New end</source> | ||
8687 | <target state="new">New end</target> | ||
8657 | <context-group purpose="location"> | 8688 | <context-group purpose="location"> |
8658 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8689 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8659 | <context context-type="linenumber">18</context> | 8690 | <context context-type="linenumber">18</context> |
8660 | </context-group> | 8691 | </context-group> |
8661 | </trans-unit><trans-unit id="2502254344085150809" datatype="html"> | 8692 | </trans-unit> |
8662 | <source>ADD INTRO</source><target state="new">ADD INTRO</target> | 8693 | <trans-unit id="2502254344085150809" datatype="html"> |
8694 | <source>ADD INTRO</source> | ||
8695 | <target state="new">ADD INTRO</target> | ||
8663 | <context-group purpose="location"> | 8696 | <context-group purpose="location"> |
8664 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8697 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8665 | <context context-type="linenumber">24</context> | 8698 | <context context-type="linenumber">24</context> |
8666 | </context-group> | 8699 | </context-group> |
8667 | </trans-unit><trans-unit id="5030063045826839645" datatype="html"> | 8700 | </trans-unit> |
8668 | <source>Concatenate a file at the beginning of the video.</source><target state="new">Concatenate a file at the beginning of the video.</target> | 8701 | <trans-unit id="5030063045826839645" datatype="html"> |
8702 | <source>Concatenate a file at the beginning of the video.</source> | ||
8703 | <target state="new">Concatenate a file at the beginning of the video.</target> | ||
8669 | <context-group purpose="location"> | 8704 | <context-group purpose="location"> |
8670 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8705 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8671 | <context context-type="linenumber">26</context> | 8706 | <context context-type="linenumber">26</context> |
8672 | </context-group> | 8707 | </context-group> |
8673 | </trans-unit><trans-unit id="4798642303989337390" datatype="html"> | 8708 | </trans-unit> |
8674 | <source>Select the intro video file</source><target state="new">Select the intro video file</target> | 8709 | <trans-unit id="4798642303989337390" datatype="html"> |
8710 | <source>Select the intro video file</source> | ||
8711 | <target state="new">Select the intro video file</target> | ||
8675 | <context-group purpose="location"> | 8712 | <context-group purpose="location"> |
8676 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8713 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8677 | <context context-type="linenumber">30</context> | 8714 | <context context-type="linenumber">30</context> |
8678 | </context-group> | 8715 | </context-group> |
8679 | </trans-unit><trans-unit id="7698413240170540435" datatype="html"> | 8716 | </trans-unit> |
8680 | <source>ADD OUTRO</source><target state="new">ADD OUTRO</target> | 8717 | <trans-unit id="7698413240170540435" datatype="html"> |
8718 | <source>ADD OUTRO</source> | ||
8719 | <target state="new">ADD OUTRO</target> | ||
8681 | <context-group purpose="location"> | 8720 | <context-group purpose="location"> |
8682 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8721 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8683 | <context context-type="linenumber">38</context> | 8722 | <context context-type="linenumber">38</context> |
8684 | </context-group> | 8723 | </context-group> |
8685 | </trans-unit><trans-unit id="2832051749922509643" datatype="html"> | 8724 | </trans-unit> |
8686 | <source>Concatenate a file at the end of the video.</source><target state="new">Concatenate a file at the end of the video.</target> | 8725 | <trans-unit id="2832051749922509643" datatype="html"> |
8726 | <source>Concatenate a file at the end of the video.</source> | ||
8727 | <target state="new">Concatenate a file at the end of the video.</target> | ||
8687 | <context-group purpose="location"> | 8728 | <context-group purpose="location"> |
8688 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8729 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8689 | <context context-type="linenumber">40</context> | 8730 | <context context-type="linenumber">40</context> |
8690 | </context-group> | 8731 | </context-group> |
8691 | </trans-unit><trans-unit id="4368653199478595315" datatype="html"> | 8732 | </trans-unit> |
8692 | <source>Select the outro video file</source><target state="new">Select the outro video file</target> | 8733 | <trans-unit id="4368653199478595315" datatype="html"> |
8734 | <source>Select the outro video file</source> | ||
8735 | <target state="new">Select the outro video file</target> | ||
8693 | <context-group purpose="location"> | 8736 | <context-group purpose="location"> |
8694 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8737 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8695 | <context context-type="linenumber">44</context> | 8738 | <context context-type="linenumber">44</context> |
8696 | </context-group> | 8739 | </context-group> |
8697 | </trans-unit><trans-unit id="3463158361655332380" datatype="html"> | 8740 | </trans-unit> |
8698 | <source>ADD WATERMARK</source><target state="new">ADD WATERMARK</target> | 8741 | <trans-unit id="3463158361655332380" datatype="html"> |
8742 | <source>ADD WATERMARK</source> | ||
8743 | <target state="new">ADD WATERMARK</target> | ||
8699 | <context-group purpose="location"> | 8744 | <context-group purpose="location"> |
8700 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8745 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8701 | <context context-type="linenumber">52</context> | 8746 | <context context-type="linenumber">52</context> |
8702 | </context-group> | 8747 | </context-group> |
8703 | </trans-unit><trans-unit id="4472450670859114703" datatype="html"> | 8748 | </trans-unit> |
8704 | <source>Add a watermark image to the video.</source><target state="new">Add a watermark image to the video.</target> | 8749 | <trans-unit id="4472450670859114703" datatype="html"> |
8750 | <source>Add a watermark image to the video.</source> | ||
8751 | <target state="new">Add a watermark image to the video.</target> | ||
8705 | <context-group purpose="location"> | 8752 | <context-group purpose="location"> |
8706 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8753 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8707 | <context context-type="linenumber">54</context> | 8754 | <context context-type="linenumber">54</context> |
8708 | </context-group> | 8755 | </context-group> |
8709 | </trans-unit><trans-unit id="155510305759087510" datatype="html"> | 8756 | </trans-unit> |
8710 | <source>Select watermark image file</source><target state="new">Select watermark image file</target> | 8757 | <trans-unit id="155510305759087510" datatype="html"> |
8758 | <source>Select watermark image file</source> | ||
8759 | <target state="new">Select watermark image file</target> | ||
8711 | <context-group purpose="location"> | 8760 | <context-group purpose="location"> |
8712 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8761 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8713 | <context context-type="linenumber">58</context> | 8762 | <context context-type="linenumber">58</context> |
8714 | </context-group> | 8763 | </context-group> |
8715 | </trans-unit><trans-unit id="3926035808219061063" datatype="html"> | 8764 | </trans-unit> |
8716 | <source>Run video edition</source><target state="new">Run video edition</target> | 8765 | <trans-unit id="3926035808219061063" datatype="html"> |
8766 | <source>Run video edition</source> | ||
8767 | <target state="new">Run video edition</target> | ||
8717 | <context-group purpose="location"> | 8768 | <context-group purpose="location"> |
8718 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8769 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8719 | <context context-type="linenumber">66</context> | 8770 | <context context-type="linenumber">66</context> |
8720 | </context-group> | 8771 | </context-group> |
8721 | </trans-unit><trans-unit id="1514792472513458403" datatype="html"> | 8772 | </trans-unit> |
8722 | <source>Video before edition</source><target state="new">Video before edition</target> | 8773 | <trans-unit id="1514792472513458403" datatype="html"> |
8774 | <source>Video before edition</source> | ||
8775 | <target state="new">Video before edition</target> | ||
8723 | <context-group purpose="location"> | 8776 | <context-group purpose="location"> |
8724 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8777 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8725 | <context context-type="linenumber">75</context> | 8778 | <context context-type="linenumber">75</context> |
8726 | </context-group> | 8779 | </context-group> |
8727 | </trans-unit><trans-unit id="1109043661443571733" datatype="html"> | 8780 | </trans-unit> |
8728 | <source>Edition tasks:</source><target state="new">Edition tasks:</target> | 8781 | <trans-unit id="1109043661443571733" datatype="html"> |
8782 | <source>Edition tasks:</source> | ||
8783 | <target state="new">Edition tasks:</target> | ||
8729 | <context-group purpose="location"> | 8784 | <context-group purpose="location"> |
8730 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> | 8785 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.html</context> |
8731 | <context context-type="linenumber">80</context> | 8786 | <context context-type="linenumber">80</context> |
8732 | </context-group> | 8787 | </context-group> |
8733 | </trans-unit><trans-unit id="3541115907775840269" datatype="html"> | 8788 | </trans-unit> |
8734 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source><target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | 8789 | <trans-unit id="3541115907775840269" datatype="html"> |
8790 | <source>Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</source> | ||
8791 | <target state="new">Are you sure you want to edit "<x id="PH" equiv-text="this.video.name"/>"?</target> | ||
8735 | <context-group purpose="location"> | 8792 | <context-group purpose="location"> |
8736 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8793 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8737 | <context context-type="linenumber">72</context> | 8794 | <context context-type="linenumber">72</context> |
8738 | </context-group> | 8795 | </context-group> |
8739 | </trans-unit><trans-unit id="3858880927114551513" datatype="html"> | 8796 | </trans-unit> |
8740 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source><target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | 8797 | <trans-unit id="3858880927114551513" datatype="html"> |
8798 | <source>The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></source> | ||
8799 | <target state="new">The current video will be overwritten by this edited video and <strong>you won't be able to recover it</strong>.<br /><br /></target> | ||
8741 | <context-group purpose="location"> | 8800 | <context-group purpose="location"> |
8742 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8801 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8743 | <context context-type="linenumber">76</context> | 8802 | <context context-type="linenumber">76</context> |
8744 | </context-group> | 8803 | </context-group> |
8745 | </trans-unit><trans-unit id="4876327655498234453" datatype="html"> | 8804 | </trans-unit> |
8746 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source><target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | 8805 | <trans-unit id="4876327655498234453" datatype="html"> |
8806 | <source>As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></source> | ||
8807 | <target state="new">As a reminder, the following tasks will be executed: <ol><x id="PH" equiv-text="listHTML"/></ol></target> | ||
8747 | <context-group purpose="location"> | 8808 | <context-group purpose="location"> |
8748 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 8809 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
8749 | <context context-type="linenumber">77</context> | 8810 | <context context-type="linenumber">77</context> |
@@ -8805,8 +8866,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8805 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> | 8866 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group> |
8806 | </trans-unit> | 8867 | </trans-unit> |
8807 | <trans-unit id="2013324644839511073" datatype="html"> | 8868 | <trans-unit id="2013324644839511073" datatype="html"> |
8808 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. | 8869 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8809 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
8810 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 8870 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. |
8811 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | 8871 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
8812 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> | 8872 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group> |
@@ -8905,41 +8965,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8905 | <trans-unit id="6048892649018070225" datatype="html"> | 8965 | <trans-unit id="6048892649018070225" datatype="html"> |
8906 | <source>Today</source> | 8966 | <source>Today</source> |
8907 | <target state="translated">Сьогодні</target> | 8967 | <target state="translated">Сьогодні</target> |
8908 | 8968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group> | |
8909 | 8969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group> | |
8910 | 8970 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group> | |
8911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 8971 | </trans-unit> |
8912 | <trans-unit id="4498682414491138092" datatype="html"> | 8972 | <trans-unit id="4498682414491138092" datatype="html"> |
8913 | <source>Yesterday</source> | 8973 | <source>Yesterday</source> |
8914 | <target state="translated">Учора</target> | 8974 | <target state="translated">Учора</target> |
8915 | 8975 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group> | |
8916 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 8976 | </trans-unit> |
8917 | <trans-unit id="5073473933031004097" datatype="html"> | 8977 | <trans-unit id="5073473933031004097" datatype="html"> |
8918 | <source>This week</source> | 8978 | <source>This week</source> |
8919 | <target state="translated">Цього тижнÑ</target> | 8979 | <target state="translated">Цього тижнÑ</target> |
8920 | 8980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group> | |
8921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 8981 | </trans-unit> |
8922 | <trans-unit id="842657237693374355" datatype="html"> | 8982 | <trans-unit id="842657237693374355" datatype="html"> |
8923 | <source>This month</source> | 8983 | <source>This month</source> |
8924 | <target state="translated">Цього міÑÑцÑ</target> | 8984 | <target state="translated">Цього міÑÑцÑ</target> |
8925 | 8985 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8926 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> | 8986 | </trans-unit> |
8927 | <trans-unit id="4463380307954693363" datatype="html"> | 8987 | <trans-unit id="4463380307954693363" datatype="html"> |
8928 | <source>Last month</source> | 8988 | <source>Last month</source> |
8929 | <target state="translated">Минулого міÑÑцÑ</target> | 8989 | <target state="translated">Минулого міÑÑцÑ</target> |
8930 | 8990 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group> | |
8931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">138</context></context-group></trans-unit> | 8991 | </trans-unit> |
8932 | <trans-unit id="7473676707373218484" datatype="html"> | 8992 | <trans-unit id="7473676707373218484" datatype="html"> |
8933 | <source>Older</source> | 8993 | <source>Older</source> |
8934 | <target state="translated">Давніше</target> | 8994 | <target state="translated">Давніше</target> |
8935 | 8995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group> | |
8936 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 8996 | </trans-unit> |
8937 | <trans-unit id="5036991421517255667" datatype="html"> | 8997 | <trans-unit id="5036991421517255667" datatype="html"> |
8938 | <source>Cannot load more videos. Try again later.</source> | 8998 | <source>Cannot load more videos. Try again later.</source> |
8939 | <target state="translated">Ðеможливо завантажити більше відео. Повторіть Ñпробу пізніше.</target> | 8999 | <target state="translated">Ðеможливо завантажити більше відео. Повторіть Ñпробу пізніше.</target> |
8940 | 9000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group> | |
8941 | 9001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">246</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 9002 | </trans-unit> |
8943 | <trans-unit id="4873149362496451858" datatype="html"> | 9003 | <trans-unit id="4873149362496451858" datatype="html"> |
8944 | <source>Last 7 days</source> | 9004 | <source>Last 7 days</source> |
8945 | <target state="translated">ОÑтанні 7 днів</target> | 9005 | <target state="translated">ОÑтанні 7 днів</target> |
@@ -8980,8 +9040,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> | 9040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group> |
8981 | </trans-unit> | 9041 | </trans-unit> |
8982 | <trans-unit id="6613870447286561244" datatype="html"> | 9042 | <trans-unit id="6613870447286561244" datatype="html"> |
8983 | <source>Long (> 10 min)</source> | 9043 | <source>Long (> 10 min)</source> |
8984 | <target state="translated">Довгі (> 10 хв)</target> | 9044 | <target state="translated">Довгі (> 10 хв)</target> |
8985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> | 9045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group> |
8986 | </trans-unit> | 9046 | </trans-unit> |
8987 | <trans-unit id="1787083504545967" datatype="html"> | 9047 | <trans-unit id="1787083504545967" datatype="html"> |
@@ -9608,8 +9668,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9608 | <source>Video caption file is required.</source> | 9668 | <source>Video caption file is required.</source> |
9609 | <target state="new">Video caption file is required.</target> | 9669 | <target state="new">Video caption file is required.</target> |
9610 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> | 9670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> |
9611 | </trans-unit><trans-unit id="9145435275110757909" datatype="html"> | 9671 | </trans-unit> |
9612 | <source>Caption content is required.</source><target state="new">Caption content is required.</target> | 9672 | <trans-unit id="9145435275110757909" datatype="html"> |
9673 | <source>Caption content is required.</source> | ||
9674 | <target state="new">Caption content is required.</target> | ||
9613 | <context-group purpose="location"> | 9675 | <context-group purpose="location"> |
9614 | <context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context> | 9676 | <context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context> |
9615 | <context context-type="linenumber">21</context> | 9677 | <context context-type="linenumber">21</context> |
@@ -9656,8 +9718,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> | 9718 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">48</context></context-group> |
9657 | </trans-unit> | 9719 | </trans-unit> |
9658 | <trans-unit id="5637879201055173642" datatype="html"> | 9720 | <trans-unit id="5637879201055173642" datatype="html"> |
9659 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> | 9721 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
9660 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. | 9722 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. |
9661 | </target> | 9723 | </target> |
9662 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> | 9724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context><context context-type="linenumber">1</context></context-group> |
9663 | </trans-unit> | 9725 | </trans-unit> |
@@ -9707,47 +9769,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9707 | <trans-unit id="7220386604464537651" datatype="html"> | 9769 | <trans-unit id="7220386604464537651" datatype="html"> |
9708 | <source>Live RTMP Url</source> | 9770 | <source>Live RTMP Url</source> |
9709 | <target state="new">Live RTMP Url</target> | 9771 | <target state="new">Live RTMP Url</target> |
9710 | 9772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">245</context></context-group> | |
9711 | 9773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group> | |
9712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">245</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 9774 | </trans-unit> |
9713 | <trans-unit id="4956017863340142734" datatype="html"> | 9775 | <trans-unit id="4956017863340142734" datatype="html"> |
9714 | <source>Live RTMPS Url</source> | 9776 | <source>Live RTMPS Url</source> |
9715 | <target state="new">Live RTMPS Url</target> | 9777 | <target state="new">Live RTMPS Url</target> |
9716 | 9778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group> | |
9717 | 9779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group> | |
9718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 9780 | </trans-unit> |
9719 | <trans-unit id="1225050607125362052" datatype="html"> | 9781 | <trans-unit id="1225050607125362052" datatype="html"> |
9720 | <source>Live stream key</source> | 9782 | <source>Live stream key</source> |
9721 | <target state="new">Live stream key</target> | 9783 | <target state="new">Live stream key</target> |
9722 | 9784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">255</context></context-group> | |
9723 | 9785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group> | |
9724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">255</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 9786 | </trans-unit> |
9725 | <trans-unit id="5058286083557987083" datatype="html"> | 9787 | <trans-unit id="5058286083557987083" datatype="html"> |
9726 | <source>âš ï¸ Never share your stream key with anyone.</source> | 9788 | <source>âš ï¸ Never share your stream key with anyone.</source> |
9727 | <target state="new">âš ï¸ Never share your stream key with anyone.</target> | 9789 | <target state="new">âš ï¸ Never share your stream key with anyone.</target> |
9728 | 9790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">258</context></context-group> | |
9729 | 9791 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group> | |
9730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">258</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 9792 | </trans-unit> |
9731 | <trans-unit id="5941639683192662500" datatype="html"> | 9793 | <trans-unit id="5941639683192662500" datatype="html"> |
9732 | <source>This is a normal live</source> | 9794 | <source>This is a normal live</source> |
9733 | <target state="new">This is a normal live</target> | 9795 | <target state="new">This is a normal live</target> |
9734 | 9796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">264</context></context-group> | |
9735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">264</context></context-group></trans-unit> | 9797 | </trans-unit> |
9736 | <trans-unit id="7263323611663811322" datatype="html"> | 9798 | <trans-unit id="7263323611663811322" datatype="html"> |
9737 | <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source> | 9799 | <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source> |
9738 | <target state="new"> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </target> | 9800 | <target state="new"> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </target> |
9739 | 9801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">266</context></context-group> | |
9740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">266</context></context-group></trans-unit> | 9802 | </trans-unit> |
9741 | <trans-unit id="2261925229535541622" datatype="html"> | 9803 | <trans-unit id="2261925229535541622" datatype="html"> |
9742 | <source>This is a permanent/recurring live</source> | 9804 | <source>This is a permanent/recurring live</source> |
9743 | <target state="new">This is a permanent/recurring live</target> | 9805 | <target state="new">This is a permanent/recurring live</target> |
9744 | 9806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">273</context></context-group> | |
9745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">273</context></context-group></trans-unit> | 9807 | </trans-unit> |
9746 | <trans-unit id="6791299537270100091" datatype="html"> | 9808 | <trans-unit id="6791299537270100091" datatype="html"> |
9747 | <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source> | 9809 | <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source> |
9748 | <target state="new"> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </target> | 9810 | <target state="new"> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </target> |
9749 | 9811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">275</context></context-group> | |
9750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">275</context></context-group></trans-unit> | 9812 | </trans-unit> |
9751 | <trans-unit id="3112273530390098557" datatype="html"> | 9813 | <trans-unit id="3112273530390098557" datatype="html"> |
9752 | <source>Replay will be saved</source> | 9814 | <source>Replay will be saved</source> |
9753 | <target state="translated">Повтор буде збережено</target> | 9815 | <target state="translated">Повтор буде збережено</target> |
@@ -10244,14 +10306,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10244 | <trans-unit id="2830831449226931729" datatype="html"> | 10306 | <trans-unit id="2830831449226931729" datatype="html"> |
10245 | <source>Instance languages</source> | 10307 | <source>Instance languages</source> |
10246 | <target state="translated">Мови Ñервера</target> | 10308 | <target state="translated">Мови Ñервера</target> |
10247 | 10309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">193</context></context-group> | |
10248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> | 10310 | </trans-unit> |
10249 | <trans-unit id="40119547597591062" datatype="html"> | 10311 | <trans-unit id="40119547597591062" datatype="html"> |
10250 | <source>All languages</source> | 10312 | <source>All languages</source> |
10251 | <target state="translated">УÑÑ– мови</target> | 10313 | <target state="translated">УÑÑ– мови</target> |
10252 | 10314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">194</context></context-group> | |
10253 | 10315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group> | |
10254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">194</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 10316 | </trans-unit> |
10255 | <trans-unit id="996392855508119363" datatype="html"> | 10317 | <trans-unit id="996392855508119363" datatype="html"> |
10256 | <source>Hidden</source> | 10318 | <source>Hidden</source> |
10257 | <target state="translated">Сховані</target> | 10319 | <target state="translated">Сховані</target> |
@@ -10341,20 +10403,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10341 | <trans-unit id="5708680277917691451" datatype="html"> | 10403 | <trans-unit id="5708680277917691451" datatype="html"> |
10342 | <source><x id="PH"/> users banned. </source> | 10404 | <source><x id="PH"/> users banned. </source> |
10343 | <target state="translated"><x id="PH"/> кориÑтувачів заблоковано. </target> | 10405 | <target state="translated"><x id="PH"/> кориÑтувачів заблоковано. </target> |
10344 | 10406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">67</context></context-group> | |
10345 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 10407 | </trans-unit> |
10346 | <trans-unit id="2448281151916042849" datatype="html"> | 10408 | <trans-unit id="2448281151916042849" datatype="html"> |
10347 | <source>User <x id="PH"/> banned.</source> | 10409 | <source>User <x id="PH"/> banned.</source> |
10348 | <target state="translated">КориÑтувача <x id="PH"/> заблоковано.</target> | 10410 | <target state="translated">КориÑтувача <x id="PH"/> заблоковано.</target> |
10349 | 10411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group> | |
10350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">68</context></context-group></trans-unit><trans-unit id="3160979325245958752" datatype="html"> | 10412 | </trans-unit> |
10351 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source><target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | 10413 | <trans-unit id="3160979325245958752" datatype="html"> |
10414 | <source>Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</source> | ||
10415 | <target state="new">Ban <x id="PH" equiv-text="this.usersToBan.length"/> users</target> | ||
10352 | <context-group purpose="location"> | 10416 | <context-group purpose="location"> |
10353 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10417 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10354 | <context context-type="linenumber">82</context> | 10418 | <context context-type="linenumber">82</context> |
10355 | </context-group> | 10419 | </context-group> |
10356 | </trans-unit><trans-unit id="8088707210191809175" datatype="html"> | 10420 | </trans-unit> |
10357 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source><target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | 10421 | <trans-unit id="8088707210191809175" datatype="html"> |
10422 | <source>Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</source> | ||
10423 | <target state="new">Ban "<x id="PH" equiv-text="this.usersToBan.username"/>"</target> | ||
10358 | <context-group purpose="location"> | 10424 | <context-group purpose="location"> |
10359 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> | 10425 | <context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context> |
10360 | <context context-type="linenumber">84</context> | 10426 | <context context-type="linenumber">84</context> |
@@ -10363,52 +10429,52 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10363 | <trans-unit id="8269144351796756896" datatype="html"> | 10429 | <trans-unit id="8269144351796756896" datatype="html"> |
10364 | <source>Do you really want to unban <x id="PH"/>?</source> | 10430 | <source>Do you really want to unban <x id="PH"/>?</source> |
10365 | <target state="translated">Справді розблокувати <x id="PH"/>?</target> | 10431 | <target state="translated">Справді розблокувати <x id="PH"/>?</target> |
10366 | 10432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group> | |
10367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 10433 | </trans-unit> |
10368 | <trans-unit id="1794219875546376069" datatype="html"> | 10434 | <trans-unit id="1794219875546376069" datatype="html"> |
10369 | <source>User <x id="PH"/> unbanned.</source> | 10435 | <source>User <x id="PH"/> unbanned.</source> |
10370 | <target state="translated">КориÑтувача <x id="PH"/> розблоковано.</target> | 10436 | <target state="translated">КориÑтувача <x id="PH"/> розблоковано.</target> |
10371 | 10437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group> | |
10372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 10438 | </trans-unit> |
10373 | <trans-unit id="9208009623124569456" datatype="html"> | 10439 | <trans-unit id="9208009623124569456" datatype="html"> |
10374 | <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source> | 10440 | <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source> |
10375 | <target state="translated">Якщо ви вилучите кориÑтувача <x id="PH" equiv-text="user.username"/>, ви не зможете Ñтворити іншого кориÑтувача з таким же іменем!</target> | 10441 | <target state="translated">Якщо ви вилучите кориÑтувача <x id="PH" equiv-text="user.username"/>, ви не зможете Ñтворити іншого кориÑтувача з таким же іменем!</target> |
10376 | 10442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">103</context></context-group> | |
10377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 10443 | </trans-unit> |
10378 | <trans-unit id="6307826440781941134" datatype="html"> | 10444 | <trans-unit id="6307826440781941134" datatype="html"> |
10379 | <source>Delete <x id="PH" equiv-text="user.username"/></source> | 10445 | <source>Delete <x id="PH" equiv-text="user.username"/></source> |
10380 | <target state="translated">Видалити <x id="PH" equiv-text="user.username"/></target> | 10446 | <target state="translated">Видалити <x id="PH" equiv-text="user.username"/></target> |
10381 | 10447 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group> | |
10382 | 10448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group> | |
10383 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> | 10449 | </trans-unit> |
10384 | <trans-unit id="6301381219225831298" datatype="html"> | 10450 | <trans-unit id="6301381219225831298" datatype="html"> |
10385 | <source>User <x id="PH"/> deleted.</source> | 10451 | <source>User <x id="PH"/> deleted.</source> |
10386 | <target state="translated">КориÑтувача <x id="PH"/> видалено.</target> | 10452 | <target state="translated">КориÑтувача <x id="PH"/> видалено.</target> |
10387 | 10453 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group> | |
10388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 10454 | </trans-unit> |
10389 | <trans-unit id="3896582359861826661" datatype="html"> | 10455 | <trans-unit id="3896582359861826661" datatype="html"> |
10390 | <source>User <x id="PH"/> email set as verified</source> | 10456 | <source>User <x id="PH"/> email set as verified</source> |
10391 | <target state="translated">Електронну пошту кориÑтувача <x id="PH"/> вÑтановлено підтвердженою</target> | 10457 | <target state="translated">Електронну пошту кориÑтувача <x id="PH"/> вÑтановлено підтвердженою</target> |
10392 | 10458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group> | |
10393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 10459 | </trans-unit> |
10394 | <trans-unit id="8150022485860412528" datatype="html"> | 10460 | <trans-unit id="8150022485860412528" datatype="html"> |
10395 | <source>Account <x id="PH"/> muted.</source> | 10461 | <source>Account <x id="PH"/> muted.</source> |
10396 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> вимкнено.</target> | 10462 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> вимкнено.</target> |
10397 | 10463 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group> | |
10398 | 10464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> | |
10399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group></trans-unit> | 10465 | </trans-unit> |
10400 | <trans-unit id="1598375456114200087" datatype="html"> | 10466 | <trans-unit id="1598375456114200087" datatype="html"> |
10401 | <source>Instance <x id="PH"/> muted. </source> | 10467 | <source>Instance <x id="PH"/> muted. </source> |
10402 | <target state="translated">Сервер <x id="PH"/> вимкнено. </target> | 10468 | <target state="translated">Сервер <x id="PH"/> вимкнено. </target> |
10403 | 10469 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> | |
10404 | 10470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group> | |
10405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">162</context></context-group></trans-unit> | 10471 | </trans-unit> |
10406 | <trans-unit id="2558977494773636050" datatype="html"> | 10472 | <trans-unit id="2558977494773636050" datatype="html"> |
10407 | <source>Account <x id="PH"/> muted by the instance.</source> | 10473 | <source>Account <x id="PH"/> muted by the instance.</source> |
10408 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> вимкнено Ñервером.</target> | 10474 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> вимкнено Ñервером.</target> |
10409 | 10475 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group> | |
10410 | 10476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group> | |
10411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 10477 | </trans-unit> |
10412 | <trans-unit id="1595779426198793580" datatype="html"> | 10478 | <trans-unit id="1595779426198793580" datatype="html"> |
10413 | <source>Mute server</source> | 10479 | <source>Mute server</source> |
10414 | <target state="translated">Вимкнути Ñервер</target> | 10480 | <target state="translated">Вимкнути Ñервер</target> |
@@ -10432,156 +10498,156 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10432 | <trans-unit id="3085641638748358969" datatype="html"> | 10498 | <trans-unit id="3085641638748358969" datatype="html"> |
10433 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 10499 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
10434 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> увімкнено Ñервером.</target> | 10500 | <target state="translated">Обліковий Ð·Ð°Ð¿Ð¸Ñ <x id="PH"/> увімкнено Ñервером.</target> |
10435 | 10501 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group> | |
10436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">204</context></context-group></trans-unit> | 10502 | </trans-unit> |
10437 | <trans-unit id="4991892477258601737" datatype="html"> | 10503 | <trans-unit id="4991892477258601737" datatype="html"> |
10438 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10504 | <source>Instance <x id="PH"/> muted by the instance.</source> |
10439 | <target state="translated">Сервер <x id="PH"/> вимкнено Ñервером.</target> | 10505 | <target state="translated">Сервер <x id="PH"/> вимкнено Ñервером.</target> |
10440 | 10506 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group> | |
10441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">218</context></context-group></trans-unit> | 10507 | </trans-unit> |
10442 | <trans-unit id="4379430340167561220" datatype="html"> | 10508 | <trans-unit id="4379430340167561220" datatype="html"> |
10443 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10509 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
10444 | <target state="translated">Сервер <x id="PH"/> увімкнено Ñервером.</target> | 10510 | <target state="translated">Сервер <x id="PH"/> увімкнено Ñервером.</target> |
10445 | 10511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group> | |
10446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10512 | </trans-unit> |
10447 | <trans-unit id="8173437618471379044" datatype="html"> | 10513 | <trans-unit id="8173437618471379044" datatype="html"> |
10448 | <source>Are you sure you want to remove all the comments of this account?</source> | 10514 | <source>Are you sure you want to remove all the comments of this account?</source> |
10449 | <target state="translated">Ви впевнені, що хочете вилучити вÑÑ– коментарі цього облікового запиÑу?</target> | 10515 | <target state="translated">Ви впевнені, що хочете вилучити вÑÑ– коментарі цього облікового запиÑу?</target> |
10450 | 10516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">243</context></context-group> | |
10451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">243</context></context-group></trans-unit> | 10517 | </trans-unit> |
10452 | <trans-unit id="6315346579373254461" datatype="html"> | 10518 | <trans-unit id="6315346579373254461" datatype="html"> |
10453 | <source>Delete account comments</source> | 10519 | <source>Delete account comments</source> |
10454 | <target state="translated">Видалити коментарі облікового запиÑу</target> | 10520 | <target state="translated">Видалити коментарі облікового запиÑу</target> |
10455 | 10521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">244</context></context-group> | |
10456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> | 10522 | </trans-unit> |
10457 | <trans-unit id="8559170154828316298" datatype="html"> | 10523 | <trans-unit id="8559170154828316298" datatype="html"> |
10458 | <source>Will remove comments of this account (may take several minutes).</source> | 10524 | <source>Will remove comments of this account (may take several minutes).</source> |
10459 | <target state="translated">Вилучить коментарі цього облікового запиÑу (може тривати кілька хвилин).</target> | 10525 | <target state="translated">Вилучить коментарі цього облікового запиÑу (може тривати кілька хвилин).</target> |
10460 | 10526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">250</context></context-group> | |
10461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> | 10527 | </trans-unit> |
10462 | <trans-unit id="4268530178786707817" datatype="html"> | 10528 | <trans-unit id="4268530178786707817" datatype="html"> |
10463 | <source>My account moderation</source> | 10529 | <source>My account moderation</source> |
10464 | <target state="new">My account moderation</target> | 10530 | <target state="new">My account moderation</target> |
10465 | 10531 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> | |
10466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 10532 | </trans-unit> |
10467 | <trans-unit id="7187838764371214919" datatype="html"> | 10533 | <trans-unit id="7187838764371214919" datatype="html"> |
10468 | <source>Edit user</source> | 10534 | <source>Edit user</source> |
10469 | <target state="translated">Редагувати кориÑтувача</target> | 10535 | <target state="translated">Редагувати кориÑтувача</target> |
10470 | 10536 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group> | |
10471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit> | 10537 | </trans-unit> |
10472 | <trans-unit id="4728427543536046034" datatype="html"> | 10538 | <trans-unit id="4728427543536046034" datatype="html"> |
10473 | <source>Change quota, role, and more.</source> | 10539 | <source>Change quota, role, and more.</source> |
10474 | <target state="new">Change quota, role, and more.</target> | 10540 | <target state="new">Change quota, role, and more.</target> |
10475 | 10541 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group> | |
10476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 10542 | </trans-unit> |
10477 | <trans-unit id="7913022656086109932" datatype="html"> | 10543 | <trans-unit id="7913022656086109932" datatype="html"> |
10478 | <source>Delete user</source> | 10544 | <source>Delete user</source> |
10479 | <target state="translated">Видалити кориÑтувача</target> | 10545 | <target state="translated">Видалити кориÑтувача</target> |
10480 | 10546 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">344</context></context-group> | |
10481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 10547 | </trans-unit> |
10482 | <trans-unit id="7577876364431026966" datatype="html"> | 10548 | <trans-unit id="7577876364431026966" datatype="html"> |
10483 | <source>Unban user</source> | 10549 | <source>Unban user</source> |
10484 | <target state="translated">Розблокувати кориÑтувача</target> | 10550 | <target state="translated">Розблокувати кориÑтувача</target> |
10485 | 10551 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">356</context></context-group> | |
10486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">356</context></context-group></trans-unit> | 10552 | </trans-unit> |
10487 | <trans-unit id="3508163549683020253" datatype="html"> | 10553 | <trans-unit id="3508163549683020253" datatype="html"> |
10488 | <source>Allow the user to login and create videos/comments again</source> | 10554 | <source>Allow the user to login and create videos/comments again</source> |
10489 | <target state="new">Allow the user to login and create videos/comments again</target> | 10555 | <target state="new">Allow the user to login and create videos/comments again</target> |
10490 | 10556 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group> | |
10491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> | 10557 | </trans-unit> |
10492 | <trans-unit id="1888272455383898478" datatype="html"> | 10558 | <trans-unit id="1888272455383898478" datatype="html"> |
10493 | <source>Mute this account</source> | 10559 | <source>Mute this account</source> |
10494 | <target state="translated">Вимкнути цей обліковий запиÑ</target> | 10560 | <target state="translated">Вимкнути цей обліковий запиÑ</target> |
10495 | 10561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group> | |
10496 | 10562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group> | |
10497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">295</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 10563 | </trans-unit> |
10498 | <trans-unit id="2365286519320230773" datatype="html"> | 10564 | <trans-unit id="2365286519320230773" datatype="html"> |
10499 | <source>Hide any content from that user from you.</source> | 10565 | <source>Hide any content from that user from you.</source> |
10500 | <target state="new">Hide any content from that user from you.</target> | 10566 | <target state="new">Hide any content from that user from you.</target> |
10501 | 10567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
10502 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 10568 | </trans-unit> |
10503 | <trans-unit id="4043508901590508211" datatype="html"> | 10569 | <trans-unit id="4043508901590508211" datatype="html"> |
10504 | <source>Unmute this account</source> | 10570 | <source>Unmute this account</source> |
10505 | <target state="translated">Увімкнути цей обліковий запиÑ</target> | 10571 | <target state="translated">Увімкнути цей обліковий запиÑ</target> |
10506 | 10572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">301</context></context-group> | |
10507 | 10573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">379</context></context-group> | |
10508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">301</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 10574 | </trans-unit> |
10509 | <trans-unit id="2843593344827160627" datatype="html"> | 10575 | <trans-unit id="2843593344827160627" datatype="html"> |
10510 | <source>Show back content from that user for you.</source> | 10576 | <source>Show back content from that user for you.</source> |
10511 | <target state="new">Show back content from that user for you.</target> | 10577 | <target state="new">Show back content from that user for you.</target> |
10512 | 10578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | |
10513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit> | 10579 | </trans-unit> |
10514 | <trans-unit id="6198109035280957164" datatype="html"> | 10580 | <trans-unit id="6198109035280957164" datatype="html"> |
10515 | <source>Mute the instance</source> | 10581 | <source>Mute the instance</source> |
10516 | <target state="translated">Вимкнути цей Ñервер</target> | 10582 | <target state="translated">Вимкнути цей Ñервер</target> |
10517 | 10583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">307</context></context-group> | |
10518 | 10584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group> | |
10519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">307</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group></trans-unit> | 10585 | </trans-unit> |
10520 | <trans-unit id="4537735378779630558" datatype="html"> | 10586 | <trans-unit id="4537735378779630558" datatype="html"> |
10521 | <source>Hide any content from that instance for you.</source> | 10587 | <source>Hide any content from that instance for you.</source> |
10522 | <target state="new">Hide any content from that instance for you.</target> | 10588 | <target state="new">Hide any content from that instance for you.</target> |
10523 | 10589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
10524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group></trans-unit> | 10590 | </trans-unit> |
10525 | <trans-unit id="6247487021683085858" datatype="html"> | 10591 | <trans-unit id="6247487021683085858" datatype="html"> |
10526 | <source>Unmute the instance</source> | 10592 | <source>Unmute the instance</source> |
10527 | <target state="translated">Увімкнути цей Ñервер</target> | 10593 | <target state="translated">Увімкнути цей Ñервер</target> |
10528 | 10594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">313</context></context-group> | |
10529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">313</context></context-group></trans-unit> | 10595 | </trans-unit> |
10530 | <trans-unit id="4024846984475742259" datatype="html"> | 10596 | <trans-unit id="4024846984475742259" datatype="html"> |
10531 | <source>Show back content from that instance for you.</source> | 10597 | <source>Show back content from that instance for you.</source> |
10532 | <target state="new">Show back content from that instance for you.</target> | 10598 | <target state="new">Show back content from that instance for you.</target> |
10533 | 10599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> | |
10534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group></trans-unit> | 10600 | </trans-unit> |
10535 | <trans-unit id="3108200185023875257" datatype="html"> | 10601 | <trans-unit id="3108200185023875257" datatype="html"> |
10536 | <source>Remove comments from your videos</source> | 10602 | <source>Remove comments from your videos</source> |
10537 | <target state="new">Remove comments from your videos</target> | 10603 | <target state="new">Remove comments from your videos</target> |
10538 | 10604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">319</context></context-group> | |
10539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">319</context></context-group></trans-unit> | 10605 | </trans-unit> |
10540 | <trans-unit id="4810478487244286994" datatype="html"> | 10606 | <trans-unit id="4810478487244286994" datatype="html"> |
10541 | <source>Remove comments made by this account on your videos.</source> | 10607 | <source>Remove comments made by this account on your videos.</source> |
10542 | <target state="new">Remove comments made by this account on your videos.</target> | 10608 | <target state="new">Remove comments made by this account on your videos.</target> |
10543 | 10609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">320</context></context-group> | |
10544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">320</context></context-group></trans-unit> | 10610 | </trans-unit> |
10545 | <trans-unit id="2077144178298031252" datatype="html"> | 10611 | <trans-unit id="2077144178298031252" datatype="html"> |
10546 | <source>Hide any content from that user from you, your instance and its users.</source> | 10612 | <source>Hide any content from that user from you, your instance and its users.</source> |
10547 | <target state="new">Hide any content from that user from you, your instance and its users.</target> | 10613 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
10548 | 10614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">374</context></context-group> | |
10549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">374</context></context-group></trans-unit> | 10615 | </trans-unit> |
10550 | <trans-unit id="7675070596643104983" datatype="html"> | 10616 | <trans-unit id="7675070596643104983" datatype="html"> |
10551 | <source>Show this user's content to the users of this instance again.</source> | 10617 | <source>Show this user's content to the users of this instance again.</source> |
10552 | <target state="new">Show this user's content to the users of this instance again.</target> | 10618 | <target state="new">Show this user's content to the users of this instance again.</target> |
10553 | 10619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 10620 | </trans-unit> |
10555 | <trans-unit id="525915681688649453" datatype="html"> | 10621 | <trans-unit id="525915681688649453" datatype="html"> |
10556 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10622 | <source>Hide any content from that instance from you, your instance and its users.</source> |
10557 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> | 10623 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
10558 | 10624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | |
10559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 10625 | </trans-unit> |
10560 | <trans-unit id="5325628963747139770" datatype="html"> | 10626 | <trans-unit id="5325628963747139770" datatype="html"> |
10561 | <source>Unmute the instance by your instance</source> | 10627 | <source>Unmute the instance by your instance</source> |
10562 | <target state="new">Unmute the instance by your instance</target> | 10628 | <target state="new">Unmute the instance by your instance</target> |
10563 | 10629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">397</context></context-group> | |
10564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">397</context></context-group></trans-unit> | 10630 | </trans-unit> |
10565 | <trans-unit id="758471033841077314" datatype="html"> | 10631 | <trans-unit id="758471033841077314" datatype="html"> |
10566 | <source>Show back content from that instance for you, your instance and its users.</source> | 10632 | <source>Show back content from that instance for you, your instance and its users.</source> |
10567 | <target state="new">Show back content from that instance for you, your instance and its users.</target> | 10633 | <target state="new">Show back content from that instance for you, your instance and its users.</target> |
10568 | 10634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | |
10569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group></trans-unit> | 10635 | </trans-unit> |
10570 | <trans-unit id="3785095284194008197" datatype="html"> | 10636 | <trans-unit id="3785095284194008197" datatype="html"> |
10571 | <source>Remove comments from your instance</source> | 10637 | <source>Remove comments from your instance</source> |
10572 | <target state="translated">Вилучити коментарі з вашого Ñервера</target> | 10638 | <target state="translated">Вилучити коментарі з вашого Ñервера</target> |
10573 | 10639 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">408</context></context-group> | |
10574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">408</context></context-group></trans-unit> | 10640 | </trans-unit> |
10575 | <trans-unit id="4809327075591089709" datatype="html"> | 10641 | <trans-unit id="4809327075591089709" datatype="html"> |
10576 | <source>Remove comments made by this account from your instance.</source> | 10642 | <source>Remove comments made by this account from your instance.</source> |
10577 | <target state="new">Remove comments made by this account from your instance.</target> | 10643 | <target state="new">Remove comments made by this account from your instance.</target> |
10578 | 10644 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">409</context></context-group> | |
10579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">409</context></context-group></trans-unit> | 10645 | </trans-unit> |
10580 | <trans-unit id="6504240011224861621" datatype="html"> | 10646 | <trans-unit id="6504240011224861621" datatype="html"> |
10581 | <source>Instance moderation</source> | 10647 | <source>Instance moderation</source> |
10582 | <target state="translated">ÐœÐ¾Ð´ÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñервера</target> | 10648 | <target state="translated">ÐœÐ¾Ð´ÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñервера</target> |
10583 | 10649 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">418</context></context-group> | |
10584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10650 | </trans-unit> |
10585 | <trans-unit id="8546847443058492245" datatype="html"> | 10651 | <trans-unit id="8546847443058492245" datatype="html"> |
10586 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> | 10652 | <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> |
10587 | <target state="translated">Заблокувати <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> відео</target> | 10653 | <target state="translated">Заблокувати <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> відео</target> |
@@ -10872,77 +10938,77 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10872 | <trans-unit id="3099741642167775297" datatype="html"> | 10938 | <trans-unit id="3099741642167775297" datatype="html"> |
10873 | <source>Download</source> | 10939 | <source>Download</source> |
10874 | <target state="translated">Завантажити</target> | 10940 | <target state="translated">Завантажити</target> |
10875 | 10941 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group> | |
10876 | 10942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group> | |
10877 | 10943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group> | |
10878 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 10944 | </trans-unit> |
10879 | <trans-unit id="7672331870004528654" datatype="html"> | 10945 | <trans-unit id="7672331870004528654" datatype="html"> |
10880 | <source>Display live information</source> | 10946 | <source>Display live information</source> |
10881 | <target state="new">Display live information</target> | 10947 | <target state="new">Display live information</target> |
10882 | 10948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group> | |
10883 | 10949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">330</context></context-group> | |
10884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">330</context></context-group></trans-unit> | 10950 | </trans-unit> |
10885 | <trans-unit id="4021752662928002901" datatype="html"> | 10951 | <trans-unit id="4021752662928002901" datatype="html"> |
10886 | <source>Update</source> | 10952 | <source>Update</source> |
10887 | <target state="translated">Оновити</target> | 10953 | <target state="translated">Оновити</target> |
10888 | 10954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group> | |
10889 | 10955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group> | |
10890 | 10956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group> | |
10891 | 10957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | |
10892 | 10958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | |
10893 | 10959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> | |
10894 | 10960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group> | |
10895 | 10961 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group> | |
10896 | 10962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group> | |
10897 | 10963 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">336</context></context-group> | |
10898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">336</context></context-group></trans-unit> | 10964 | </trans-unit> |
10899 | <trans-unit id="420763834450076269" datatype="html"> | 10965 | <trans-unit id="420763834450076269" datatype="html"> |
10900 | <source>Block</source> | 10966 | <source>Block</source> |
10901 | <target state="translated">Блокувати</target> | 10967 | <target state="translated">Блокувати</target> |
10902 | 10968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">80</context></context-group> | |
10903 | 10969 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">50</context></context-group> | |
10904 | 10970 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">348</context></context-group> | |
10905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 10971 | </trans-unit> |
10906 | <trans-unit id="6521421218398377925" datatype="html"> | 10972 | <trans-unit id="6521421218398377925" datatype="html"> |
10907 | <source>Run HLS transcoding</source> | 10973 | <source>Run HLS transcoding</source> |
10908 | <target state="translated">ЗапуÑтити Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ HLS</target> | 10974 | <target state="translated">ЗапуÑтити Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ HLS</target> |
10909 | 10975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10910 | 10976 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group> | |
10911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> | 10977 | </trans-unit> |
10912 | <trans-unit id="4956271014213477815" datatype="html"> | 10978 | <trans-unit id="4956271014213477815" datatype="html"> |
10913 | <source>Run WebTorrent transcoding</source> | 10979 | <source>Run WebTorrent transcoding</source> |
10914 | <target state="translated">ЗапуÑтити Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ WebTorrent</target> | 10980 | <target state="translated">ЗапуÑтити Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ WebTorrent</target> |
10915 | 10981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
10916 | 10982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group> | |
10917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 10983 | </trans-unit> |
10918 | <trans-unit id="5972374600810542430" datatype="html"> | 10984 | <trans-unit id="5972374600810542430" datatype="html"> |
10919 | <source>Delete HLS files</source> | 10985 | <source>Delete HLS files</source> |
10920 | <target state="translated">Видалити файли HLS</target> | 10986 | <target state="translated">Видалити файли HLS</target> |
10921 | 10987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group> | |
10922 | 10988 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group> | |
10923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 10989 | </trans-unit> |
10924 | <trans-unit id="3844238590532933757" datatype="html"> | 10990 | <trans-unit id="3844238590532933757" datatype="html"> |
10925 | <source>Delete WebTorrent files</source> | 10991 | <source>Delete WebTorrent files</source> |
10926 | <target state="translated">Видалити файли WebTorrent</target> | 10992 | <target state="translated">Видалити файли WebTorrent</target> |
10927 | 10993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group> | |
10928 | 10994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group> | |
10929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">398</context></context-group></trans-unit> | 10995 | </trans-unit> |
10930 | <trans-unit id="1950057220179636309" datatype="html"> | 10996 | <trans-unit id="1950057220179636309" datatype="html"> |
10931 | <source>Save to playlist</source> | 10997 | <source>Save to playlist</source> |
10932 | <target state="translated">Зберегти у добірку</target> | 10998 | <target state="translated">Зберегти у добірку</target> |
10933 | 10999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">58</context></context-group> | |
10934 | 11000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> | |
10935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/action-buttons.component.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> | 11001 | </trans-unit> |
10936 | <trans-unit id="8272123190776748811" datatype="html"> | 11002 | <trans-unit id="8272123190776748811" datatype="html"> |
10937 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 11003 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
10938 | <target state="translated"><a href="/login">Увійдіть</a>, щоб оцінити це відео.</target> | 11004 | <target state="translated"><a href="/login">Увійдіть</a>, щоб оцінити це відео.</target> |
10939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> | 11005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/action-buttons/video-rate.component.ts</context><context context-type="linenumber">85</context></context-group> |
10940 | </trans-unit> | 11006 | </trans-unit> |
10941 | <trans-unit id="4503408361537553733" datatype="html"> | 11007 | <trans-unit id="4503408361537553733" datatype="html"> |
10942 | <source>Mirror</source> | 11008 | <source>Mirror</source> |
10943 | <target state="translated">Дзеркало</target> | 11009 | <target state="translated">Дзеркало</target> |
10944 | 11010 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">360</context></context-group> | |
10945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">360</context></context-group></trans-unit> | 11011 | </trans-unit> |
10946 | <trans-unit id="2631340539474479416" datatype="html"> | 11012 | <trans-unit id="2631340539474479416" datatype="html"> |
10947 | <source>Subtitles</source> | 11013 | <source>Subtitles</source> |
10948 | <target state="translated">Субтитри</target> | 11014 | <target state="translated">Субтитри</target> |
@@ -10977,9 +11043,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10977 | <trans-unit id="4903651219400691248" datatype="html"> | 11043 | <trans-unit id="4903651219400691248" datatype="html"> |
10978 | <source>Mute account</source> | 11044 | <source>Mute account</source> |
10979 | <target state="translated">Вимкнути обліковий запиÑ</target> | 11045 | <target state="translated">Вимкнути обліковий запиÑ</target> |
10980 | 11046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group> | |
10981 | 11047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">406</context></context-group> | |
10982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">406</context></context-group></trans-unit> | 11048 | </trans-unit> |
10983 | <trans-unit id="4021487547497211597" datatype="html"> | 11049 | <trans-unit id="4021487547497211597" datatype="html"> |
10984 | <source>Open video actions</source> | 11050 | <source>Open video actions</source> |
10985 | <target state="translated">Відкрити дії з відео</target> | 11051 | <target state="translated">Відкрити дії з відео</target> |
@@ -10995,13 +11061,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10995 | <trans-unit id="3076101305843397295" datatype="html"> | 11061 | <trans-unit id="3076101305843397295" datatype="html"> |
10996 | <source>Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</source> | 11062 | <source>Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</source> |
10997 | <target state="new">Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</target> | 11063 | <target state="new">Do you really want to unblock <x id="PH" equiv-text="this.video.name"/>? It will be available again in the videos list.</target> |
10998 | 11064 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> | |
10999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 11065 | </trans-unit> |
11000 | <trans-unit id="8359747231611535508" datatype="html"> | 11066 | <trans-unit id="8359747231611535508" datatype="html"> |
11001 | <source>Unblock <x id="PH" equiv-text="this.video.name"/></source> | 11067 | <source>Unblock <x id="PH" equiv-text="this.video.name"/></source> |
11002 | <target state="translated">Розблокувати <x id="PH" equiv-text="this.video.name"/></target> | 11068 | <target state="translated">Розблокувати <x id="PH" equiv-text="this.video.name"/></target> |
11003 | 11069 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> | |
11004 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 11070 | </trans-unit> |
11005 | <trans-unit id="3719503424625455635" datatype="html"> | 11071 | <trans-unit id="3719503424625455635" datatype="html"> |
11006 | <source>Mute server account</source> | 11072 | <source>Mute server account</source> |
11007 | <target state="new">Mute server account</target> | 11073 | <target state="new">Mute server account</target> |
@@ -11010,10 +11076,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11010 | <trans-unit id="7008439939460403347" datatype="html"> | 11076 | <trans-unit id="7008439939460403347" datatype="html"> |
11011 | <source>Report</source> | 11077 | <source>Report</source> |
11012 | <target state="translated">ПоÑкаржитиÑÑ</target> | 11078 | <target state="translated">ПоÑкаржитиÑÑ</target> |
11013 | 11079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group> | |
11014 | 11080 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group> | |
11015 | 11081 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">372</context></context-group> | |
11016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">372</context></context-group></trans-unit> | 11082 | </trans-unit> |
11017 | <trans-unit id="829951422090160526" datatype="html"> | 11083 | <trans-unit id="829951422090160526" datatype="html"> |
11018 | <source>Reported part</source> | 11084 | <source>Reported part</source> |
11019 | <target state="new">Reported part</target> | 11085 | <target state="new">Reported part</target> |
@@ -11094,8 +11160,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11094 | <source>To import</source> | 11160 | <source>To import</source> |
11095 | <target state="translated">Імпортувати</target> | 11161 | <target state="translated">Імпортувати</target> |
11096 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group> | 11162 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group> |
11097 | </trans-unit><trans-unit id="6963802198225789806" datatype="html"> | 11163 | </trans-unit> |
11098 | <source>To edit</source><target state="new">To edit</target> | 11164 | <trans-unit id="6963802198225789806" datatype="html"> |
11165 | <source>To edit</source> | ||
11166 | <target state="new">To edit</target> | ||
11099 | <context-group purpose="location"> | 11167 | <context-group purpose="location"> |
11100 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> | 11168 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context> |
11101 | <context context-type="linenumber">199</context> | 11169 | <context context-type="linenumber">199</context> |
@@ -11112,21 +11180,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11112 | <trans-unit id="187187500641108332" datatype="html"> | 11180 | <trans-unit id="187187500641108332" datatype="html"> |
11113 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> | 11181 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> |
11114 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> | 11182 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> |
11115 | 11183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group> | |
11116 | 11184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group> | |
11117 | 11185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group> | |
11118 | 11186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">73</context></context-group> | |
11119 | 11187 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group> | |
11120 | 11188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group> | |
11121 | 11189 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group> | |
11122 | 11190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group> | |
11123 | 11191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
11124 | 11192 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group> | |
11125 | 11193 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group> | |
11126 | 11194 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group> | |
11127 | 11195 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group> | |
11128 | 11196 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group> | |
11129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 11197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group> |
11198 | </trans-unit> | ||
11130 | <trans-unit id="1795705931707209785" datatype="html"> | 11199 | <trans-unit id="1795705931707209785" datatype="html"> |
11131 | <source>Add to watch later</source> | 11200 | <source>Add to watch later</source> |
11132 | <target state="translated">Додати до ÑпиÑку переглÑнути пізніше</target> | 11201 | <target state="translated">Додати до ÑпиÑку переглÑнути пізніше</target> |
@@ -11165,13 +11234,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11165 | <trans-unit id="8312101634344200207" datatype="html"> | 11234 | <trans-unit id="8312101634344200207" datatype="html"> |
11166 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 11235 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
11167 | <target state="translated"><x id="PH" equiv-text="this.views"/> переглÑдачів</target> | 11236 | <target state="translated"><x id="PH" equiv-text="this.views"/> переглÑдачів</target> |
11168 | 11237 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">266</context></context-group> | |
11169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 11238 | </trans-unit> |
11170 | <trans-unit id="7756087706411154095" datatype="html"> | 11239 | <trans-unit id="7756087706411154095" datatype="html"> |
11171 | <source><x id="PH" equiv-text="this.views"/> views</source> | 11240 | <source><x id="PH" equiv-text="this.views"/> views</source> |
11172 | <target state="translated"><x id="PH" equiv-text="this.views"/> переглÑдів</target> | 11241 | <target state="translated"><x id="PH" equiv-text="this.views"/> переглÑдів</target> |
11173 | 11242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">269</context></context-group> | |
11174 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">269</context></context-group></trans-unit> | 11243 | </trans-unit> |
11175 | <trans-unit id="5210096066382592800" datatype="html"> | 11244 | <trans-unit id="5210096066382592800" datatype="html"> |
11176 | <source>Video to import updated.</source> | 11245 | <source>Video to import updated.</source> |
11177 | <target state="translated">Відео Ð´Ð»Ñ Ñ–Ð¼Ð¿Ð¾Ñ€Ñ‚Ñƒ оновлено.</target> | 11246 | <target state="translated">Відео Ð´Ð»Ñ Ñ–Ð¼Ð¿Ð¾Ñ€Ñ‚Ñƒ оновлено.</target> |
@@ -11216,9 +11285,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11216 | <trans-unit id="8306050839443016954" datatype="html"> | 11285 | <trans-unit id="8306050839443016954" datatype="html"> |
11217 | <source>Video updated.</source> | 11286 | <source>Video updated.</source> |
11218 | <target state="translated">Відео оновлено.</target> | 11287 | <target state="translated">Відео оновлено.</target> |
11219 | 11288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context><context context-type="linenumber">90</context></context-group> | |
11220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit><trans-unit id="5609201297201028750" datatype="html"> | 11289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group> |
11221 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source><target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | 11290 | </trans-unit> |
11291 | <trans-unit id="5609201297201028750" datatype="html"> | ||
11292 | <source>(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</source> | ||
11293 | <target state="new">(extensions: <x id="PH" equiv-text="this.videoExtensions.join(', ')"/>)</target> | ||
11222 | <context-group purpose="location"> | 11294 | <context-group purpose="location"> |
11223 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11295 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11224 | <context context-type="linenumber">104</context> | 11296 | <context context-type="linenumber">104</context> |
@@ -11227,44 +11299,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11227 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11299 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11228 | <context context-type="linenumber">108</context> | 11300 | <context context-type="linenumber">108</context> |
11229 | </context-group> | 11301 | </context-group> |
11230 | </trans-unit><trans-unit id="2196899015955367634" datatype="html"> | 11302 | </trans-unit> |
11231 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | 11303 | <trans-unit id="2196899015955367634" datatype="html"> |
11304 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</source> | ||
11305 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the beggining of the video</target> | ||
11232 | <context-group purpose="location"> | 11306 | <context-group purpose="location"> |
11233 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11307 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11234 | <context context-type="linenumber">120</context> | 11308 | <context context-type="linenumber">120</context> |
11235 | </context-group> | 11309 | </context-group> |
11236 | </trans-unit><trans-unit id="4952096817126306891" datatype="html"> | 11310 | </trans-unit> |
11237 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | 11311 | <trans-unit id="4952096817126306891" datatype="html"> |
11312 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</source> | ||
11313 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" will be added at the end of the video</target> | ||
11238 | <context-group purpose="location"> | 11314 | <context-group purpose="location"> |
11239 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11315 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11240 | <context context-type="linenumber">124</context> | 11316 | <context context-type="linenumber">124</context> |
11241 | </context-group> | 11317 | </context-group> |
11242 | </trans-unit><trans-unit id="665518679871959619" datatype="html"> | 11318 | </trans-unit> |
11243 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source><target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | 11319 | <trans-unit id="665518679871959619" datatype="html"> |
11320 | <source>"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</source> | ||
11321 | <target state="new">"<x id="PH" equiv-text="this.getFilename(t.options.file)"/>" image watermark will be added to the video</target> | ||
11244 | <context-group purpose="location"> | 11322 | <context-group purpose="location"> |
11245 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11323 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11246 | <context context-type="linenumber">128</context> | 11324 | <context context-type="linenumber">128</context> |
11247 | </context-group> | 11325 | </context-group> |
11248 | </trans-unit><trans-unit id="2677581013897190613" datatype="html"> | 11326 | </trans-unit> |
11249 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source><target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | 11327 | <trans-unit id="2677581013897190613" datatype="html"> |
11328 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></source> | ||
11329 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/> and stop at <x id="PH_1" equiv-text="secondsToTime(end)"/></target> | ||
11250 | <context-group purpose="location"> | 11330 | <context-group purpose="location"> |
11251 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11331 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11252 | <context context-type="linenumber">135</context> | 11332 | <context context-type="linenumber">135</context> |
11253 | </context-group> | 11333 | </context-group> |
11254 | </trans-unit><trans-unit id="2299077646120636288" datatype="html"> | 11334 | </trans-unit> |
11255 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source><target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | 11335 | <trans-unit id="2299077646120636288" datatype="html"> |
11336 | <source>Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></source> | ||
11337 | <target state="new">Video will begin at <x id="PH" equiv-text="secondsToTime(start)"/></target> | ||
11256 | <context-group purpose="location"> | 11338 | <context-group purpose="location"> |
11257 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11339 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11258 | <context context-type="linenumber">139</context> | 11340 | <context context-type="linenumber">139</context> |
11259 | </context-group> | 11341 | </context-group> |
11260 | </trans-unit><trans-unit id="7209039243783736285" datatype="html"> | 11342 | </trans-unit> |
11261 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source><target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | 11343 | <trans-unit id="7209039243783736285" datatype="html"> |
11344 | <source>Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></source> | ||
11345 | <target state="new">Video will stop at <x id="PH" equiv-text="secondsToTime(end)"/></target> | ||
11262 | <context-group purpose="location"> | 11346 | <context-group purpose="location"> |
11263 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> | 11347 | <context context-type="sourcefile">src/app/+video-editor/edit/video-editor-edit.component.ts</context> |
11264 | <context context-type="linenumber">143</context> | 11348 | <context context-type="linenumber">143</context> |
11265 | </context-group> | 11349 | </context-group> |
11266 | </trans-unit><trans-unit id="9127817756370915850" datatype="html"> | 11350 | </trans-unit> |
11267 | <source>Edit video</source><target state="new">Edit video</target> | 11351 | <trans-unit id="9127817756370915850" datatype="html"> |
11352 | <source>Edit video</source> | ||
11353 | <target state="new">Edit video</target> | ||
11268 | <context-group purpose="location"> | 11354 | <context-group purpose="location"> |
11269 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> | 11355 | <context context-type="sourcefile">src/app/+video-editor/video-editor-routing.module.ts</context> |
11270 | <context context-type="linenumber">15</context> | 11356 | <context context-type="linenumber">15</context> |
@@ -11278,23 +11364,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11278 | <trans-unit id="6775540171466219199" datatype="html"> | 11364 | <trans-unit id="6775540171466219199" datatype="html"> |
11279 | <source>Stop autoplaying next video</source> | 11365 | <source>Stop autoplaying next video</source> |
11280 | <target state="translated">Припинити Ð°Ð²Ñ‚Ð¾Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð°Ñтупного відео</target> | 11366 | <target state="translated">Припинити Ð°Ð²Ñ‚Ð¾Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð°Ñтупного відео</target> |
11281 | 11367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group> | |
11282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 11368 | </trans-unit> |
11283 | <trans-unit id="5149234672404299151" datatype="html"> | 11369 | <trans-unit id="5149234672404299151" datatype="html"> |
11284 | <source>Autoplay next video</source> | 11370 | <source>Autoplay next video</source> |
11285 | <target state="translated">ÐÐ²Ñ‚Ð¾Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð°Ñтупного відео</target> | 11371 | <target state="translated">ÐÐ²Ñ‚Ð¾Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð°Ñтупного відео</target> |
11286 | 11372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group> | |
11287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> | 11373 | </trans-unit> |
11288 | <trans-unit id="5870421136141540382" datatype="html"> | 11374 | <trans-unit id="5870421136141540382" datatype="html"> |
11289 | <source>Stop looping playlist videos</source> | 11375 | <source>Stop looping playlist videos</source> |
11290 | <target state="new">Stop looping playlist videos</target> | 11376 | <target state="new">Stop looping playlist videos</target> |
11291 | 11377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">240</context></context-group> | |
11292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">240</context></context-group></trans-unit> | 11378 | </trans-unit> |
11293 | <trans-unit id="1599585307037758139" datatype="html"> | 11379 | <trans-unit id="1599585307037758139" datatype="html"> |
11294 | <source>Loop playlist videos</source> | 11380 | <source>Loop playlist videos</source> |
11295 | <target state="new">Loop playlist videos</target> | 11381 | <target state="new">Loop playlist videos</target> |
11296 | 11382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">241</context></context-group> | |
11297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">241</context></context-group></trans-unit> | 11383 | </trans-unit> |
11298 | <trans-unit id="3704292036525161260" datatype="html"> | 11384 | <trans-unit id="3704292036525161260" datatype="html"> |
11299 | <source>Placeholder image</source> | 11385 | <source>Placeholder image</source> |
11300 | <target state="new">Placeholder image</target> | 11386 | <target state="new">Placeholder image</target> |
@@ -11304,8 +11390,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11304 | </context-group> | 11390 | </context-group> |
11305 | </trans-unit> | 11391 | </trans-unit> |
11306 | <trans-unit id="961774488937452220" datatype="html"> | 11392 | <trans-unit id="961774488937452220" datatype="html"> |
11307 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 11393 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
11308 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 11394 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
11309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> | 11395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group> |
11310 | </trans-unit> | 11396 | </trans-unit> |
11311 | <trans-unit id="5761611056224181752" datatype="html"> | 11397 | <trans-unit id="5761611056224181752" datatype="html"> |
@@ -11331,27 +11417,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11331 | <trans-unit id="2159130950882492111" datatype="html"> | 11417 | <trans-unit id="2159130950882492111" datatype="html"> |
11332 | <source>Cancel</source> | 11418 | <source>Cancel</source> |
11333 | <target state="translated">СкаÑувати</target> | 11419 | <target state="translated">СкаÑувати</target> |
11334 | 11420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | |
11335 | 11421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group> | |
11336 | 11422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group> | |
11337 | 11423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | |
11338 | 11424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group> | |
11339 | 11425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | |
11340 | 11426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group> | |
11341 | 11427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
11342 | 11428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group> | |
11343 | 11429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group> | |
11344 | 11430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group> | |
11345 | 11431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group> | |
11346 | 11432 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
11347 | 11433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
11348 | 11434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
11349 | 11435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
11350 | 11436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
11351 | 11437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group> | |
11352 | 11438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">34</context></context-group> | |
11353 | 11439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group> | |
11354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-edit-modal/video-caption-edit-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 11440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group> |
11441 | </trans-unit> | ||
11355 | <trans-unit id="3354816756665089864" datatype="html"> | 11442 | <trans-unit id="3354816756665089864" datatype="html"> |
11356 | <source>Autoplay is suspended</source> | 11443 | <source>Autoplay is suspended</source> |
11357 | <target state="translated">ÐÐ²Ñ‚Ð¾Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·ÑƒÐ¿Ð¸Ð½ÐµÐ½Ð¾</target> | 11444 | <target state="translated">ÐÐ²Ñ‚Ð¾Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·ÑƒÐ¿Ð¸Ð½ÐµÐ½Ð¾</target> |
diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts index 38ff39890..9e4d87911 100644 --- a/client/src/standalone/videos/embed.ts +++ b/client/src/standalone/videos/embed.ts | |||
@@ -6,6 +6,7 @@ import { peertubeTranslate } from '../../../../shared/core-utils/i18n' | |||
6 | import { | 6 | import { |
7 | HTMLServerConfig, | 7 | HTMLServerConfig, |
8 | HttpStatusCode, | 8 | HttpStatusCode, |
9 | LiveVideo, | ||
9 | OAuth2ErrorCode, | 10 | OAuth2ErrorCode, |
10 | ResultList, | 11 | ResultList, |
11 | UserRefreshToken, | 12 | UserRefreshToken, |
@@ -94,6 +95,10 @@ export class PeerTubeEmbed { | |||
94 | return window.location.origin + '/api/v1/videos/' + id | 95 | return window.location.origin + '/api/v1/videos/' + id |
95 | } | 96 | } |
96 | 97 | ||
98 | getLiveUrl (videoId: string) { | ||
99 | return window.location.origin + '/api/v1/videos/live/' + videoId | ||
100 | } | ||
101 | |||
97 | refreshFetch (url: string, options?: RequestInit) { | 102 | refreshFetch (url: string, options?: RequestInit) { |
98 | return fetch(url, options) | 103 | return fetch(url, options) |
99 | .then((res: Response) => { | 104 | .then((res: Response) => { |
@@ -166,6 +171,12 @@ export class PeerTubeEmbed { | |||
166 | return this.refreshFetch(this.getVideoUrl(videoId) + '/captions', { headers: this.headers }) | 171 | return this.refreshFetch(this.getVideoUrl(videoId) + '/captions', { headers: this.headers }) |
167 | } | 172 | } |
168 | 173 | ||
174 | loadWithLive (video: VideoDetails) { | ||
175 | return this.refreshFetch(this.getLiveUrl(video.uuid), { headers: this.headers }) | ||
176 | .then(res => res.json()) | ||
177 | .then((live: LiveVideo) => ({ video, live })) | ||
178 | } | ||
179 | |||
169 | loadPlaylistInfo (playlistId: string): Promise<Response> { | 180 | loadPlaylistInfo (playlistId: string): Promise<Response> { |
170 | return this.refreshFetch(this.getPlaylistUrl(playlistId), { headers: this.headers }) | 181 | return this.refreshFetch(this.getPlaylistUrl(playlistId), { headers: this.headers }) |
171 | } | 182 | } |
@@ -475,13 +486,15 @@ export class PeerTubeEmbed { | |||
475 | .then(res => res.json()) | 486 | .then(res => res.json()) |
476 | } | 487 | } |
477 | 488 | ||
478 | const videoInfoPromise = videoResponse.json() | 489 | const videoInfoPromise: Promise<{ video: VideoDetails, live?: LiveVideo }> = videoResponse.json() |
479 | .then((videoInfo: VideoDetails) => { | 490 | .then((videoInfo: VideoDetails) => { |
480 | this.loadParams(videoInfo) | 491 | this.loadParams(videoInfo) |
481 | 492 | ||
482 | if (!alreadyHadPlayer && !this.autoplay) this.loadPlaceholder(videoInfo) | 493 | if (!alreadyHadPlayer && !this.autoplay) this.buildPlaceholder(videoInfo) |
483 | 494 | ||
484 | return videoInfo | 495 | if (!videoInfo.isLive) return { video: videoInfo } |
496 | |||
497 | return this.loadWithLive(videoInfo) | ||
485 | }) | 498 | }) |
486 | 499 | ||
487 | const [ videoInfoTmp, serverTranslations, captionsResponse, PeertubePlayerManagerModule ] = await Promise.all([ | 500 | const [ videoInfoTmp, serverTranslations, captionsResponse, PeertubePlayerManagerModule ] = await Promise.all([ |
@@ -493,11 +506,15 @@ export class PeerTubeEmbed { | |||
493 | 506 | ||
494 | await this.loadPlugins(serverTranslations) | 507 | await this.loadPlugins(serverTranslations) |
495 | 508 | ||
496 | const videoInfo: VideoDetails = videoInfoTmp | 509 | const { video: videoInfo, live } = videoInfoTmp |
497 | 510 | ||
498 | const PeertubePlayerManager = PeertubePlayerManagerModule.PeertubePlayerManager | 511 | const PeertubePlayerManager = PeertubePlayerManagerModule.PeertubePlayerManager |
499 | const videoCaptions = await this.buildCaptions(serverTranslations, captionsResponse) | 512 | const videoCaptions = await this.buildCaptions(serverTranslations, captionsResponse) |
500 | 513 | ||
514 | const liveOptions = videoInfo.isLive | ||
515 | ? { latencyMode: live.latencyMode } | ||
516 | : undefined | ||
517 | |||
501 | const playlistPlugin = this.currentPlaylistElement | 518 | const playlistPlugin = this.currentPlaylistElement |
502 | ? { | 519 | ? { |
503 | elements: this.playlistElements, | 520 | elements: this.playlistElements, |
@@ -545,6 +562,7 @@ export class PeerTubeEmbed { | |||
545 | videoUUID: videoInfo.uuid, | 562 | videoUUID: videoInfo.uuid, |
546 | 563 | ||
547 | isLive: videoInfo.isLive, | 564 | isLive: videoInfo.isLive, |
565 | liveOptions, | ||
548 | 566 | ||
549 | playerElement: this.playerElement, | 567 | playerElement: this.playerElement, |
550 | onPlayerElementChange: (element: HTMLVideoElement) => { | 568 | onPlayerElementChange: (element: HTMLVideoElement) => { |
@@ -726,7 +744,7 @@ export class PeerTubeEmbed { | |||
726 | return [] | 744 | return [] |
727 | } | 745 | } |
728 | 746 | ||
729 | private loadPlaceholder (video: VideoDetails) { | 747 | private buildPlaceholder (video: VideoDetails) { |
730 | const placeholder = this.getPlaceholderElement() | 748 | const placeholder = this.getPlaceholderElement() |
731 | 749 | ||
732 | const url = window.location.origin + video.previewPath | 750 | const url = window.location.origin + video.previewPath |
diff --git a/config/default.yaml b/config/default.yaml index d76894b52..898395705 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -392,6 +392,12 @@ live: | |||
392 | # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay | 392 | # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay |
393 | allow_replay: true | 393 | allow_replay: true |
394 | 394 | ||
395 | # Allow your users to change latency settings (small latency/default/high latency) | ||
396 | # Small latency live streams cannot use P2P | ||
397 | # High latency live streams can increase P2P ratio | ||
398 | latency_setting: | ||
399 | enabled: true | ||
400 | |||
395 | # Your firewall should accept traffic from this port in TCP if you enable live | 401 | # Your firewall should accept traffic from this port in TCP if you enable live |
396 | rtmp: | 402 | rtmp: |
397 | enabled: true | 403 | enabled: true |
diff --git a/config/production.yaml.example b/config/production.yaml.example index 45d26190a..03afe5841 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -400,6 +400,12 @@ live: | |||
400 | # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay | 400 | # /!\ transcoding.enabled (and not live.transcoding.enabled) has to be true to create a replay |
401 | allow_replay: true | 401 | allow_replay: true |
402 | 402 | ||
403 | # Allow your users to change latency settings (small latency/default/high latency) | ||
404 | # Small latency live streams cannot use P2P | ||
405 | # High latency live streams can increase P2P ratio | ||
406 | latency_setting: | ||
407 | enabled: true | ||
408 | |||
403 | # Your firewall should accept traffic from this port in TCP if you enable live | 409 | # Your firewall should accept traffic from this port in TCP if you enable live |
404 | rtmp: | 410 | rtmp: |
405 | enabled: true | 411 | enabled: true |
diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index 821ed4ad3..376143cb8 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts | |||
@@ -237,6 +237,9 @@ function customConfig (): CustomConfig { | |||
237 | live: { | 237 | live: { |
238 | enabled: CONFIG.LIVE.ENABLED, | 238 | enabled: CONFIG.LIVE.ENABLED, |
239 | allowReplay: CONFIG.LIVE.ALLOW_REPLAY, | 239 | allowReplay: CONFIG.LIVE.ALLOW_REPLAY, |
240 | latencySetting: { | ||
241 | enabled: CONFIG.LIVE.LATENCY_SETTING.ENABLED | ||
242 | }, | ||
240 | maxDuration: CONFIG.LIVE.MAX_DURATION, | 243 | maxDuration: CONFIG.LIVE.MAX_DURATION, |
241 | maxInstanceLives: CONFIG.LIVE.MAX_INSTANCE_LIVES, | 244 | maxInstanceLives: CONFIG.LIVE.MAX_INSTANCE_LIVES, |
242 | maxUserLives: CONFIG.LIVE.MAX_USER_LIVES, | 245 | maxUserLives: CONFIG.LIVE.MAX_USER_LIVES, |
diff --git a/server/controllers/api/videos/live.ts b/server/controllers/api/videos/live.ts index 49cabb6f3..c6f038079 100644 --- a/server/controllers/api/videos/live.ts +++ b/server/controllers/api/videos/live.ts | |||
@@ -1,4 +1,5 @@ | |||
1 | import express from 'express' | 1 | import express from 'express' |
2 | import { exists } from '@server/helpers/custom-validators/misc' | ||
2 | import { createReqFiles } from '@server/helpers/express-utils' | 3 | import { createReqFiles } from '@server/helpers/express-utils' |
3 | import { ASSETS_PATH, MIMETYPES } from '@server/initializers/constants' | 4 | import { ASSETS_PATH, MIMETYPES } from '@server/initializers/constants' |
4 | import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url' | 5 | import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url' |
@@ -9,7 +10,7 @@ import { videoLiveAddValidator, videoLiveGetValidator, videoLiveUpdateValidator | |||
9 | import { VideoLiveModel } from '@server/models/video/video-live' | 10 | import { VideoLiveModel } from '@server/models/video/video-live' |
10 | import { MVideoDetails, MVideoFullLight } from '@server/types/models' | 11 | import { MVideoDetails, MVideoFullLight } from '@server/types/models' |
11 | import { buildUUID, uuidToShort } from '@shared/extra-utils' | 12 | import { buildUUID, uuidToShort } from '@shared/extra-utils' |
12 | import { HttpStatusCode, LiveVideoCreate, LiveVideoUpdate, VideoState } from '@shared/models' | 13 | import { HttpStatusCode, LiveVideoCreate, LiveVideoLatencyMode, LiveVideoUpdate, VideoState } from '@shared/models' |
13 | import { logger } from '../../../helpers/logger' | 14 | import { logger } from '../../../helpers/logger' |
14 | import { sequelizeTypescript } from '../../../initializers/database' | 15 | import { sequelizeTypescript } from '../../../initializers/database' |
15 | import { updateVideoMiniatureFromExisting } from '../../../lib/thumbnail' | 16 | import { updateVideoMiniatureFromExisting } from '../../../lib/thumbnail' |
@@ -60,8 +61,9 @@ async function updateLiveVideo (req: express.Request, res: express.Response) { | |||
60 | const video = res.locals.videoAll | 61 | const video = res.locals.videoAll |
61 | const videoLive = res.locals.videoLive | 62 | const videoLive = res.locals.videoLive |
62 | 63 | ||
63 | videoLive.saveReplay = body.saveReplay || false | 64 | if (exists(body.saveReplay)) videoLive.saveReplay = body.saveReplay |
64 | videoLive.permanentLive = body.permanentLive || false | 65 | if (exists(body.permanentLive)) videoLive.permanentLive = body.permanentLive |
66 | if (exists(body.latencyMode)) videoLive.latencyMode = body.latencyMode | ||
65 | 67 | ||
66 | video.VideoLive = await videoLive.save() | 68 | video.VideoLive = await videoLive.save() |
67 | 69 | ||
@@ -87,6 +89,7 @@ async function addLiveVideo (req: express.Request, res: express.Response) { | |||
87 | const videoLive = new VideoLiveModel() | 89 | const videoLive = new VideoLiveModel() |
88 | videoLive.saveReplay = videoInfo.saveReplay || false | 90 | videoLive.saveReplay = videoInfo.saveReplay || false |
89 | videoLive.permanentLive = videoInfo.permanentLive || false | 91 | videoLive.permanentLive = videoInfo.permanentLive || false |
92 | videoLive.latencyMode = videoInfo.latencyMode || LiveVideoLatencyMode.DEFAULT | ||
90 | videoLive.streamKey = buildUUID() | 93 | videoLive.streamKey = buildUUID() |
91 | 94 | ||
92 | const [ thumbnailModel, previewModel ] = await buildVideoThumbnailsFromReq({ | 95 | const [ thumbnailModel, previewModel ] = await buildVideoThumbnailsFromReq({ |
diff --git a/server/helpers/activitypub.ts b/server/helpers/activitypub.ts index cbba2f51c..d0bcc6785 100644 --- a/server/helpers/activitypub.ts +++ b/server/helpers/activitypub.ts | |||
@@ -50,6 +50,10 @@ function getContextData (type: ContextType) { | |||
50 | '@type': 'sc:Boolean', | 50 | '@type': 'sc:Boolean', |
51 | '@id': 'pt:permanentLive' | 51 | '@id': 'pt:permanentLive' |
52 | }, | 52 | }, |
53 | latencyMode: { | ||
54 | '@type': 'sc:Number', | ||
55 | '@id': 'pt:latencyMode' | ||
56 | }, | ||
53 | 57 | ||
54 | Infohash: 'pt:Infohash', | 58 | Infohash: 'pt:Infohash', |
55 | Playlist: 'pt:Playlist', | 59 | Playlist: 'pt:Playlist', |
diff --git a/server/helpers/custom-validators/activitypub/videos.ts b/server/helpers/custom-validators/activitypub/videos.ts index a41d37810..80a321117 100644 --- a/server/helpers/custom-validators/activitypub/videos.ts +++ b/server/helpers/custom-validators/activitypub/videos.ts | |||
@@ -1,10 +1,11 @@ | |||
1 | import validator from 'validator' | 1 | import validator from 'validator' |
2 | import { logger } from '@server/helpers/logger' | 2 | import { logger } from '@server/helpers/logger' |
3 | import { ActivityTrackerUrlObject, ActivityVideoFileMetadataUrlObject } from '@shared/models' | 3 | import { ActivityTrackerUrlObject, ActivityVideoFileMetadataUrlObject } from '@shared/models' |
4 | import { VideoState } from '../../../../shared/models/videos' | 4 | import { LiveVideoLatencyMode, VideoState } from '../../../../shared/models/videos' |
5 | import { ACTIVITY_PUB, CONSTRAINTS_FIELDS } from '../../../initializers/constants' | 5 | import { ACTIVITY_PUB, CONSTRAINTS_FIELDS } from '../../../initializers/constants' |
6 | import { peertubeTruncate } from '../../core-utils' | 6 | import { peertubeTruncate } from '../../core-utils' |
7 | import { exists, isArray, isBooleanValid, isDateValid, isUUIDValid } from '../misc' | 7 | import { exists, isArray, isBooleanValid, isDateValid, isUUIDValid } from '../misc' |
8 | import { isLiveLatencyModeValid } from '../video-lives' | ||
8 | import { | 9 | import { |
9 | isVideoDurationValid, | 10 | isVideoDurationValid, |
10 | isVideoNameValid, | 11 | isVideoNameValid, |
@@ -65,6 +66,7 @@ function sanitizeAndCheckVideoTorrentObject (video: any) { | |||
65 | if (!isBooleanValid(video.isLiveBroadcast)) video.isLiveBroadcast = false | 66 | if (!isBooleanValid(video.isLiveBroadcast)) video.isLiveBroadcast = false |
66 | if (!isBooleanValid(video.liveSaveReplay)) video.liveSaveReplay = false | 67 | if (!isBooleanValid(video.liveSaveReplay)) video.liveSaveReplay = false |
67 | if (!isBooleanValid(video.permanentLive)) video.permanentLive = false | 68 | if (!isBooleanValid(video.permanentLive)) video.permanentLive = false |
69 | if (!isLiveLatencyModeValid(video.latencyMode)) video.latencyMode = LiveVideoLatencyMode.DEFAULT | ||
68 | 70 | ||
69 | return isActivityPubUrlValid(video.id) && | 71 | return isActivityPubUrlValid(video.id) && |
70 | isVideoNameValid(video.name) && | 72 | isVideoNameValid(video.name) && |
diff --git a/server/helpers/custom-validators/video-lives.ts b/server/helpers/custom-validators/video-lives.ts new file mode 100644 index 000000000..69d08ae68 --- /dev/null +++ b/server/helpers/custom-validators/video-lives.ts | |||
@@ -0,0 +1,11 @@ | |||
1 | import { LiveVideoLatencyMode } from '@shared/models' | ||
2 | |||
3 | function isLiveLatencyModeValid (value: any) { | ||
4 | return [ LiveVideoLatencyMode.DEFAULT, LiveVideoLatencyMode.SMALL_LATENCY, LiveVideoLatencyMode.HIGH_LATENCY ].includes(value) | ||
5 | } | ||
6 | |||
7 | // --------------------------------------------------------------------------- | ||
8 | |||
9 | export { | ||
10 | isLiveLatencyModeValid | ||
11 | } | ||
diff --git a/server/helpers/ffmpeg/ffmpeg-live.ts b/server/helpers/ffmpeg/ffmpeg-live.ts index ff571626c..fd20971eb 100644 --- a/server/helpers/ffmpeg/ffmpeg-live.ts +++ b/server/helpers/ffmpeg/ffmpeg-live.ts | |||
@@ -1,7 +1,7 @@ | |||
1 | import { FfmpegCommand, FilterSpecification } from 'fluent-ffmpeg' | 1 | import { FfmpegCommand, FilterSpecification } from 'fluent-ffmpeg' |
2 | import { join } from 'path' | 2 | import { join } from 'path' |
3 | import { VIDEO_LIVE } from '@server/initializers/constants' | 3 | import { VIDEO_LIVE } from '@server/initializers/constants' |
4 | import { AvailableEncoders } from '@shared/models' | 4 | import { AvailableEncoders, LiveVideoLatencyMode } from '@shared/models' |
5 | import { logger, loggerTagsFactory } from '../logger' | 5 | import { logger, loggerTagsFactory } from '../logger' |
6 | import { buildStreamSuffix, getFFmpeg, getScaleFilter, StreamType } from './ffmpeg-commons' | 6 | import { buildStreamSuffix, getFFmpeg, getScaleFilter, StreamType } from './ffmpeg-commons' |
7 | import { getEncoderBuilderResult } from './ffmpeg-encoders' | 7 | import { getEncoderBuilderResult } from './ffmpeg-encoders' |
@@ -15,6 +15,7 @@ async function getLiveTranscodingCommand (options: { | |||
15 | 15 | ||
16 | outPath: string | 16 | outPath: string |
17 | masterPlaylistName: string | 17 | masterPlaylistName: string |
18 | latencyMode: LiveVideoLatencyMode | ||
18 | 19 | ||
19 | resolutions: number[] | 20 | resolutions: number[] |
20 | 21 | ||
@@ -26,7 +27,7 @@ async function getLiveTranscodingCommand (options: { | |||
26 | availableEncoders: AvailableEncoders | 27 | availableEncoders: AvailableEncoders |
27 | profile: string | 28 | profile: string |
28 | }) { | 29 | }) { |
29 | const { inputUrl, outPath, resolutions, fps, bitrate, availableEncoders, profile, masterPlaylistName, ratio } = options | 30 | const { inputUrl, outPath, resolutions, fps, bitrate, availableEncoders, profile, masterPlaylistName, ratio, latencyMode } = options |
30 | 31 | ||
31 | const command = getFFmpeg(inputUrl, 'live') | 32 | const command = getFFmpeg(inputUrl, 'live') |
32 | 33 | ||
@@ -120,14 +121,21 @@ async function getLiveTranscodingCommand (options: { | |||
120 | 121 | ||
121 | command.complexFilter(complexFilter) | 122 | command.complexFilter(complexFilter) |
122 | 123 | ||
123 | addDefaultLiveHLSParams(command, outPath, masterPlaylistName) | 124 | addDefaultLiveHLSParams({ command, outPath, masterPlaylistName, latencyMode }) |
124 | 125 | ||
125 | command.outputOption('-var_stream_map', varStreamMap.join(' ')) | 126 | command.outputOption('-var_stream_map', varStreamMap.join(' ')) |
126 | 127 | ||
127 | return command | 128 | return command |
128 | } | 129 | } |
129 | 130 | ||
130 | function getLiveMuxingCommand (inputUrl: string, outPath: string, masterPlaylistName: string) { | 131 | function getLiveMuxingCommand (options: { |
132 | inputUrl: string | ||
133 | outPath: string | ||
134 | masterPlaylistName: string | ||
135 | latencyMode: LiveVideoLatencyMode | ||
136 | }) { | ||
137 | const { inputUrl, outPath, masterPlaylistName, latencyMode } = options | ||
138 | |||
131 | const command = getFFmpeg(inputUrl, 'live') | 139 | const command = getFFmpeg(inputUrl, 'live') |
132 | 140 | ||
133 | command.outputOption('-c:v copy') | 141 | command.outputOption('-c:v copy') |
@@ -135,22 +143,39 @@ function getLiveMuxingCommand (inputUrl: string, outPath: string, masterPlaylist | |||
135 | command.outputOption('-map 0:a?') | 143 | command.outputOption('-map 0:a?') |
136 | command.outputOption('-map 0:v?') | 144 | command.outputOption('-map 0:v?') |
137 | 145 | ||
138 | addDefaultLiveHLSParams(command, outPath, masterPlaylistName) | 146 | addDefaultLiveHLSParams({ command, outPath, masterPlaylistName, latencyMode }) |
139 | 147 | ||
140 | return command | 148 | return command |
141 | } | 149 | } |
142 | 150 | ||
151 | function getLiveSegmentTime (latencyMode: LiveVideoLatencyMode) { | ||
152 | if (latencyMode === LiveVideoLatencyMode.SMALL_LATENCY) { | ||
153 | return VIDEO_LIVE.SEGMENT_TIME_SECONDS.SMALL_LATENCY | ||
154 | } | ||
155 | |||
156 | return VIDEO_LIVE.SEGMENT_TIME_SECONDS.DEFAULT_LATENCY | ||
157 | } | ||
158 | |||
143 | // --------------------------------------------------------------------------- | 159 | // --------------------------------------------------------------------------- |
144 | 160 | ||
145 | export { | 161 | export { |
162 | getLiveSegmentTime, | ||
163 | |||
146 | getLiveTranscodingCommand, | 164 | getLiveTranscodingCommand, |
147 | getLiveMuxingCommand | 165 | getLiveMuxingCommand |
148 | } | 166 | } |
149 | 167 | ||
150 | // --------------------------------------------------------------------------- | 168 | // --------------------------------------------------------------------------- |
151 | 169 | ||
152 | function addDefaultLiveHLSParams (command: FfmpegCommand, outPath: string, masterPlaylistName: string) { | 170 | function addDefaultLiveHLSParams (options: { |
153 | command.outputOption('-hls_time ' + VIDEO_LIVE.SEGMENT_TIME_SECONDS) | 171 | command: FfmpegCommand |
172 | outPath: string | ||
173 | masterPlaylistName: string | ||
174 | latencyMode: LiveVideoLatencyMode | ||
175 | }) { | ||
176 | const { command, outPath, masterPlaylistName, latencyMode } = options | ||
177 | |||
178 | command.outputOption('-hls_time ' + getLiveSegmentTime(latencyMode)) | ||
154 | command.outputOption('-hls_list_size ' + VIDEO_LIVE.SEGMENTS_LIST_SIZE) | 179 | command.outputOption('-hls_list_size ' + VIDEO_LIVE.SEGMENTS_LIST_SIZE) |
155 | command.outputOption('-hls_flags delete_segments+independent_segments') | 180 | command.outputOption('-hls_flags delete_segments+independent_segments') |
156 | command.outputOption(`-hls_segment_filename ${join(outPath, '%v-%06d.ts')}`) | 181 | command.outputOption(`-hls_segment_filename ${join(outPath, '%v-%06d.ts')}`) |
diff --git a/server/initializers/checker-before-init.ts b/server/initializers/checker-before-init.ts index 10dd98f43..fa311f708 100644 --- a/server/initializers/checker-before-init.ts +++ b/server/initializers/checker-before-init.ts | |||
@@ -49,8 +49,8 @@ function checkMissedConfig () { | |||
49 | 'peertube.check_latest_version.enabled', 'peertube.check_latest_version.url', | 49 | 'peertube.check_latest_version.enabled', 'peertube.check_latest_version.url', |
50 | 'search.remote_uri.users', 'search.remote_uri.anonymous', 'search.search_index.enabled', 'search.search_index.url', | 50 | 'search.remote_uri.users', 'search.remote_uri.anonymous', 'search.search_index.enabled', 'search.search_index.url', |
51 | 'search.search_index.disable_local_search', 'search.search_index.is_default_search', | 51 | 'search.search_index.disable_local_search', 'search.search_index.is_default_search', |
52 | 'live.enabled', 'live.allow_replay', 'live.max_duration', 'live.max_user_lives', 'live.max_instance_lives', | 52 | 'live.enabled', 'live.allow_replay', 'live.latency_setting.enabled', 'live.max_duration', |
53 | 'live.rtmp.enabled', 'live.rtmp.port', 'live.rtmp.hostname', | 53 | 'live.max_user_lives', 'live.max_instance_lives', 'live.rtmp.enabled', 'live.rtmp.port', 'live.rtmp.hostname', |
54 | 'live.rtmps.enabled', 'live.rtmps.port', 'live.rtmps.hostname', 'live.rtmps.key_file', 'live.rtmps.cert_file', | 54 | 'live.rtmps.enabled', 'live.rtmps.port', 'live.rtmps.hostname', 'live.rtmps.key_file', 'live.rtmps.cert_file', |
55 | 'live.transcoding.enabled', 'live.transcoding.threads', 'live.transcoding.profile', | 55 | 'live.transcoding.enabled', 'live.transcoding.threads', 'live.transcoding.profile', |
56 | 'live.transcoding.resolutions.144p', 'live.transcoding.resolutions.240p', 'live.transcoding.resolutions.360p', | 56 | 'live.transcoding.resolutions.144p', 'live.transcoding.resolutions.240p', 'live.transcoding.resolutions.360p', |
diff --git a/server/initializers/config.ts b/server/initializers/config.ts index 7a13a1368..6dcca9b67 100644 --- a/server/initializers/config.ts +++ b/server/initializers/config.ts | |||
@@ -4,9 +4,9 @@ import { dirname, join } from 'path' | |||
4 | import { decacheModule } from '@server/helpers/decache' | 4 | import { decacheModule } from '@server/helpers/decache' |
5 | import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type' | 5 | import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type' |
6 | import { BroadcastMessageLevel } from '@shared/models/server' | 6 | import { BroadcastMessageLevel } from '@shared/models/server' |
7 | import { buildPath, root } from '../../shared/core-utils' | ||
7 | import { VideoPrivacy, VideosRedundancyStrategy } from '../../shared/models' | 8 | import { VideoPrivacy, VideosRedundancyStrategy } from '../../shared/models' |
8 | import { NSFWPolicyType } from '../../shared/models/videos/nsfw-policy.type' | 9 | import { NSFWPolicyType } from '../../shared/models/videos/nsfw-policy.type' |
9 | import { buildPath, root } from '../../shared/core-utils' | ||
10 | import { parseBytes, parseDurationToMs } from '../helpers/core-utils' | 10 | import { parseBytes, parseDurationToMs } from '../helpers/core-utils' |
11 | 11 | ||
12 | // Use a variable to reload the configuration if we need | 12 | // Use a variable to reload the configuration if we need |
@@ -296,6 +296,10 @@ const CONFIG = { | |||
296 | 296 | ||
297 | get ALLOW_REPLAY () { return config.get<boolean>('live.allow_replay') }, | 297 | get ALLOW_REPLAY () { return config.get<boolean>('live.allow_replay') }, |
298 | 298 | ||
299 | LATENCY_SETTING: { | ||
300 | get ENABLED () { return config.get<boolean>('live.latency_setting.enabled') } | ||
301 | }, | ||
302 | |||
299 | RTMP: { | 303 | RTMP: { |
300 | get ENABLED () { return config.get<boolean>('live.rtmp.enabled') }, | 304 | get ENABLED () { return config.get<boolean>('live.rtmp.enabled') }, |
301 | get PORT () { return config.get<number>('live.rtmp.port') }, | 305 | get PORT () { return config.get<number>('live.rtmp.port') }, |
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 7bc2877aa..1c849b561 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' | |||
24 | 24 | ||
25 | // --------------------------------------------------------------------------- | 25 | // --------------------------------------------------------------------------- |
26 | 26 | ||
27 | const LAST_MIGRATION_VERSION = 685 | 27 | const LAST_MIGRATION_VERSION = 690 |
28 | 28 | ||
29 | // --------------------------------------------------------------------------- | 29 | // --------------------------------------------------------------------------- |
30 | 30 | ||
@@ -700,7 +700,10 @@ const RESUMABLE_UPLOAD_SESSION_LIFETIME = SCHEDULER_INTERVALS_MS.REMOVE_DANGLING | |||
700 | const VIDEO_LIVE = { | 700 | const VIDEO_LIVE = { |
701 | EXTENSION: '.ts', | 701 | EXTENSION: '.ts', |
702 | CLEANUP_DELAY: 1000 * 60 * 5, // 5 minutes | 702 | CLEANUP_DELAY: 1000 * 60 * 5, // 5 minutes |
703 | SEGMENT_TIME_SECONDS: 4, // 4 seconds | 703 | SEGMENT_TIME_SECONDS: { |
704 | DEFAULT_LATENCY: 4, // 4 seconds | ||
705 | SMALL_LATENCY: 2 // 2 seconds | ||
706 | }, | ||
704 | SEGMENTS_LIST_SIZE: 15, // 15 maximum segments in live playlist | 707 | SEGMENTS_LIST_SIZE: 15, // 15 maximum segments in live playlist |
705 | REPLAY_DIRECTORY: 'replay', | 708 | REPLAY_DIRECTORY: 'replay', |
706 | EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION: 4, | 709 | EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION: 4, |
@@ -842,7 +845,8 @@ if (isTestInstance() === true) { | |||
842 | PLUGIN_EXTERNAL_AUTH_TOKEN_LIFETIME = 5000 | 845 | PLUGIN_EXTERNAL_AUTH_TOKEN_LIFETIME = 5000 |
843 | 846 | ||
844 | VIDEO_LIVE.CLEANUP_DELAY = 5000 | 847 | VIDEO_LIVE.CLEANUP_DELAY = 5000 |
845 | VIDEO_LIVE.SEGMENT_TIME_SECONDS = 2 | 848 | VIDEO_LIVE.SEGMENT_TIME_SECONDS.DEFAULT_LATENCY = 2 |
849 | VIDEO_LIVE.SEGMENT_TIME_SECONDS.SMALL_LATENCY = 1 | ||
846 | VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION = 1 | 850 | VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION = 1 |
847 | } | 851 | } |
848 | 852 | ||
diff --git a/server/initializers/migrations/0690-live-latency-mode.ts b/server/initializers/migrations/0690-live-latency-mode.ts new file mode 100644 index 000000000..c31a61364 --- /dev/null +++ b/server/initializers/migrations/0690-live-latency-mode.ts | |||
@@ -0,0 +1,35 @@ | |||
1 | import { LiveVideoLatencyMode } from '@shared/models' | ||
2 | import * as Sequelize from 'sequelize' | ||
3 | |||
4 | async function up (utils: { | ||
5 | transaction: Sequelize.Transaction | ||
6 | queryInterface: Sequelize.QueryInterface | ||
7 | sequelize: Sequelize.Sequelize | ||
8 | db: any | ||
9 | }): Promise<void> { | ||
10 | await utils.queryInterface.addColumn('videoLive', 'latencyMode', { | ||
11 | type: Sequelize.INTEGER, | ||
12 | defaultValue: null, | ||
13 | allowNull: true | ||
14 | }, { transaction: utils.transaction }) | ||
15 | |||
16 | { | ||
17 | const query = `UPDATE "videoLive" SET "latencyMode" = ${LiveVideoLatencyMode.DEFAULT}` | ||
18 | await utils.sequelize.query(query, { type: Sequelize.QueryTypes.UPDATE, transaction: utils.transaction }) | ||
19 | } | ||
20 | |||
21 | await utils.queryInterface.changeColumn('videoLive', 'latencyMode', { | ||
22 | type: Sequelize.INTEGER, | ||
23 | defaultValue: null, | ||
24 | allowNull: false | ||
25 | }, { transaction: utils.transaction }) | ||
26 | } | ||
27 | |||
28 | function down () { | ||
29 | throw new Error('Not implemented.') | ||
30 | } | ||
31 | |||
32 | export { | ||
33 | up, | ||
34 | down | ||
35 | } | ||
diff --git a/server/lib/activitypub/videos/shared/object-to-model-attributes.ts b/server/lib/activitypub/videos/shared/object-to-model-attributes.ts index 1e1479869..c97217669 100644 --- a/server/lib/activitypub/videos/shared/object-to-model-attributes.ts +++ b/server/lib/activitypub/videos/shared/object-to-model-attributes.ts | |||
@@ -151,6 +151,7 @@ function getLiveAttributesFromObject (video: MVideoId, videoObject: VideoObject) | |||
151 | return { | 151 | return { |
152 | saveReplay: videoObject.liveSaveReplay, | 152 | saveReplay: videoObject.liveSaveReplay, |
153 | permanentLive: videoObject.permanentLive, | 153 | permanentLive: videoObject.permanentLive, |
154 | latencyMode: videoObject.latencyMode, | ||
154 | videoId: video.id | 155 | videoId: video.id |
155 | } | 156 | } |
156 | } | 157 | } |
diff --git a/server/lib/live/live-manager.ts b/server/lib/live/live-manager.ts index 21c34a9a4..920d3a5ec 100644 --- a/server/lib/live/live-manager.ts +++ b/server/lib/live/live-manager.ts | |||
@@ -5,9 +5,10 @@ import { createServer as createServerTLS, Server as ServerTLS } from 'tls' | |||
5 | import { | 5 | import { |
6 | computeLowerResolutionsToTranscode, | 6 | computeLowerResolutionsToTranscode, |
7 | ffprobePromise, | 7 | ffprobePromise, |
8 | getLiveSegmentTime, | ||
8 | getVideoStreamBitrate, | 9 | getVideoStreamBitrate, |
9 | getVideoStreamFPS, | 10 | getVideoStreamDimensionsInfo, |
10 | getVideoStreamDimensionsInfo | 11 | getVideoStreamFPS |
11 | } from '@server/helpers/ffmpeg' | 12 | } from '@server/helpers/ffmpeg' |
12 | import { logger, loggerTagsFactory } from '@server/helpers/logger' | 13 | import { logger, loggerTagsFactory } from '@server/helpers/logger' |
13 | import { CONFIG, registerConfigChangedHandler } from '@server/initializers/config' | 14 | import { CONFIG, registerConfigChangedHandler } from '@server/initializers/config' |
@@ -353,7 +354,7 @@ class LiveManager { | |||
353 | .catch(err => logger.error('Cannot federate live video %s.', video.url, { err, ...localLTags })) | 354 | .catch(err => logger.error('Cannot federate live video %s.', video.url, { err, ...localLTags })) |
354 | 355 | ||
355 | PeerTubeSocket.Instance.sendVideoLiveNewState(video) | 356 | PeerTubeSocket.Instance.sendVideoLiveNewState(video) |
356 | }, VIDEO_LIVE.SEGMENT_TIME_SECONDS * 1000 * VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION) | 357 | }, getLiveSegmentTime(live.latencyMode) * 1000 * VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION) |
357 | } catch (err) { | 358 | } catch (err) { |
358 | logger.error('Cannot save/federate live video %d.', videoId, { err, ...localLTags }) | 359 | logger.error('Cannot save/federate live video %d.', videoId, { err, ...localLTags }) |
359 | } | 360 | } |
diff --git a/server/lib/live/shared/muxing-session.ts b/server/lib/live/shared/muxing-session.ts index f5f473039..a703f5b5f 100644 --- a/server/lib/live/shared/muxing-session.ts +++ b/server/lib/live/shared/muxing-session.ts | |||
@@ -125,6 +125,8 @@ class MuxingSession extends EventEmitter { | |||
125 | outPath, | 125 | outPath, |
126 | masterPlaylistName: this.streamingPlaylist.playlistFilename, | 126 | masterPlaylistName: this.streamingPlaylist.playlistFilename, |
127 | 127 | ||
128 | latencyMode: this.videoLive.latencyMode, | ||
129 | |||
128 | resolutions: this.allResolutions, | 130 | resolutions: this.allResolutions, |
129 | fps: this.fps, | 131 | fps: this.fps, |
130 | bitrate: this.bitrate, | 132 | bitrate: this.bitrate, |
@@ -133,7 +135,12 @@ class MuxingSession extends EventEmitter { | |||
133 | availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(), | 135 | availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(), |
134 | profile: CONFIG.LIVE.TRANSCODING.PROFILE | 136 | profile: CONFIG.LIVE.TRANSCODING.PROFILE |
135 | }) | 137 | }) |
136 | : getLiveMuxingCommand(this.inputUrl, outPath, this.streamingPlaylist.playlistFilename) | 138 | : getLiveMuxingCommand({ |
139 | inputUrl: this.inputUrl, | ||
140 | outPath, | ||
141 | masterPlaylistName: this.streamingPlaylist.playlistFilename, | ||
142 | latencyMode: this.videoLive.latencyMode | ||
143 | }) | ||
137 | 144 | ||
138 | logger.info('Running live muxing/transcoding for %s.', this.videoUUID, this.lTags()) | 145 | logger.info('Running live muxing/transcoding for %s.', this.videoUUID, this.lTags()) |
139 | 146 | ||
diff --git a/server/lib/server-config-manager.ts b/server/lib/server-config-manager.ts index 43ca2332b..744186cfc 100644 --- a/server/lib/server-config-manager.ts +++ b/server/lib/server-config-manager.ts | |||
@@ -137,6 +137,10 @@ class ServerConfigManager { | |||
137 | enabled: CONFIG.LIVE.ENABLED, | 137 | enabled: CONFIG.LIVE.ENABLED, |
138 | 138 | ||
139 | allowReplay: CONFIG.LIVE.ALLOW_REPLAY, | 139 | allowReplay: CONFIG.LIVE.ALLOW_REPLAY, |
140 | latencySetting: { | ||
141 | enabled: CONFIG.LIVE.LATENCY_SETTING.ENABLED | ||
142 | }, | ||
143 | |||
140 | maxDuration: CONFIG.LIVE.MAX_DURATION, | 144 | maxDuration: CONFIG.LIVE.MAX_DURATION, |
141 | maxInstanceLives: CONFIG.LIVE.MAX_INSTANCE_LIVES, | 145 | maxInstanceLives: CONFIG.LIVE.MAX_INSTANCE_LIVES, |
142 | maxUserLives: CONFIG.LIVE.MAX_USER_LIVES, | 146 | maxUserLives: CONFIG.LIVE.MAX_USER_LIVES, |
diff --git a/server/middlewares/validators/videos/video-live.ts b/server/middlewares/validators/videos/video-live.ts index 6c7601e05..8e52c953f 100644 --- a/server/middlewares/validators/videos/video-live.ts +++ b/server/middlewares/validators/videos/video-live.ts | |||
@@ -1,12 +1,21 @@ | |||
1 | import express from 'express' | 1 | import express from 'express' |
2 | import { body } from 'express-validator' | 2 | import { body } from 'express-validator' |
3 | import { isLiveLatencyModeValid } from '@server/helpers/custom-validators/video-lives' | ||
3 | import { CONSTRAINTS_FIELDS } from '@server/initializers/constants' | 4 | import { CONSTRAINTS_FIELDS } from '@server/initializers/constants' |
4 | import { isLocalLiveVideoAccepted } from '@server/lib/moderation' | 5 | import { isLocalLiveVideoAccepted } from '@server/lib/moderation' |
5 | import { Hooks } from '@server/lib/plugins/hooks' | 6 | import { Hooks } from '@server/lib/plugins/hooks' |
6 | import { VideoModel } from '@server/models/video/video' | 7 | import { VideoModel } from '@server/models/video/video' |
7 | import { VideoLiveModel } from '@server/models/video/video-live' | 8 | import { VideoLiveModel } from '@server/models/video/video-live' |
8 | import { HttpStatusCode, ServerErrorCode, UserRight, VideoState } from '@shared/models' | 9 | import { |
9 | import { isBooleanValid, isIdValid, toBooleanOrNull, toIntOrNull } from '../../../helpers/custom-validators/misc' | 10 | HttpStatusCode, |
11 | LiveVideoCreate, | ||
12 | LiveVideoLatencyMode, | ||
13 | LiveVideoUpdate, | ||
14 | ServerErrorCode, | ||
15 | UserRight, | ||
16 | VideoState | ||
17 | } from '@shared/models' | ||
18 | import { exists, isBooleanValid, isIdValid, toBooleanOrNull, toIntOrNull } from '../../../helpers/custom-validators/misc' | ||
10 | import { isVideoNameValid } from '../../../helpers/custom-validators/videos' | 19 | import { isVideoNameValid } from '../../../helpers/custom-validators/videos' |
11 | import { cleanUpReqFiles } from '../../../helpers/express-utils' | 20 | import { cleanUpReqFiles } from '../../../helpers/express-utils' |
12 | import { logger } from '../../../helpers/logger' | 21 | import { logger } from '../../../helpers/logger' |
@@ -67,6 +76,12 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ | |||
67 | .customSanitizer(toBooleanOrNull) | 76 | .customSanitizer(toBooleanOrNull) |
68 | .custom(isBooleanValid).withMessage('Should have a valid permanentLive attribute'), | 77 | .custom(isBooleanValid).withMessage('Should have a valid permanentLive attribute'), |
69 | 78 | ||
79 | body('latencyMode') | ||
80 | .optional() | ||
81 | .customSanitizer(toIntOrNull) | ||
82 | .custom(isLiveLatencyModeValid) | ||
83 | .withMessage('Should have a valid latency mode attribute'), | ||
84 | |||
70 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { | 85 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { |
71 | logger.debug('Checking videoLiveAddValidator parameters', { parameters: req.body }) | 86 | logger.debug('Checking videoLiveAddValidator parameters', { parameters: req.body }) |
72 | 87 | ||
@@ -82,7 +97,9 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ | |||
82 | }) | 97 | }) |
83 | } | 98 | } |
84 | 99 | ||
85 | if (CONFIG.LIVE.ALLOW_REPLAY !== true && req.body.saveReplay === true) { | 100 | const body: LiveVideoCreate = req.body |
101 | |||
102 | if (hasValidSaveReplay(body) !== true) { | ||
86 | cleanUpReqFiles(req) | 103 | cleanUpReqFiles(req) |
87 | 104 | ||
88 | return res.fail({ | 105 | return res.fail({ |
@@ -92,14 +109,23 @@ const videoLiveAddValidator = getCommonVideoEditAttributes().concat([ | |||
92 | }) | 109 | }) |
93 | } | 110 | } |
94 | 111 | ||
95 | if (req.body.permanentLive && req.body.saveReplay) { | 112 | if (hasValidLatencyMode(body) !== true) { |
113 | cleanUpReqFiles(req) | ||
114 | |||
115 | return res.fail({ | ||
116 | status: HttpStatusCode.FORBIDDEN_403, | ||
117 | message: 'Custom latency mode is not allowed by this instance' | ||
118 | }) | ||
119 | } | ||
120 | |||
121 | if (body.permanentLive && body.saveReplay) { | ||
96 | cleanUpReqFiles(req) | 122 | cleanUpReqFiles(req) |
97 | 123 | ||
98 | return res.fail({ message: 'Cannot set this live as permanent while saving its replay' }) | 124 | return res.fail({ message: 'Cannot set this live as permanent while saving its replay' }) |
99 | } | 125 | } |
100 | 126 | ||
101 | const user = res.locals.oauth.token.User | 127 | const user = res.locals.oauth.token.User |
102 | if (!await doesVideoChannelOfAccountExist(req.body.channelId, user, res)) return cleanUpReqFiles(req) | 128 | if (!await doesVideoChannelOfAccountExist(body.channelId, user, res)) return cleanUpReqFiles(req) |
103 | 129 | ||
104 | if (CONFIG.LIVE.MAX_INSTANCE_LIVES !== -1) { | 130 | if (CONFIG.LIVE.MAX_INSTANCE_LIVES !== -1) { |
105 | const totalInstanceLives = await VideoModel.countLocalLives() | 131 | const totalInstanceLives = await VideoModel.countLocalLives() |
@@ -141,19 +167,34 @@ const videoLiveUpdateValidator = [ | |||
141 | .customSanitizer(toBooleanOrNull) | 167 | .customSanitizer(toBooleanOrNull) |
142 | .custom(isBooleanValid).withMessage('Should have a valid saveReplay attribute'), | 168 | .custom(isBooleanValid).withMessage('Should have a valid saveReplay attribute'), |
143 | 169 | ||
170 | body('latencyMode') | ||
171 | .optional() | ||
172 | .customSanitizer(toIntOrNull) | ||
173 | .custom(isLiveLatencyModeValid) | ||
174 | .withMessage('Should have a valid latency mode attribute'), | ||
175 | |||
144 | (req: express.Request, res: express.Response, next: express.NextFunction) => { | 176 | (req: express.Request, res: express.Response, next: express.NextFunction) => { |
145 | logger.debug('Checking videoLiveUpdateValidator parameters', { parameters: req.body }) | 177 | logger.debug('Checking videoLiveUpdateValidator parameters', { parameters: req.body }) |
146 | 178 | ||
147 | if (areValidationErrors(req, res)) return | 179 | if (areValidationErrors(req, res)) return |
148 | 180 | ||
149 | if (req.body.permanentLive && req.body.saveReplay) { | 181 | const body: LiveVideoUpdate = req.body |
182 | |||
183 | if (body.permanentLive && body.saveReplay) { | ||
150 | return res.fail({ message: 'Cannot set this live as permanent while saving its replay' }) | 184 | return res.fail({ message: 'Cannot set this live as permanent while saving its replay' }) |
151 | } | 185 | } |
152 | 186 | ||
153 | if (CONFIG.LIVE.ALLOW_REPLAY !== true && req.body.saveReplay === true) { | 187 | if (hasValidSaveReplay(body) !== true) { |
154 | return res.fail({ | 188 | return res.fail({ |
155 | status: HttpStatusCode.FORBIDDEN_403, | 189 | status: HttpStatusCode.FORBIDDEN_403, |
156 | message: 'Saving live replay is not allowed instance' | 190 | message: 'Saving live replay is not allowed by this instance' |
191 | }) | ||
192 | } | ||
193 | |||
194 | if (hasValidLatencyMode(body) !== true) { | ||
195 | return res.fail({ | ||
196 | status: HttpStatusCode.FORBIDDEN_403, | ||
197 | message: 'Custom latency mode is not allowed by this instance' | ||
157 | }) | 198 | }) |
158 | } | 199 | } |
159 | 200 | ||
@@ -203,3 +244,19 @@ async function isLiveVideoAccepted (req: express.Request, res: express.Response) | |||
203 | 244 | ||
204 | return true | 245 | return true |
205 | } | 246 | } |
247 | |||
248 | function hasValidSaveReplay (body: LiveVideoUpdate | LiveVideoCreate) { | ||
249 | if (CONFIG.LIVE.ALLOW_REPLAY !== true && body.saveReplay === true) return false | ||
250 | |||
251 | return true | ||
252 | } | ||
253 | |||
254 | function hasValidLatencyMode (body: LiveVideoUpdate | LiveVideoCreate) { | ||
255 | if ( | ||
256 | CONFIG.LIVE.LATENCY_SETTING.ENABLED !== true && | ||
257 | exists(body.latencyMode) && | ||
258 | body.latencyMode !== LiveVideoLatencyMode.DEFAULT | ||
259 | ) return false | ||
260 | |||
261 | return true | ||
262 | } | ||
diff --git a/server/models/video/formatter/video-format-utils.ts b/server/models/video/formatter/video-format-utils.ts index 7456f37c5..611edf0b9 100644 --- a/server/models/video/formatter/video-format-utils.ts +++ b/server/models/video/formatter/video-format-utils.ts | |||
@@ -411,15 +411,6 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { | |||
411 | views: video.views, | 411 | views: video.views, |
412 | sensitive: video.nsfw, | 412 | sensitive: video.nsfw, |
413 | waitTranscoding: video.waitTranscoding, | 413 | waitTranscoding: video.waitTranscoding, |
414 | isLiveBroadcast: video.isLive, | ||
415 | |||
416 | liveSaveReplay: video.isLive | ||
417 | ? video.VideoLive.saveReplay | ||
418 | : null, | ||
419 | |||
420 | permanentLive: video.isLive | ||
421 | ? video.VideoLive.permanentLive | ||
422 | : null, | ||
423 | 414 | ||
424 | state: video.state, | 415 | state: video.state, |
425 | commentsEnabled: video.commentsEnabled, | 416 | commentsEnabled: video.commentsEnabled, |
@@ -431,10 +422,13 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { | |||
431 | : null, | 422 | : null, |
432 | 423 | ||
433 | updated: video.updatedAt.toISOString(), | 424 | updated: video.updatedAt.toISOString(), |
425 | |||
434 | mediaType: 'text/markdown', | 426 | mediaType: 'text/markdown', |
435 | content: video.description, | 427 | content: video.description, |
436 | support: video.support, | 428 | support: video.support, |
429 | |||
437 | subtitleLanguage, | 430 | subtitleLanguage, |
431 | |||
438 | icon: icons.map(i => ({ | 432 | icon: icons.map(i => ({ |
439 | type: 'Image', | 433 | type: 'Image', |
440 | url: i.getFileUrl(video), | 434 | url: i.getFileUrl(video), |
@@ -442,11 +436,14 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { | |||
442 | width: i.width, | 436 | width: i.width, |
443 | height: i.height | 437 | height: i.height |
444 | })), | 438 | })), |
439 | |||
445 | url, | 440 | url, |
441 | |||
446 | likes: getLocalVideoLikesActivityPubUrl(video), | 442 | likes: getLocalVideoLikesActivityPubUrl(video), |
447 | dislikes: getLocalVideoDislikesActivityPubUrl(video), | 443 | dislikes: getLocalVideoDislikesActivityPubUrl(video), |
448 | shares: getLocalVideoSharesActivityPubUrl(video), | 444 | shares: getLocalVideoSharesActivityPubUrl(video), |
449 | comments: getLocalVideoCommentsActivityPubUrl(video), | 445 | comments: getLocalVideoCommentsActivityPubUrl(video), |
446 | |||
450 | attributedTo: [ | 447 | attributedTo: [ |
451 | { | 448 | { |
452 | type: 'Person', | 449 | type: 'Person', |
@@ -456,7 +453,9 @@ function videoModelToActivityPubObject (video: MVideoAP): VideoObject { | |||
456 | type: 'Group', | 453 | type: 'Group', |
457 | id: video.VideoChannel.Actor.url | 454 | id: video.VideoChannel.Actor.url |
458 | } | 455 | } |
459 | ] | 456 | ], |
457 | |||
458 | ...buildLiveAPAttributes(video) | ||
460 | } | 459 | } |
461 | } | 460 | } |
462 | 461 | ||
@@ -500,3 +499,23 @@ export { | |||
500 | getPrivacyLabel, | 499 | getPrivacyLabel, |
501 | getStateLabel | 500 | getStateLabel |
502 | } | 501 | } |
502 | |||
503 | // --------------------------------------------------------------------------- | ||
504 | |||
505 | function buildLiveAPAttributes (video: MVideoAP) { | ||
506 | if (!video.isLive) { | ||
507 | return { | ||
508 | isLiveBroadcast: false, | ||
509 | liveSaveReplay: null, | ||
510 | permanentLive: null, | ||
511 | latencyMode: null | ||
512 | } | ||
513 | } | ||
514 | |||
515 | return { | ||
516 | isLiveBroadcast: true, | ||
517 | liveSaveReplay: video.VideoLive.saveReplay, | ||
518 | permanentLive: video.VideoLive.permanentLive, | ||
519 | latencyMode: video.VideoLive.latencyMode | ||
520 | } | ||
521 | } | ||
diff --git a/server/models/video/sql/video/shared/video-table-attributes.ts b/server/models/video/sql/video/shared/video-table-attributes.ts index f4d9e99fd..e2c1c0f6d 100644 --- a/server/models/video/sql/video/shared/video-table-attributes.ts +++ b/server/models/video/sql/video/shared/video-table-attributes.ts | |||
@@ -158,6 +158,7 @@ export class VideoTableAttributes { | |||
158 | 'streamKey', | 158 | 'streamKey', |
159 | 'saveReplay', | 159 | 'saveReplay', |
160 | 'permanentLive', | 160 | 'permanentLive', |
161 | 'latencyMode', | ||
161 | 'videoId', | 162 | 'videoId', |
162 | 'createdAt', | 163 | 'createdAt', |
163 | 'updatedAt' | 164 | 'updatedAt' |
diff --git a/server/models/video/video-live.ts b/server/models/video/video-live.ts index e3fdcc0ba..904f712b4 100644 --- a/server/models/video/video-live.ts +++ b/server/models/video/video-live.ts | |||
@@ -1,11 +1,11 @@ | |||
1 | import { AllowNull, BelongsTo, Column, CreatedAt, DataType, DefaultScope, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript' | 1 | import { AllowNull, BelongsTo, Column, CreatedAt, DataType, DefaultScope, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript' |
2 | import { CONFIG } from '@server/initializers/config' | ||
2 | import { WEBSERVER } from '@server/initializers/constants' | 3 | import { WEBSERVER } from '@server/initializers/constants' |
3 | import { MVideoLive, MVideoLiveVideo } from '@server/types/models' | 4 | import { MVideoLive, MVideoLiveVideo } from '@server/types/models' |
5 | import { LiveVideo, LiveVideoLatencyMode, VideoState } from '@shared/models' | ||
4 | import { AttributesOnly } from '@shared/typescript-utils' | 6 | import { AttributesOnly } from '@shared/typescript-utils' |
5 | import { LiveVideo, VideoState } from '@shared/models' | ||
6 | import { VideoModel } from './video' | 7 | import { VideoModel } from './video' |
7 | import { VideoBlacklistModel } from './video-blacklist' | 8 | import { VideoBlacklistModel } from './video-blacklist' |
8 | import { CONFIG } from '@server/initializers/config' | ||
9 | 9 | ||
10 | @DefaultScope(() => ({ | 10 | @DefaultScope(() => ({ |
11 | include: [ | 11 | include: [ |
@@ -44,6 +44,10 @@ export class VideoLiveModel extends Model<Partial<AttributesOnly<VideoLiveModel> | |||
44 | @Column | 44 | @Column |
45 | permanentLive: boolean | 45 | permanentLive: boolean |
46 | 46 | ||
47 | @AllowNull(false) | ||
48 | @Column | ||
49 | latencyMode: LiveVideoLatencyMode | ||
50 | |||
47 | @CreatedAt | 51 | @CreatedAt |
48 | createdAt: Date | 52 | createdAt: Date |
49 | 53 | ||
@@ -113,7 +117,8 @@ export class VideoLiveModel extends Model<Partial<AttributesOnly<VideoLiveModel> | |||
113 | 117 | ||
114 | streamKey: this.streamKey, | 118 | streamKey: this.streamKey, |
115 | permanentLive: this.permanentLive, | 119 | permanentLive: this.permanentLive, |
116 | saveReplay: this.saveReplay | 120 | saveReplay: this.saveReplay, |
121 | latencyMode: this.latencyMode | ||
117 | } | 122 | } |
118 | } | 123 | } |
119 | } | 124 | } |
diff --git a/server/tests/api/check-params/config.ts b/server/tests/api/check-params/config.ts index ce067a892..900f642c2 100644 --- a/server/tests/api/check-params/config.ts +++ b/server/tests/api/check-params/config.ts | |||
@@ -125,6 +125,9 @@ describe('Test config API validators', function () { | |||
125 | enabled: true, | 125 | enabled: true, |
126 | 126 | ||
127 | allowReplay: false, | 127 | allowReplay: false, |
128 | latencySetting: { | ||
129 | enabled: false | ||
130 | }, | ||
128 | maxDuration: 30, | 131 | maxDuration: 30, |
129 | maxInstanceLives: -1, | 132 | maxInstanceLives: -1, |
130 | maxUserLives: 50, | 133 | maxUserLives: 50, |
diff --git a/server/tests/api/check-params/live.ts b/server/tests/api/check-params/live.ts index 8aee6164c..b253f5e20 100644 --- a/server/tests/api/check-params/live.ts +++ b/server/tests/api/check-params/live.ts | |||
@@ -3,7 +3,7 @@ | |||
3 | import 'mocha' | 3 | import 'mocha' |
4 | import { omit } from 'lodash' | 4 | import { omit } from 'lodash' |
5 | import { buildAbsoluteFixturePath } from '@shared/core-utils' | 5 | import { buildAbsoluteFixturePath } from '@shared/core-utils' |
6 | import { HttpStatusCode, VideoCreateResult, VideoPrivacy } from '@shared/models' | 6 | import { HttpStatusCode, LiveVideoLatencyMode, VideoCreateResult, VideoPrivacy } from '@shared/models' |
7 | import { | 7 | import { |
8 | cleanupTests, | 8 | cleanupTests, |
9 | createSingleServer, | 9 | createSingleServer, |
@@ -38,6 +38,9 @@ describe('Test video lives API validator', function () { | |||
38 | newConfig: { | 38 | newConfig: { |
39 | live: { | 39 | live: { |
40 | enabled: true, | 40 | enabled: true, |
41 | latencySetting: { | ||
42 | enabled: false | ||
43 | }, | ||
41 | maxInstanceLives: 20, | 44 | maxInstanceLives: 20, |
42 | maxUserLives: 20, | 45 | maxUserLives: 20, |
43 | allowReplay: true | 46 | allowReplay: true |
@@ -81,7 +84,8 @@ describe('Test video lives API validator', function () { | |||
81 | privacy: VideoPrivacy.PUBLIC, | 84 | privacy: VideoPrivacy.PUBLIC, |
82 | channelId, | 85 | channelId, |
83 | saveReplay: false, | 86 | saveReplay: false, |
84 | permanentLive: false | 87 | permanentLive: false, |
88 | latencyMode: LiveVideoLatencyMode.DEFAULT | ||
85 | } | 89 | } |
86 | }) | 90 | }) |
87 | 91 | ||
@@ -214,6 +218,18 @@ describe('Test video lives API validator', function () { | |||
214 | await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields }) | 218 | await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields }) |
215 | }) | 219 | }) |
216 | 220 | ||
221 | it('Should fail with bad latency setting', async function () { | ||
222 | const fields = { ...baseCorrectParams, latencyMode: 42 } | ||
223 | |||
224 | await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields }) | ||
225 | }) | ||
226 | |||
227 | it('Should fail to set latency if the server does not allow it', async function () { | ||
228 | const fields = { ...baseCorrectParams, latencyMode: LiveVideoLatencyMode.HIGH_LATENCY } | ||
229 | |||
230 | await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields, expectedStatus: HttpStatusCode.FORBIDDEN_403 }) | ||
231 | }) | ||
232 | |||
217 | it('Should succeed with the correct parameters', async function () { | 233 | it('Should succeed with the correct parameters', async function () { |
218 | this.timeout(30000) | 234 | this.timeout(30000) |
219 | 235 | ||
@@ -393,6 +409,18 @@ describe('Test video lives API validator', function () { | |||
393 | await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.BAD_REQUEST_400 }) | 409 | await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.BAD_REQUEST_400 }) |
394 | }) | 410 | }) |
395 | 411 | ||
412 | it('Should fail with bad latency setting', async function () { | ||
413 | const fields = { latencyMode: 42 } | ||
414 | |||
415 | await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.BAD_REQUEST_400 }) | ||
416 | }) | ||
417 | |||
418 | it('Should fail to set latency if the server does not allow it', async function () { | ||
419 | const fields = { latencyMode: LiveVideoLatencyMode.HIGH_LATENCY } | ||
420 | |||
421 | await command.update({ videoId: video.id, fields, expectedStatus: HttpStatusCode.FORBIDDEN_403 }) | ||
422 | }) | ||
423 | |||
396 | it('Should succeed with the correct params', async function () { | 424 | it('Should succeed with the correct params', async function () { |
397 | await command.update({ videoId: video.id, fields: { saveReplay: false } }) | 425 | await command.update({ videoId: video.id, fields: { saveReplay: false } }) |
398 | await command.update({ videoId: video.uuid, fields: { saveReplay: false } }) | 426 | await command.update({ videoId: video.uuid, fields: { saveReplay: false } }) |
diff --git a/server/tests/api/live/live.ts b/server/tests/api/live/live.ts index d756a02c1..aeb039696 100644 --- a/server/tests/api/live/live.ts +++ b/server/tests/api/live/live.ts | |||
@@ -10,6 +10,7 @@ import { | |||
10 | HttpStatusCode, | 10 | HttpStatusCode, |
11 | LiveVideo, | 11 | LiveVideo, |
12 | LiveVideoCreate, | 12 | LiveVideoCreate, |
13 | LiveVideoLatencyMode, | ||
13 | VideoDetails, | 14 | VideoDetails, |
14 | VideoPrivacy, | 15 | VideoPrivacy, |
15 | VideoState, | 16 | VideoState, |
@@ -52,6 +53,9 @@ describe('Test live', function () { | |||
52 | live: { | 53 | live: { |
53 | enabled: true, | 54 | enabled: true, |
54 | allowReplay: true, | 55 | allowReplay: true, |
56 | latencySetting: { | ||
57 | enabled: true | ||
58 | }, | ||
55 | transcoding: { | 59 | transcoding: { |
56 | enabled: false | 60 | enabled: false |
57 | } | 61 | } |
@@ -85,6 +89,7 @@ describe('Test live', function () { | |||
85 | commentsEnabled: false, | 89 | commentsEnabled: false, |
86 | downloadEnabled: false, | 90 | downloadEnabled: false, |
87 | saveReplay: true, | 91 | saveReplay: true, |
92 | latencyMode: LiveVideoLatencyMode.SMALL_LATENCY, | ||
88 | privacy: VideoPrivacy.PUBLIC, | 93 | privacy: VideoPrivacy.PUBLIC, |
89 | previewfile: 'video_short1-preview.webm.jpg', | 94 | previewfile: 'video_short1-preview.webm.jpg', |
90 | thumbnailfile: 'video_short1.webm.jpg' | 95 | thumbnailfile: 'video_short1.webm.jpg' |
@@ -131,6 +136,7 @@ describe('Test live', function () { | |||
131 | } | 136 | } |
132 | 137 | ||
133 | expect(live.saveReplay).to.be.true | 138 | expect(live.saveReplay).to.be.true |
139 | expect(live.latencyMode).to.equal(LiveVideoLatencyMode.SMALL_LATENCY) | ||
134 | } | 140 | } |
135 | }) | 141 | }) |
136 | 142 | ||
@@ -175,7 +181,7 @@ describe('Test live', function () { | |||
175 | it('Should update the live', async function () { | 181 | it('Should update the live', async function () { |
176 | this.timeout(10000) | 182 | this.timeout(10000) |
177 | 183 | ||
178 | await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false } }) | 184 | await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false, latencyMode: LiveVideoLatencyMode.DEFAULT } }) |
179 | await waitJobs(servers) | 185 | await waitJobs(servers) |
180 | }) | 186 | }) |
181 | 187 | ||
@@ -192,6 +198,7 @@ describe('Test live', function () { | |||
192 | } | 198 | } |
193 | 199 | ||
194 | expect(live.saveReplay).to.be.false | 200 | expect(live.saveReplay).to.be.false |
201 | expect(live.latencyMode).to.equal(LiveVideoLatencyMode.DEFAULT) | ||
195 | } | 202 | } |
196 | }) | 203 | }) |
197 | 204 | ||
diff --git a/server/tests/api/server/config.ts b/server/tests/api/server/config.ts index 565b2953a..5028b65e6 100644 --- a/server/tests/api/server/config.ts +++ b/server/tests/api/server/config.ts | |||
@@ -82,6 +82,7 @@ function checkInitialConfig (server: PeerTubeServer, data: CustomConfig) { | |||
82 | 82 | ||
83 | expect(data.live.enabled).to.be.false | 83 | expect(data.live.enabled).to.be.false |
84 | expect(data.live.allowReplay).to.be.false | 84 | expect(data.live.allowReplay).to.be.false |
85 | expect(data.live.latencySetting.enabled).to.be.true | ||
85 | expect(data.live.maxDuration).to.equal(-1) | 86 | expect(data.live.maxDuration).to.equal(-1) |
86 | expect(data.live.maxInstanceLives).to.equal(20) | 87 | expect(data.live.maxInstanceLives).to.equal(20) |
87 | expect(data.live.maxUserLives).to.equal(3) | 88 | expect(data.live.maxUserLives).to.equal(3) |
@@ -185,6 +186,7 @@ function checkUpdatedConfig (data: CustomConfig) { | |||
185 | 186 | ||
186 | expect(data.live.enabled).to.be.true | 187 | expect(data.live.enabled).to.be.true |
187 | expect(data.live.allowReplay).to.be.true | 188 | expect(data.live.allowReplay).to.be.true |
189 | expect(data.live.latencySetting.enabled).to.be.false | ||
188 | expect(data.live.maxDuration).to.equal(5000) | 190 | expect(data.live.maxDuration).to.equal(5000) |
189 | expect(data.live.maxInstanceLives).to.equal(-1) | 191 | expect(data.live.maxInstanceLives).to.equal(-1) |
190 | expect(data.live.maxUserLives).to.equal(10) | 192 | expect(data.live.maxUserLives).to.equal(10) |
@@ -326,6 +328,9 @@ const newCustomConfig: CustomConfig = { | |||
326 | live: { | 328 | live: { |
327 | enabled: true, | 329 | enabled: true, |
328 | allowReplay: true, | 330 | allowReplay: true, |
331 | latencySetting: { | ||
332 | enabled: false | ||
333 | }, | ||
329 | maxDuration: 5000, | 334 | maxDuration: 5000, |
330 | maxInstanceLives: -1, | 335 | maxInstanceLives: -1, |
331 | maxUserLives: 10, | 336 | maxUserLives: 10, |
diff --git a/shared/models/activitypub/objects/video-torrent-object.ts b/shared/models/activitypub/objects/video-torrent-object.ts index 9faa3bb87..23d54bdbd 100644 --- a/shared/models/activitypub/objects/video-torrent-object.ts +++ b/shared/models/activitypub/objects/video-torrent-object.ts | |||
@@ -5,7 +5,7 @@ import { | |||
5 | ActivityTagObject, | 5 | ActivityTagObject, |
6 | ActivityUrlObject | 6 | ActivityUrlObject |
7 | } from './common-objects' | 7 | } from './common-objects' |
8 | import { VideoState } from '../../videos' | 8 | import { LiveVideoLatencyMode, VideoState } from '../../videos' |
9 | 9 | ||
10 | export interface VideoObject { | 10 | export interface VideoObject { |
11 | type: 'Video' | 11 | type: 'Video' |
@@ -25,6 +25,7 @@ export interface VideoObject { | |||
25 | isLiveBroadcast: boolean | 25 | isLiveBroadcast: boolean |
26 | liveSaveReplay: boolean | 26 | liveSaveReplay: boolean |
27 | permanentLive: boolean | 27 | permanentLive: boolean |
28 | latencyMode: LiveVideoLatencyMode | ||
28 | 29 | ||
29 | commentsEnabled: boolean | 30 | commentsEnabled: boolean |
30 | downloadEnabled: boolean | 31 | downloadEnabled: boolean |
diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index c9e7654de..5df606566 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts | |||
@@ -131,6 +131,10 @@ export interface CustomConfig { | |||
131 | 131 | ||
132 | allowReplay: boolean | 132 | allowReplay: boolean |
133 | 133 | ||
134 | latencySetting: { | ||
135 | enabled: boolean | ||
136 | } | ||
137 | |||
134 | maxDuration: number | 138 | maxDuration: number |
135 | maxInstanceLives: number | 139 | maxInstanceLives: number |
136 | maxUserLives: number | 140 | maxUserLives: number |
diff --git a/shared/models/server/server-config.model.ts b/shared/models/server/server-config.model.ts index b06019bb8..d7fbed13c 100644 --- a/shared/models/server/server-config.model.ts +++ b/shared/models/server/server-config.model.ts | |||
@@ -149,10 +149,14 @@ export interface ServerConfig { | |||
149 | live: { | 149 | live: { |
150 | enabled: boolean | 150 | enabled: boolean |
151 | 151 | ||
152 | allowReplay: boolean | ||
153 | latencySetting: { | ||
154 | enabled: boolean | ||
155 | } | ||
156 | |||
152 | maxDuration: number | 157 | maxDuration: number |
153 | maxInstanceLives: number | 158 | maxInstanceLives: number |
154 | maxUserLives: number | 159 | maxUserLives: number |
155 | allowReplay: boolean | ||
156 | 160 | ||
157 | transcoding: { | 161 | transcoding: { |
158 | enabled: boolean | 162 | enabled: boolean |
diff --git a/shared/models/videos/live/index.ts b/shared/models/videos/live/index.ts index a36f42a7d..68f32092a 100644 --- a/shared/models/videos/live/index.ts +++ b/shared/models/videos/live/index.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | export * from './live-video-create.model' | 1 | export * from './live-video-create.model' |
2 | export * from './live-video-event-payload.model' | 2 | export * from './live-video-event-payload.model' |
3 | export * from './live-video-event.type' | 3 | export * from './live-video-event.type' |
4 | export * from './live-video-latency-mode.enum' | ||
4 | export * from './live-video-update.model' | 5 | export * from './live-video-update.model' |
5 | export * from './live-video.model' | 6 | export * from './live-video.model' |
diff --git a/shared/models/videos/live/live-video-create.model.ts b/shared/models/videos/live/live-video-create.model.ts index caa7acc17..49ccaf45b 100644 --- a/shared/models/videos/live/live-video-create.model.ts +++ b/shared/models/videos/live/live-video-create.model.ts | |||
@@ -1,6 +1,8 @@ | |||
1 | import { LiveVideoLatencyMode } from '.' | ||
1 | import { VideoCreate } from '../video-create.model' | 2 | import { VideoCreate } from '../video-create.model' |
2 | 3 | ||
3 | export interface LiveVideoCreate extends VideoCreate { | 4 | export interface LiveVideoCreate extends VideoCreate { |
4 | saveReplay?: boolean | 5 | saveReplay?: boolean |
5 | permanentLive?: boolean | 6 | permanentLive?: boolean |
7 | latencyMode?: LiveVideoLatencyMode | ||
6 | } | 8 | } |
diff --git a/shared/models/videos/live/live-video-latency-mode.enum.ts b/shared/models/videos/live/live-video-latency-mode.enum.ts new file mode 100644 index 000000000..4285e1d41 --- /dev/null +++ b/shared/models/videos/live/live-video-latency-mode.enum.ts | |||
@@ -0,0 +1,5 @@ | |||
1 | export const enum LiveVideoLatencyMode { | ||
2 | DEFAULT = 1, | ||
3 | HIGH_LATENCY = 2, | ||
4 | SMALL_LATENCY = 3 | ||
5 | } | ||
diff --git a/shared/models/videos/live/live-video-update.model.ts b/shared/models/videos/live/live-video-update.model.ts index a39c44797..93bb4d30d 100644 --- a/shared/models/videos/live/live-video-update.model.ts +++ b/shared/models/videos/live/live-video-update.model.ts | |||
@@ -1,4 +1,7 @@ | |||
1 | import { LiveVideoLatencyMode } from './live-video-latency-mode.enum' | ||
2 | |||
1 | export interface LiveVideoUpdate { | 3 | export interface LiveVideoUpdate { |
2 | permanentLive?: boolean | 4 | permanentLive?: boolean |
3 | saveReplay?: boolean | 5 | saveReplay?: boolean |
6 | latencyMode?: LiveVideoLatencyMode | ||
4 | } | 7 | } |
diff --git a/shared/models/videos/live/live-video.model.ts b/shared/models/videos/live/live-video.model.ts index 815a93804..2d3169941 100644 --- a/shared/models/videos/live/live-video.model.ts +++ b/shared/models/videos/live/live-video.model.ts | |||
@@ -1,8 +1,12 @@ | |||
1 | import { LiveVideoLatencyMode } from './live-video-latency-mode.enum' | ||
2 | |||
1 | export interface LiveVideo { | 3 | export interface LiveVideo { |
2 | rtmpUrl: string | 4 | rtmpUrl: string |
3 | rtmpsUrl: string | 5 | rtmpsUrl: string |
4 | 6 | ||
5 | streamKey: string | 7 | streamKey: string |
8 | |||
6 | saveReplay: boolean | 9 | saveReplay: boolean |
7 | permanentLive: boolean | 10 | permanentLive: boolean |
11 | latencyMode: LiveVideoLatencyMode | ||
8 | } | 12 | } |
diff --git a/shared/server-commands/server/config-command.ts b/shared/server-commands/server/config-command.ts index c0042060b..e47a0d346 100644 --- a/shared/server-commands/server/config-command.ts +++ b/shared/server-commands/server/config-command.ts | |||
@@ -292,6 +292,9 @@ export class ConfigCommand extends AbstractCommand { | |||
292 | live: { | 292 | live: { |
293 | enabled: true, | 293 | enabled: true, |
294 | allowReplay: false, | 294 | allowReplay: false, |
295 | latencySetting: { | ||
296 | enabled: false | ||
297 | }, | ||
295 | maxDuration: -1, | 298 | maxDuration: -1, |
296 | maxInstanceLives: -1, | 299 | maxInstanceLives: -1, |
297 | maxUserLives: 50, | 300 | maxUserLives: 50, |
diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 70f2d97f5..5ce1f228a 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml | |||
@@ -2295,6 +2295,9 @@ paths: | |||
2295 | permanentLive: | 2295 | permanentLive: |
2296 | description: User can stream multiple times in a permanent live | 2296 | description: User can stream multiple times in a permanent live |
2297 | type: boolean | 2297 | type: boolean |
2298 | latencyMode: | ||
2299 | description: User can select live latency mode if enabled by the instance | ||
2300 | $ref: '#/components/schemas/LiveVideoLatencyMode' | ||
2298 | thumbnailfile: | 2301 | thumbnailfile: |
2299 | description: Live video/replay thumbnail file | 2302 | description: Live video/replay thumbnail file |
2300 | type: string | 2303 | type: string |
@@ -5291,6 +5294,14 @@ components: | |||
5291 | description: 'Admin flags for the user (None = `0`, Bypass video blocklist = `1`)' | 5294 | description: 'Admin flags for the user (None = `0`, Bypass video blocklist = `1`)' |
5292 | example: 1 | 5295 | example: 1 |
5293 | 5296 | ||
5297 | LiveVideoLatencyMode: | ||
5298 | type: integer | ||
5299 | enum: | ||
5300 | - 1 | ||
5301 | - 2 | ||
5302 | - 3 | ||
5303 | description: 'The live latency mode (Default = `1`, HIght latency = `2`, Small Latency = `3`)' | ||
5304 | |||
5294 | VideoStateConstant: | 5305 | VideoStateConstant: |
5295 | properties: | 5306 | properties: |
5296 | id: | 5307 | id: |
@@ -7482,6 +7493,9 @@ components: | |||
7482 | permanentLive: | 7493 | permanentLive: |
7483 | description: User can stream multiple times in a permanent live | 7494 | description: User can stream multiple times in a permanent live |
7484 | type: boolean | 7495 | type: boolean |
7496 | latencyMode: | ||
7497 | description: User can select live latency mode if enabled by the instance | ||
7498 | $ref: '#/components/schemas/LiveVideoLatencyMode' | ||
7485 | 7499 | ||
7486 | LiveVideoResponse: | 7500 | LiveVideoResponse: |
7487 | properties: | 7501 | properties: |
@@ -7497,8 +7511,9 @@ components: | |||
7497 | permanentLive: | 7511 | permanentLive: |
7498 | description: User can stream multiple times in a permanent live | 7512 | description: User can stream multiple times in a permanent live |
7499 | type: boolean | 7513 | type: boolean |
7500 | 7514 | latencyMode: | |
7501 | 7515 | description: User can select live latency mode if enabled by the instance | |
7516 | $ref: '#/components/schemas/LiveVideoLatencyMode' | ||
7502 | 7517 | ||
7503 | callbacks: | 7518 | callbacks: |
7504 | searchIndex: | 7519 | searchIndex: |